diff --git a/README.md b/README.md index d857043..d448faa 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ Retrieve User Information, Trophies, Game and Store data from the PlayStation Ne [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/MIT) - -\n + +\n ## How to install @@ -60,6 +60,7 @@ psnawp = PSNAWP("<64 character npsso code>") client = psnawp.me() print(f"Online ID: {client.online_id}") print(f"Account ID: {client.account_id}") +print(f"Region: {client.get_region()}") print(f"Profile: {client.get_profile_legacy()} \n") # Your Registered Devices @@ -111,6 +112,7 @@ for title in titles_with_stats: example_user_1 = psnawp.user(online_id="VaultTec-Co") # Get a PSN player by their Online ID print(f"User 1 Online ID: {example_user_1.online_id}") print(f"User 1 Account ID: {example_user_1.account_id}") +print(f"User 1 Region: {example_user_1.get_region()}") print(example_user_1.profile()) print(example_user_1.prev_online_id) diff --git a/pyproject.toml b/pyproject.toml index ad69c3c..8fbc247 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,31 +24,32 @@ classifiers = [ packages = [{ include = "psnawp_api", from = "src" }] [tool.poetry.dependencies] -python = "^3.9" -attrs = "23.2.0" +python = "^3.10" +attrs = "24.2.0" requests = "^2.32.3" typing-extensions = "^4.12.2" requests-ratelimiter = "^0.7.0" -pyright = "^1.1.370" +pycountry = "^24.6.1" [tool.poetry.group.typing.dependencies] -mypy = "^1.10.1" +mypy = "^1.14.1" +pyright = "^1.1.391" types-requests = "^2.31.0.6" [tool.poetry.group.linting.dependencies] -ruff = "^0.5.1" -pre-commit = "^3.7.1" +ruff = "^0.9.1" +pre-commit = "^4.0.0" [tool.poetry.group.docs.dependencies] -sphinx = "^7.3.7" -furo = "^2024.04.27" -myst-parser = { extras = ["linkify"], version = "^3.0.1" } +sphinx = "^8.1.3" +furo = "^2024.8.6" +myst-parser = { extras = ["linkify"], version = "^4.0.0" } [tool.poetry.group.tests.dependencies] pytest = "^8.2.2" python-dotenv = "^1.0.1" -vcrpy = "^6.0.1" -pytest-cov = "^5.0.0" +vcrpy = "^7.0.0" +pytest-cov = "^6.0.0" pytest-vcr = "^1.0.2" jsonschema = "^4.23.0" diff --git a/pytest.xml b/pytest.xml index 7d4cc04..2707f9d 100644 --- a/pytest.xml +++ b/pytest.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/psnawp_api/models/client.py b/src/psnawp_api/models/client.py index 9c6fb23..fd8a70f 100644 --- a/src/psnawp_api/models/client.py +++ b/src/psnawp_api/models/client.py @@ -14,9 +14,11 @@ TrophyWithProgressIterator, ) from psnawp_api.models.user import User -from psnawp_api.utils import API_PATH, BASE_PATH +from psnawp_api.utils import API_PATH, BASE_PATH, extract_region_from_npid if TYPE_CHECKING: + from pycountry.db import Country + from psnawp_api.core import Authenticator from psnawp_api.models.trophies import PlatformType, TrophyGroupsSummary, TrophyGroupSummary, TrophyGroupSummaryWithProgress @@ -68,6 +70,25 @@ def account_id(self) -> str: account_id: str = response["accountId"] return account_id + def get_region(self) -> Optional[Country]: + """Gets the region of the client logged in the api. + + :returns: Returns Country object from Pycountry for logged in user or None if not found. + + .. code-block:: Python + + client = psnawp.me() + print(client.get_region()) + + .. note:: + + See https://github.com/pycountry/pycountry for more info on Country object. + + """ + response = self.get_profile_legacy() + npid = response.get("profile", {}).get("npId", "") + return extract_region_from_npid(npid) + def get_profile_legacy(self) -> dict[str, Any]: """Gets the profile info from legacy api endpoint. Useful for legacy console (PS3, PS4) presence. diff --git a/src/psnawp_api/models/trophies/trophy_group.py b/src/psnawp_api/models/trophies/trophy_group.py index 1e9e6c2..b26ab98 100644 --- a/src/psnawp_api/models/trophies/trophy_group.py +++ b/src/psnawp_api/models/trophies/trophy_group.py @@ -125,10 +125,7 @@ def __init__( def __str__(self) -> str: return ( - f"TrophyGroupsSummary(Title: {self.trophy_title_name}, " - f"Defined: {self.defined_trophies}, " - f"Earned: {self.earned_trophies}, " - f"Progress: {self.progress})" + f"TrophyGroupsSummary(Title: {self.trophy_title_name}, Defined: {self.defined_trophies}, Earned: {self.earned_trophies}, Progress: {self.progress})" ) def __repr__(self) -> str: diff --git a/src/psnawp_api/models/user.py b/src/psnawp_api/models/user.py index 8d0f1e2..6881859 100644 --- a/src/psnawp_api/models/user.py +++ b/src/psnawp_api/models/user.py @@ -18,9 +18,11 @@ TrophyTitleIterator, TrophyWithProgressIterator, ) -from psnawp_api.utils import API_PATH, BASE_PATH +from psnawp_api.utils import API_PATH, BASE_PATH, extract_region_from_npid if TYPE_CHECKING: + from pycountry.db import Country + from psnawp_api.core import Authenticator from psnawp_api.models.trophies import PlatformType, TrophyGroupsSummary, TrophyGroupSummary, TrophyGroupSummaryWithProgress @@ -111,6 +113,54 @@ def profile(self) -> dict[str, Any]: response: dict[str, Any] = self.authenticator.get(url=f"{BASE_PATH['profile_uri']}{API_PATH['profiles'].format(account_id=self.account_id)}").json() return response + def get_region(self) -> Optional[Country]: + """Gets the region of the user. + + :returns: Returns Country object from Pycountry of the User or None if not found. + + .. code-block:: Python + + user_example = psnawp.user(online_id="VaultTec_Trading") + print(user_example.get_region()) + + .. note:: + + See https://github.com/pycountry/pycountry for more info on Country object. + + """ + response = self.get_profile_legacy() + npid = response.get("profile", {}).get("npId", "") + return extract_region_from_npid(npid) + + def get_profile_legacy(self) -> dict[str, Any]: + """Gets the user profile info from legacy api endpoint. Useful for legacy console (PS3, PS4) presence. + + :returns: A dict containing info similar to what is shown below: + + .. literalinclude:: examples/client/get_profile_legacy.json + :language: json + + + .. code-block:: Python + + user_example = psnawp.user(online_id="VaultTec_Trading") + print(user_example.get_profile_legacy()) + + """ + params = { + "fields": "npId,onlineId,accountId,avatarUrls,plus,aboutMe,languagesUsed,trophySummary(@default,level,progress,earnedTrophies)," + "isOfficiallyVerified,personalDetail(@default,profilePictureUrls),personalDetailSharing,personalDetailSharingRequestMessageFlag," + "primaryOnlineStatus,presences(@default,@titleInfo,platform,lastOnlineDate,hasBroadcastData),requestMessageFlag,blocking,friendRelation," + "following,consoleAvailability" + } + + response: dict[str, Any] = self.authenticator.get( + url=f"{BASE_PATH['legacy_profile_uri']}{API_PATH['legacy_profile'].format(online_id=self.online_id)}", + params=params, + ).json() + + return response + def get_presence(self) -> dict[str, Any]: """Gets the presences of a user. If the profile is private diff --git a/src/psnawp_api/utils/__init__.py b/src/psnawp_api/utils/__init__.py index 16f4671..f3fd681 100644 --- a/src/psnawp_api/utils/__init__.py +++ b/src/psnawp_api/utils/__init__.py @@ -1,4 +1,4 @@ from psnawp_api.utils.endpoints import API_PATH, BASE_PATH -from psnawp_api.utils.misc import iso_format_to_datetime +from psnawp_api.utils.misc import extract_region_from_npid, iso_format_to_datetime -__all__ = ["BASE_PATH", "API_PATH", "iso_format_to_datetime"] +__all__ = ["BASE_PATH", "API_PATH", "iso_format_to_datetime", "extract_region_from_npid"] diff --git a/src/psnawp_api/utils/misc.py b/src/psnawp_api/utils/misc.py index ab058b8..e35719b 100644 --- a/src/psnawp_api/utils/misc.py +++ b/src/psnawp_api/utils/misc.py @@ -1,8 +1,30 @@ from __future__ import annotations +import base64 +import binascii from datetime import datetime -from typing import Optional +from typing import TYPE_CHECKING, Optional, cast + +from pycountry import countries + +if TYPE_CHECKING: + from pycountry.db import Country def iso_format_to_datetime(iso_format: Optional[str]) -> Optional[datetime]: return datetime.fromisoformat(iso_format.replace("Z", "+00:00")) if iso_format is not None else None + + +def extract_region_from_npid(npid: str) -> Optional[Country]: + try: + decoded_npid = base64.b64decode(npid).decode("utf-8") + except (binascii.Error, UnicodeDecodeError): + return None + + # Assuming a valid decoded npid format (e.g. VaultTec-Co@b7.us), extract the region (e.g. "US") + if "@" in decoded_npid and "." in decoded_npid: + region_candidate = decoded_npid.split(".")[-1] + if len(region_candidate) == 2 and region_candidate.isalpha(): + return cast(Country, countries.get(alpha_2=region_candidate)) + + return None diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json index 1cdc142..31e9ba7 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__access_token_from_refresh_token.json @@ -51,51 +51,51 @@ "message": "Moved Temporarily" }, "headers": { - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.ns1bmF&cid=00000000-0000-0000-0000-b025aa3b2674" + "Content-Length": [ + "0" ], - "Server": [ - "nginx" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "X-Psn-Request-Id": [ - "4ca04aa97a71c702ead682c550913f82" + "Set-Cookie": "REDACTED", + "X-XSS-Protection": [ + "1; mode=block" ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" + "X-RequestId": [ + "4724923bbfada17474d596a8fc91ca04" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.KDOoCx&cid=00000000-0000-0000-0000-b025aa3b2674" ], "X-Frame-Options": [ "DENY" ], - "Connection": [ - "keep-alive" - ], - "X-RequestId": [ - "4ca04aa97a71c702ead682c550913f82" + "X-Psn-Request-Id": [ + "4724923bbfada17474d596a8fc91ca04" ], - "Content-Length": [ + "Expires": [ "0" ], - "Strict-Transport-Security": [ - "max-age=31536000 ; includeSubDomains" + "Date": [ + "Sat, 11 Jan 2025 22:11:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Expires": [ - "0" - ], - "X-XSS-Protection": [ - "1; mode=block" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:07 GMT" + "Server": [ + "nginx" ], - "X-CorrelationId": [ + "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Connection": [ + "keep-alive" ] }, "body": { @@ -144,40 +144,40 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "nginx" - ], - "X-Psn-Request-Id": [ - "37c9adb078ce335ce48e03fb211f1b9d" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Content-Length": [ + "4010" ], "Cache-Control": [ "no-store" ], + "Content-Type": [ + "application/json;charset=UTF-8" + ], "X-RequestId": [ - "37c9adb078ce335ce48e03fb211f1b9d" + "f80edba9978ab362859bc8bb2877eb66" ], - "Content-Length": [ - "3998" + "X-Psn-Request-Id": [ + "f80edba9978ab362859bc8bb2877eb66" + ], + "Date": [ + "Sat, 11 Jan 2025 22:11:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json;charset=UTF-8" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:07 GMT" + "Server": [ + "nginx" ], - "X-CorrelationId": [ + "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" - ] + ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" @@ -216,33 +216,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Content-Length": [ + "35" ], - "Server": [ - "nginx" + "Set-Cookie": "REDACTED", + "X-RequestId": [ + "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf" ], "X-Psn-Request-Id": [ - "a05bbf79-b5ed-400f-89bd-1c7b29a681d3" + "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf" ], "X-Psn-Correlation-Id": [ - "a05bbf79-b5ed-400f-89bd-1c7b29a681d3" + "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf" ], - "X-RequestId": [ - "a05bbf79-b5ed-400f-89bd-1c7b29a681d3" + "Date": [ + "Sat, 11 Jan 2025 22:11:31 GMT" ], - "Content-Length": [ - "35" + "X-CorrelationId": [ + "aa8693cf-ad8a-4d40-be5f-22f94b7a79cf" + ], + "Server": [ + "nginx" ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:07 GMT" - ], - "X-CorrelationId": [ - "a05bbf79-b5ed-400f-89bd-1c7b29a681d3" + "Connection": [ + "keep-alive" ] }, "body": { @@ -282,42 +282,42 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" + "Content-Length": [ + "1619" ], "Cache-Control": [ "private" ], - "Content-Length": [ - "1619" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Set-Cookie": "REDACTED", + "X-Psn-Track-Id": [ + "0547992944457511517" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], + "Access-Control-Allow-Origin": [ + "*" + ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Sat, 11 Jan 2025 22:11:31 GMT" + ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" ], + "Server": [ + "Apache" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:08 GMT" - ], - "X-Psn-Track-Id": [ - "0469749089987140719" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Access-Control-Allow-Origin": [ - "*" + "Connection": [ + "keep-alive" ] }, "body": { @@ -363,40 +363,40 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "nginx" - ], - "X-Psn-Request-Id": [ - "14a781c7ef9921003ea54493bc19202d" - ], - "X-Psn-Correlation-Id": [ - "dd899d2d-465c-4a47-b8dd-172fce3f3b2c" + "Content-Length": [ + "4010" ], "Cache-Control": [ "no-store" ], + "Content-Type": [ + "application/json;charset=UTF-8" + ], "X-RequestId": [ - "14a781c7ef9921003ea54493bc19202d" + "6a0eb8ddf2d32b17cffbacc09015996f" ], - "Content-Length": [ - "3998" + "X-Psn-Request-Id": [ + "6a0eb8ddf2d32b17cffbacc09015996f" + ], + "Date": [ + "Sat, 11 Jan 2025 22:11:31 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json;charset=UTF-8" + "X-CorrelationId": [ + "70e955fd-9a55-4759-a0d5-2b502150c2fd" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:08 GMT" + "Server": [ + "nginx" ], - "X-CorrelationId": [ - "dd899d2d-465c-4a47-b8dd-172fce3f3b2c" - ] + "X-Psn-Correlation-Id": [ + "70e955fd-9a55-4759-a0d5-2b502150c2fd" + ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" @@ -435,34 +435,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Content-Length": [ + "35" ], - "Server": [ - "nginx" + "X-RequestId": [ + "1573f26f-0c80-4302-99df-8e7af62012da" ], "X-Psn-Request-Id": [ - "d7991f6a-de56-45f9-a6d3-2c911e1521bc" + "1573f26f-0c80-4302-99df-8e7af62012da" ], "X-Psn-Correlation-Id": [ - "d7991f6a-de56-45f9-a6d3-2c911e1521bc" + "1573f26f-0c80-4302-99df-8e7af62012da" ], - "X-RequestId": [ - "d7991f6a-de56-45f9-a6d3-2c911e1521bc" + "Date": [ + "Sat, 11 Jan 2025 22:11:31 GMT" ], - "Content-Length": [ - "35" + "X-CorrelationId": [ + "1573f26f-0c80-4302-99df-8e7af62012da" + ], + "Server": [ + "nginx" ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:08 GMT" + "Connection": [ + "keep-alive" ], - "X-CorrelationId": [ - "d7991f6a-de56-45f9-a6d3-2c911e1521bc" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"accountId\": \"2721516955383551246\"}" @@ -501,42 +501,42 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" + "Content-Length": [ + "1619" ], "Cache-Control": [ "private" ], - "Content-Length": [ - "1619" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Set-Cookie": "REDACTED", + "X-Psn-Track-Id": [ + "0270342875014849874" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], + "Access-Control-Allow-Origin": [ + "*" + ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Sat, 11 Jan 2025 22:11:32 GMT" + ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" ], + "Server": [ + "Apache" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:08 GMT" - ], - "X-Psn-Track-Id": [ - "0179603291468392870" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Access-Control-Allow-Origin": [ - "*" + "Connection": [ + "keep-alive" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json index 668d3a3..58ca3ac 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__authentication.json @@ -51,38 +51,26 @@ "message": "Moved Temporarily" }, "headers": { - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.VWs9A0&cid=00000000-0000-0000-0000-b025aa3b2674" - ], - "Server": [ - "nginx" - ], - "X-Psn-Request-Id": [ - "b060c86f69f98ece2f35a7d8e16403b4" - ], "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Frame-Options": [ - "DENY" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], "Connection": [ "keep-alive" ], - "X-RequestId": [ - "b060c86f69f98ece2f35a7d8e16403b4" + "Server": [ + "nginx" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Length": [ "0" ], - "Strict-Transport-Security": [ - "max-age=31536000 ; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.p9OxOV&cid=00000000-0000-0000-0000-b025aa3b2674" ], "Expires": [ "0" @@ -90,12 +78,24 @@ "X-XSS-Protection": [ "1; mode=block" ], - "Set-Cookie": "REDACTED", + "X-Frame-Options": [ + "DENY" + ], "Date": [ - "Sun, 16 Jun 2024 22:59:06 GMT" + "Sat, 11 Jan 2025 22:11:23 GMT" ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Set-Cookie": "REDACTED", + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "X-RequestId": [ + "98f6739013397648b8a2ddc813a0cdb9" + ], + "X-Psn-Request-Id": [ + "98f6739013397648b8a2ddc813a0cdb9" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { @@ -144,40 +144,40 @@ "message": "OK" }, "headers": { + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "bb809c11f41b6cae3c337edd55cc2347" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], "Cache-Control": [ "no-store" ], - "X-RequestId": [ - "bb809c11f41b6cae3c337edd55cc2347" + "Content-Type": [ + "application/json;charset=UTF-8" ], "Content-Length": [ - "3998" + "4010" ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sat, 11 Jan 2025 22:11:23 GMT" ], - "Content-Type": [ - "application/json;charset=UTF-8" + "X-RequestId": [ + "1dcd89824dadf09b2d530b8dee4ec8a7" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:06 GMT" + "X-Psn-Request-Id": [ + "1dcd89824dadf09b2d530b8dee4ec8a7" ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ] + "X-Content-Type-Options": [ + "nosniff" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" @@ -216,33 +216,33 @@ "message": "OK" }, "headers": { + "X-Psn-Correlation-Id": [ + "f7ac0e67-9f25-4b93-be01-a279813533bc" + ], + "X-CorrelationId": [ + "f7ac0e67-9f25-4b93-be01-a279813533bc" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "aba2188c-a783-474a-94aa-90cba67b8596" - ], - "X-Psn-Correlation-Id": [ - "aba2188c-a783-474a-94aa-90cba67b8596" - ], - "X-RequestId": [ - "aba2188c-a783-474a-94aa-90cba67b8596" + "Content-Type": [ + "application/json" ], "Content-Length": [ "35" ], - "Content-Type": [ - "application/json" - ], "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:06 GMT" + "Sat, 11 Jan 2025 22:11:23 GMT" ], - "X-CorrelationId": [ - "aba2188c-a783-474a-94aa-90cba67b8596" + "X-RequestId": [ + "f7ac0e67-9f25-4b93-be01-a279813533bc" + ], + "X-Psn-Request-Id": [ + "f7ac0e67-9f25-4b93-be01-a279813533bc" ] }, "body": { @@ -288,33 +288,33 @@ "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Content-Type": [ + "application/json" ], "Content-Length": [ "1619" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Set-Cookie": "REDACTED", + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" + ], + "Date": [ + "Sat, 11 Jan 2025 22:11:23 GMT" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], + "X-Psn-Track-Id": [ + "0902497656187215888" + ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" - ], - "Content-Type": [ - "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:07 GMT" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "X-Psn-Track-Id": [ - "0392888454830811565" + "Cache-Control": [ + "private" ], "Access-Control-Allow-Origin": [ "*" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json index 947ff81..ba977c6 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_authenticator__incorrect_npsso.json @@ -51,51 +51,51 @@ "message": "Moved Temporarily" }, "headers": { - "Location": [ - "https://my.account.sony.com/sonyacct/signin/?access_type=offline&cid=00000000-0000-0000-0000-b025aa3b2674&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&PlatformPrivacyWs1=minimal&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr&auth_ver=v3&error=login_required&error_code=4165&error_description=User+is+not+authenticated&no_captcha=true&cid=00000000-0000-0000-0000-b025aa3b2674" + "Content-Length": [ + "0" ], - "Server": [ - "nginx" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "X-Psn-Request-Id": [ - "a8f4f977efb634ef8b8bfcff83160069" + "Set-Cookie": "REDACTED", + "X-XSS-Protection": [ + "1; mode=block" ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" + "X-RequestId": [ + "b3e613207ee0ca325327ed990bb9a6f9" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Location": [ + "https://my.account.sony.com/sonyacct/signin/?access_type=offline&cid=00000000-0000-0000-0000-b025aa3b2674&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&PlatformPrivacyWs1=minimal&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr&auth_ver=v3&error=login_required&error_code=4165&error_description=User+is+not+authenticated&no_captcha=true&cid=00000000-0000-0000-0000-b025aa3b2674" ], "X-Frame-Options": [ "DENY" ], - "Connection": [ - "keep-alive" - ], - "X-RequestId": [ - "a8f4f977efb634ef8b8bfcff83160069" + "X-Psn-Request-Id": [ + "b3e613207ee0ca325327ed990bb9a6f9" ], - "Content-Length": [ + "Expires": [ "0" ], - "Strict-Transport-Security": [ - "max-age=31536000 ; includeSubDomains" + "Date": [ + "Sat, 11 Jan 2025 22:11:32 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Expires": [ - "0" - ], - "X-XSS-Protection": [ - "1; mode=block" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:09 GMT" + "Server": [ + "nginx" ], - "X-CorrelationId": [ + "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Connection": [ + "keep-alive" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json index 9a15db9..1e8a8a3 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_devices.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "X-RequestId": [ + "5e5f12c2-5b8f-49bb-b187-1f38e2464657" + ], + "X-CorrelationId": [ + "5e5f12c2-5b8f-49bb-b187-1f38e2464657" + ], + "X-Psn-Correlation-Id": [ + "5e5f12c2-5b8f-49bb-b187-1f38e2464657" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "8e3d89b6-f2e2-407a-a85e-2fb82da81f85" - ], - "X-Psn-Correlation-Id": [ - "8e3d89b6-f2e2-407a-a85e-2fb82da81f85" - ], - "X-RequestId": [ - "8e3d89b6-f2e2-407a-a85e-2fb82da81f85" - ], "Content-Length": [ "35" ], + "X-Psn-Request-Id": [ + "5e5f12c2-5b8f-49bb-b187-1f38e2464657" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:11 GMT" + "Sat, 11 Jan 2025 22:44:25 GMT" ], - "X-CorrelationId": [ - "8e3d89b6-f2e2-407a-a85e-2fb82da81f85" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"accountId\": \"2721516955383551246\"}" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json index 6913607..1ddf473 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__account_id.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "X-RequestId": [ + "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b" + ], + "X-CorrelationId": [ + "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b" + ], + "X-Psn-Correlation-Id": [ + "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "7f488567-6474-46cf-8cf3-3544a695b8c7" - ], - "X-Psn-Correlation-Id": [ - "7f488567-6474-46cf-8cf3-3544a695b8c7" - ], - "X-RequestId": [ - "7f488567-6474-46cf-8cf3-3544a695b8c7" - ], "Content-Length": [ "35" ], + "X-Psn-Request-Id": [ + "ef41b76f-4b3a-432d-b0dc-3ec1efb3727b" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:10 GMT" + "Sat, 11 Jan 2025 22:44:24 GMT" ], - "X-CorrelationId": [ - "7f488567-6474-46cf-8cf3-3544a695b8c7" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"accountId\": \"2721516955383551246\"}" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json index d3e165a..70c415f 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__available_to_play.json @@ -33,42 +33,42 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "15" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "X-Psn-Track-Id": [ + "0657437201593330881" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Origin": [ + "*" ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:12 GMT" + "Content-Type": [ + "application/json" ], - "X-Psn-Track-Id": [ - "0288667036734156357" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "Access-Control-Allow-Origin": [ - "*" + "Date": [ + "Sat, 11 Jan 2025 22:44:28 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json index f421e2f..33e34e4 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__blocked_list.json @@ -33,42 +33,42 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "16" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "X-Psn-Track-Id": [ + "0409231268677099405" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Origin": [ + "*" ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:13 GMT" + "Content-Type": [ + "application/json" ], - "X-Psn-Track-Id": [ - "0410716141072695079" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "Access-Control-Allow-Origin": [ - "*" + "Date": [ + "Sat, 11 Jan 2025 22:44:28 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json index 7cefb88..1884d38 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__friend_requests.json @@ -51,51 +51,51 @@ "message": "Moved Temporarily" }, "headers": { - "X-Psn-Request-Id": [ - "3355edf3af795536bb10a43b906dfc26" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Set-Cookie": "REDACTED", + "X-RequestId": [ + "67c8f28ac08da44538f6feeb2b877286" ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Expires": [ + "0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" ], - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.LC8AsY&cid=00000000-0000-0000-0000-b025aa3b2674" + "Date": [ + "Sun, 12 Jan 2025 00:15:35 GMT" ], "X-XSS-Protection": [ "1; mode=block" ], - "Expires": [ + "Connection": [ + "keep-alive" + ], + "Content-Length": [ "0" ], - "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=31536000 ; includeSubDomains" ], - "Connection": [ - "keep-alive" - ], - "Server": [ - "nginx" - ], "X-Frame-Options": [ "DENY" ], - "X-RequestId": [ - "3355edf3af795536bb10a43b906dfc26" - ], - "Date": [ - "Sat, 13 Jul 2024 08:03:09 GMT" + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.QnkWMv&cid=00000000-0000-0000-0000-b025aa3b2674" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Server": [ + "nginx" + ], + "X-Psn-Request-Id": [ + "67c8f28ac08da44538f6feeb2b877286" ] }, "body": { @@ -144,40 +144,40 @@ "message": "OK" }, "headers": { - "X-Psn-Request-Id": [ - "2476b2164df1202303c0375084fa71d2" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" + "X-RequestId": [ + "b9c3d23e4cbc9d2c7a39361b3cb5de70" ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Content-Type": [ + "application/json;charset=UTF-8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "3998" + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Date": [ + "Sun, 12 Jan 2025 00:15:35 GMT" ], - "Set-Cookie": "REDACTED", "Connection": [ "keep-alive" ], - "Server": [ - "nginx" + "Content-Length": [ + "4010" ], - "X-RequestId": [ - "2476b2164df1202303c0375084fa71d2" + "Cache-Control": [ + "no-store" ], - "Content-Type": [ - "application/json;charset=UTF-8" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], - "Date": [ - "Sat, 13 Jul 2024 08:03:09 GMT" + "Server": [ + "nginx" ], - "Cache-Control": [ - "no-store" - ] + "X-Psn-Request-Id": [ + "b9c3d23e4cbc9d2c7a39361b3cb5de70" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" @@ -216,46 +216,46 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "214" - ], "Set-Cookie": "REDACTED", - "X-Psn-Track-Id": [ - "0198146331384647990" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "Access-Control-Allow-Origin": [ "*" ], - "Server": [ - "Apache" - ], - "Connection": [ - "keep-alive" - ], "Content-Type": [ "application/json" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Sat, 13 Jul 2024 08:03:10 GMT" + "Sun, 12 Jan 2025 00:15:35 GMT" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "214" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], + "X-Psn-Track-Id": [ + "0096614988585646235" + ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" + ], + "Cache-Control": [ + "private" + ], + "Server": [ + "Apache" ] }, "body": { - "string": "{\"receivedRequests\": [{\"accountId\": \"2066273503397112667\", \"relation\": \"requested\", \"personalDetailSharing\": \"none\", \"acceptSharingPersonalDetailFlag\": false, \"requestedDate\": \"2024-07-13T07:48:50.474Z\"}], \"totalItemCount\": 1}" + "string": "{\"receivedRequests\": [{\"accountId\": \"2066273503397112667\", \"relation\": \"requested\", \"personalDetailSharing\": \"none\", \"acceptSharingPersonalDetailFlag\": false, \"requestedDate\": \"2025-01-12T00:14:50.983Z\"}], \"totalItemCount\": 1}" } } }, @@ -291,42 +291,42 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "533" - ], "Set-Cookie": "REDACTED", - "X-Psn-Track-Id": [ - "0451184418609258573" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "Access-Control-Allow-Origin": [ "*" ], - "Server": [ - "Apache" - ], - "Connection": [ - "keep-alive" - ], "Content-Type": [ "application/json" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Sat, 13 Jul 2024 08:03:10 GMT" + "Sun, 12 Jan 2025 00:15:36 GMT" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "533" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], + "X-Psn-Track-Id": [ + "0324172177476591420" + ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" + ], + "Cache-Control": [ + "private" + ], + "Server": [ + "Apache" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json index dba1d5d..5cea9e7 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_friends.json @@ -4,7 +4,7 @@ { "request": { "method": "GET", - "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/me/friends?limit=1000", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", "body": null, "headers": { "User-Agent": [ @@ -24,62 +24,170 @@ ], "Country": [ "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 302, + "message": "Moved Temporarily" }, "headers": { - "Connection": [ - "keep-alive" + "Set-Cookie": "REDACTED", + "X-XSS-Protection": [ + "1; mode=block" ], "Server": [ - "Apache" + "nginx" ], - "Cache-Control": [ - "private" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], "Content-Length": [ - "97" + "0" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "X-RequestId": [ + "9da0cea5ce4efa56eae52535d7339105" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Expires": [ + "0" + ], + "Date": [ + "Sun, 12 Jan 2025 00:15:39 GMT" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.PGfV9C&cid=00000000-0000-0000-0000-b025aa3b2674" + ], + "Connection": [ + "keep-alive" + ], + "X-Psn-Request-Id": [ + "9da0cea5ce4efa56eae52535d7339105" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "X-Frame-Options": [ + "DENY" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" ], "Content-Type": [ - "application/json" + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "Server": [ + "nginx" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-RequestId": [ + "8259cb6117551ea0a0557ba6091a36a7" + ], + "Cache-Control": [ + "no-store" + ], + "Content-Length": [ + "4010" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:11 GMT" + "Sun, 12 Jan 2025 00:15:39 GMT" ], - "X-Psn-Track-Id": [ - "0446823893078043723" + "Connection": [ + "keep-alive" ], - "Access-Control-Allow-Origin": [ - "*" - ] + "X-Psn-Request-Id": [ + "8259cb6117551ea0a0557ba6091a36a7" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"friends\": [\"940512162723934331\", \"4273405838384737823\", \"8520698476712646544\"], \"totalItemCount\": 3}" + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" } } }, { "request": { "method": "GET", - "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/940512162723934331/profiles", + "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/me/friends?limit=1000", "body": null, "headers": { "User-Agent": [ @@ -108,53 +216,53 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Set-Cookie": "REDACTED", + "Content-Type": [ + "application/json" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "Content-Length": [ - "694" + "97" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Cache-Control": [ + "private" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Allow-Origin": [ + "*" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "Date": [ + "Sun, 12 Jan 2025 00:15:39 GMT" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:11 GMT" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], "X-Psn-Track-Id": [ - "0492931305290160482" + "0984326994671738317" ], - "Access-Control-Allow-Origin": [ - "*" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { - "string": "{\"onlineId\": \"lucidityzen_\", \"aboutMe\": \"u butt\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_m.png\"}], \"languages\": [\"ru-RU\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}" + "string": "{\"friends\": [\"5361973517281706660\", \"940512162723934331\", \"4273405838384737823\"], \"totalItemCount\": 3}" } } }, { "request": { "method": "GET", - "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/4273405838384737823/profiles", + "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/5361973517281706660/profiles", "body": null, "headers": { "User-Agent": [ @@ -183,53 +291,53 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Set-Cookie": "REDACTED", + "Content-Type": [ + "application/json" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "Content-Length": [ - "791" + "528" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Cache-Control": [ + "private" ], "Access-Control-Allow-Headers": [ "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Allow-Origin": [ + "*" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "Date": [ + "Sun, 12 Jan 2025 00:15:40 GMT" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:12 GMT" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], "X-Psn-Track-Id": [ - "0690876802466789820" + "0779528439996479361" ], - "Access-Control-Allow-Origin": [ - "*" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { - "string": "{\"onlineId\": \"DaUglyDucklin\", \"aboutMe\": \"Go get bent. Ya'll are planks. Casablumkin. G.G. Switching to PC, Join me friends, No one left behind.\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}" + "string": "{\"onlineId\": \"Rodders1013\", \"aboutMe\": \"F83C\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_s/SCEI/I0057_s.png\"}, {\"size\": \"xl\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_xl/SCEI/I0057_XL.png\"}, {\"size\": \"l\", \"url\": \"http://static-resource.np.community.playstation.net/avatar/SCEI/I0057.png\"}, {\"size\": \"m\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_m/SCEI/I0057_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}" } } }, { "request": { "method": "GET", - "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/8520698476712646544/profiles", + "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/940512162723934331/profiles", "body": null, "headers": { "User-Agent": [ @@ -258,46 +366,121 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Set-Cookie": "REDACTED", + "Content-Type": [ + "application/json" ], "Server": [ "Apache" ], + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" + ], + "Content-Length": [ + "696" + ], "Cache-Control": [ "private" ], - "Content-Length": [ - "606" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Sun, 12 Jan 2025 00:15:40 GMT" + ], + "Connection": [ + "keep-alive" ], "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "X-Psn-Track-Id": [ + "0963460106131144274" ], "X-Content-Type-Options": [ "nosniff" + ] + }, + "body": { + "string": "{\"onlineId\": \"Lucidityzen_v2\", \"aboutMe\": \"u butt\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP3749/CUSA10307_00-AV00000000000090_AF79DF51A4486E7C8BB3_m.png\"}], \"languages\": [\"ru-RU\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/4273405838384737823/profiles", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:12 GMT" + "Server": [ + "Apache" ], - "X-Psn-Track-Id": [ - "0552497156658770679" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" + ], + "Content-Length": [ + "791" + ], + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], "Access-Control-Allow-Origin": [ "*" + ], + "Date": [ + "Sun, 12 Jan 2025 00:15:40 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0352971489391548904" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { - "string": "{\"onlineId\": \"VaultTec_Trading\", \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_s/default/DefaultAvatar_s.png\"}, {\"size\": \"xl\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_xl/default/Defaultavatar_xl.png\"}, {\"size\": \"l\", \"url\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}, {\"size\": \"m\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_m/default/DefaultAvatar_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": false, \"isOfficiallyVerified\": false, \"isMe\": false}" + "string": "{\"onlineId\": \"DaUglyDucklin\", \"aboutMe\": \"Go get bent. Ya'll are planks. Casablumkin. G.G. Switching to PC, Join me friends, No one left behind.\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_s.png\"}, {\"size\": \"xl\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_xl.png\"}, {\"size\": \"l\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_l.png\"}, {\"size\": \"m\", \"url\": \"http://psn-rsc.prod.dl.playstation.net/psn-rsc/avatar/UP1291/CUSA04676_00-AV00000000000002_39FEDE608B9AC60C1235_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": true, \"isOfficiallyVerified\": false, \"isMe\": false}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json index 0273f64..49ee5ed 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_groups.json @@ -33,46 +33,46 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" + ], + "Vary": [ + "accept-encoding" ], "content-length": [ - "2283" + "2693" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Cache-Control": [ + "private" ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" + "Access-Control-Allow-Origin": [ + "*" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" - ], + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ], "Date": [ - "Sun, 16 Jun 2024 22:59:12 GMT" - ], - "Set-Cookie": "REDACTED", - "Access-Control-Allow-Origin": [ - "*" + "Sat, 11 Jan 2025 22:44:27 GMT" ] }, "body": { - "string": "{\"groups\": [{\"groupId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"groupType\": 0, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}, {\"groupId\": \"~25C4C5406FD6D50E.7AF3224877607CC0\", \"groupType\": 0, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"8e69128e4611fa8160de2aa33bf229ac8a969c5e-115\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}, {\"groupId\": \"18751a7d029fd0ab51664bbdd9ac700a6ce92698-637\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"d8397c573e4c1bf5f32e762ee7446ae4a2731957-983\", \"groupType\": 1, \"members\": [{\"accountId\": \"2338752500650724106\", \"onlineId\": \"Salvadxsz\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"6cb22f41de0c4d73def6fbceb9d920e24111cc62-245\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"83108bbe436a2b498ff8bd8a859ec928e4879ba6-288\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"5b9ef4dac84464a3c65a98efe9ad5763e5fea630-670\", \"groupType\": 1, \"members\": [{\"accountId\": \"3228711241517547934\", \"onlineId\": \"RealTrabstarbr\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"e46afaa722b17aff6f75e83cd30f3b0973c4fdb4-647\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"9111077425924553349\", \"onlineId\": \"buffk1\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"6bce2421cc43cf4a776116f17b366a97a8728cb3-892\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"4273044099593005394\", \"onlineId\": \"saeedg362\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}], \"previousOffset\": 0, \"nextOffset\": 10}" + "string": "{\"groups\": [{\"groupId\": \"2856b38831fdd4cba3ff343760d1a701f360f86f-70\", \"groupType\": 1, \"members\": [{\"accountId\": \"6297799822129715546\", \"onlineId\": \"MUKlMUKI_OYAZI\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"7b43a1ea61e913261fd78449d5eab93ec101d7f3-279\", \"groupType\": 1, \"members\": [{\"accountId\": \"6297799822129715546\", \"onlineId\": \"MUKlMUKI_OYAZI\"}, {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"9e3258536950c027f32d3b20dc10b3eca244d88d-284\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"4428016206697155847\", \"onlineId\": \"Yakzu101\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"f232f1be21a31541977ef736c4e76711679de591-759\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"4b219867f1ef2a5480b7f9d1c468569232377b73-86\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"0435454d4adfd49680f23af60319c8aef6f09004-267\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"f90b0e7dece84992e30f735ef7921dad380fa91b-828\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"bf6402381cf4937e3d215744f1904506bb5b2072-442\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"470517f0a2086540a235fc0e227efcc4d65819b3-796\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}, {\"groupId\": \"92c805688cee7b10b4882c01aaf8c28c2b2b5944-529\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"7360896784312806858\", \"onlineId\": \"joaopauloaramuni\"}, {\"accountId\": \"8859462586603699392\", \"onlineId\": \"test\"}]}], \"previousOffset\": 0, \"nextOffset\": 10}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json index e48d1f6..f72963a 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_profile_legacy.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "X-RequestId": [ + "d64b3d4e-6976-4107-814a-fab23bbb01f6" + ], + "X-CorrelationId": [ + "d64b3d4e-6976-4107-814a-fab23bbb01f6" + ], + "X-Psn-Correlation-Id": [ + "d64b3d4e-6976-4107-814a-fab23bbb01f6" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "d4389c96-749c-479f-a1a6-7015204bb314" - ], - "X-Psn-Correlation-Id": [ - "d4389c96-749c-479f-a1a6-7015204bb314" - ], - "X-RequestId": [ - "d4389c96-749c-479f-a1a6-7015204bb314" - ], "Content-Length": [ "35" ], + "X-Psn-Request-Id": [ + "d64b3d4e-6976-4107-814a-fab23bbb01f6" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:10 GMT" + "Sat, 11 Jan 2025 22:44:24 GMT" ], - "X-CorrelationId": [ - "d4389c96-749c-479f-a1a6-7015204bb314" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"accountId\": \"2721516955383551246\"}" @@ -99,42 +99,42 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "1619" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "X-Psn-Track-Id": [ + "0834433592898889875" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Origin": [ + "*" ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:10 GMT" + "Content-Type": [ + "application/json" ], - "X-Psn-Track-Id": [ - "0044977435577757654" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "Access-Control-Allow-Origin": [ - "*" + "Date": [ + "Sat, 11 Jan 2025 22:44:25 GMT" ] }, "body": { @@ -180,32 +180,29 @@ "Server": [ "Apache" ], - "Cache-Control": [ - "no-store" - ], - "content-length": [ + "Content-Length": [ "1096" ], + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, OPTIONS" + ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Cache-Control": [ + "no-store" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], "Content-Type": [ "application/json" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], "Date": [ - "Sun, 16 Jun 2024 22:59:11 GMT" - ], - "Access-Control-Allow-Origin": [ - "*" + "Sat, 11 Jan 2025 22:44:25 GMT" ], "Set-Cookie": "REDACTED" }, diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_region.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_region.json new file mode 100644 index 0000000..3eca729 --- /dev/null +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__get_region.json @@ -0,0 +1,398 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" + ] + } + }, + "response": { + "status": { + "code": 302, + "message": "Moved Temporarily" + }, + "headers": { + "Content-Length": [ + "0" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Date": [ + "Sat, 11 Jan 2025 22:56:38 GMT" + ], + "Set-Cookie": "REDACTED", + "Connection": [ + "keep-alive" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "DENY" + ], + "Expires": [ + "0" + ], + "X-Psn-Request-Id": [ + "6efa0017ebf950ee915cde38c4482edd" + ], + "Server": [ + "nginx" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "X-RequestId": [ + "6efa0017ebf950ee915cde38c4482edd" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.6s8Ixt&cid=00000000-0000-0000-0000-b025aa3b2674" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Length": [ + "4010" + ], + "Date": [ + "Sat, 11 Jan 2025 22:56:39 GMT" + ], + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Psn-Request-Id": [ + "df068bd650c9ad8832562c6575d6441e" + ], + "Server": [ + "nginx" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Cache-Control": [ + "no-store" + ], + "Connection": [ + "keep-alive" + ], + "X-RequestId": [ + "df068bd650c9ad8832562c6575d6441e" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://dms.api.playstation.com/api/v1/devices/accounts/me", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Length": [ + "35" + ], + "Date": [ + "Sat, 11 Jan 2025 22:56:39 GMT" + ], + "Set-Cookie": "REDACTED", + "Content-Type": [ + "application/json" + ], + "X-Psn-Request-Id": [ + "49778f41-5ff3-4287-b5ab-c0aae984bc64" + ], + "Server": [ + "nginx" + ], + "X-Psn-Correlation-Id": [ + "49778f41-5ff3-4287-b5ab-c0aae984bc64" + ], + "Connection": [ + "keep-alive" + ], + "X-RequestId": [ + "49778f41-5ff3-4287-b5ab-c0aae984bc64" + ], + "X-CorrelationId": [ + "49778f41-5ff3-4287-b5ab-c0aae984bc64" + ] + }, + "body": { + "string": "{\"accountId\": \"2721516955383551246\"}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://m.np.playstation.com/api/userProfile/v1/internal/users/2721516955383551246/profiles", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Length": [ + "1619" + ], + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" + ], + "X-Psn-Track-Id": [ + "0245123396640090779" + ], + "Date": [ + "Sat, 11 Jan 2025 22:56:39 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Set-Cookie": "REDACTED", + "Content-Type": [ + "application/json" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Apache" + ], + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + ] + }, + "body": { + "string": "{\"onlineId\": \"VaultTec-Co\", \"personalDetail\": {\"firstName\": \"VaultTec\", \"lastName\": \"BlacklistBot\", \"profilePictures\": [{\"size\": \"s\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=50&h=50&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}, {\"size\": \"m\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=160&h=160&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}, {\"size\": \"l\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=240&h=240&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}, {\"size\": \"xl\", \"url\": \"https://image.api.np.km.playstation.net/images/?format=png&w=440&h=440&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}]}, \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"avatars\": [{\"size\": \"s\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_s/default/DefaultAvatar_s.png\"}, {\"size\": \"xl\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_xl/default/Defaultavatar_xl.png\"}, {\"size\": \"l\", \"url\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}, {\"size\": \"m\", \"url\": \"http://static-resource.np.community.playstation.net/avatar_m/default/DefaultAvatar_m.png\"}], \"languages\": [\"en-US\"], \"isPlus\": false, \"isOfficiallyVerified\": false, \"isMe\": true}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/VaultTec-Co/profile2?fields=npId%2ConlineId%2CaccountId%2CavatarUrls%2Cplus%2CaboutMe%2ClanguagesUsed%2CtrophySummary%28%40default%2Clevel%2Cprogress%2CearnedTrophies%29%2CisOfficiallyVerified%2CpersonalDetail%28%40default%2CprofilePictureUrls%29%2CpersonalDetailSharing%2CpersonalDetailSharingRequestMessageFlag%2CprimaryOnlineStatus%2Cpresences%28%40default%2C%40titleInfo%2Cplatform%2ClastOnlineDate%2ChasBroadcastData%29%2CrequestMessageFlag%2Cblocking%2CfriendRelation%2Cfollowing%2CconsoleAvailability", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Length": [ + "1096" + ], + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, OPTIONS" + ], + "Date": [ + "Sat, 11 Jan 2025 22:56:39 GMT" + ], + "Content-Type": [ + "application/json" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Apache" + ], + "Cache-Control": [ + "no-store" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"profile\": {\"onlineId\": \"VaultTec-Co\", \"accountId\": \"2721516955383551246\", \"npId\": \"VmF1bHRUZWMtQ29AYjcudXM=\", \"avatarUrls\": [{\"size\": \"l\", \"avatarUrl\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}], \"plus\": 0, \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"languagesUsed\": [\"en\"], \"trophySummary\": {\"level\": 1, \"progress\": 0, \"earnedTrophies\": {\"platinum\": 0, \"gold\": 0, \"silver\": 0, \"bronze\": 0}}, \"isOfficiallyVerified\": false, \"personalDetail\": {\"firstName\": \"VaultTec\", \"lastName\": \"BlacklistBot\", \"profilePictureUrls\": [{\"size\": \"xl\", \"profilePictureUrl\": \"https://image.api.np.km.playstation.net/images/?format=png&w=440&h=440&image=https%3A%2F%2Fkfscdn.api.np.km.playstation.net%2F2721516955383551246%2F1616355099647.png&sign=7e3003da6a783ce92219a4e7e3d1dba5f4e4fb51\"}]}, \"personalDetailSharing\": \"no\", \"personalDetailSharingRequestMessageFlag\": false, \"primaryOnlineStatus\": \"offline\", \"presences\": [{\"onlineStatus\": \"offline\", \"hasBroadcastData\": false}], \"friendRelation\": \"no\", \"requestMessageFlag\": false, \"blocking\": false, \"following\": false, \"consoleAvailability\": {\"availabilityStatus\": \"offline\"}}}" + } + } + } + ] +} diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json index bc81e0d..f0ed7e6 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__online_id.json @@ -51,51 +51,51 @@ "message": "Moved Temporarily" }, "headers": { - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.D62rAJ&cid=00000000-0000-0000-0000-b025aa3b2674" + "Expires": [ + "0" ], - "Server": [ - "nginx" + "X-RequestId": [ + "df3b4d9ab302487fd516849745f8b053" ], - "X-Psn-Request-Id": [ - "c38620f46ec395196d67196c31ec90ca" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Frame-Options": [ - "DENY" + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" ], - "Connection": [ - "keep-alive" + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.sVjdzf&cid=00000000-0000-0000-0000-b025aa3b2674" ], - "X-RequestId": [ - "c38620f46ec395196d67196c31ec90ca" + "Server": [ + "nginx" ], "Content-Length": [ "0" ], - "Strict-Transport-Security": [ - "max-age=31536000 ; includeSubDomains" + "X-XSS-Protection": [ + "1; mode=block" ], "X-Content-Type-Options": [ "nosniff" ], - "Expires": [ - "0" + "X-Frame-Options": [ + "DENY" ], - "X-XSS-Protection": [ - "1; mode=block" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Connection": [ + "keep-alive" ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:09 GMT" + "X-Psn-Request-Id": [ + "df3b4d9ab302487fd516849745f8b053" ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Date": [ + "Sat, 11 Jan 2025 22:44:23 GMT" ] }, "body": { @@ -144,40 +144,40 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "nginx" + "X-RequestId": [ + "dd1c2798360969f37facee909a01d1cb" ], - "X-Psn-Request-Id": [ - "90723bca6e9caab7730323b78b9f8dd5" + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" ], "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" ], - "Cache-Control": [ - "no-store" + "Connection": [ + "keep-alive" ], - "X-RequestId": [ - "90723bca6e9caab7730323b78b9f8dd5" + "Server": [ + "nginx" ], "Content-Length": [ - "3998" + "4010" ], "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ + "no-store" + ], + "X-Psn-Request-Id": [ + "dd1c2798360969f37facee909a01d1cb" + ], "Content-Type": [ "application/json;charset=UTF-8" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:09 GMT" + "Sat, 11 Jan 2025 22:44:24 GMT" ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" @@ -216,33 +216,33 @@ "message": "OK" }, "headers": { + "X-RequestId": [ + "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621" + ], + "X-CorrelationId": [ + "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621" + ], + "X-Psn-Correlation-Id": [ + "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "f097b104-5ee6-4c12-9899-bf420be514a5" - ], - "X-Psn-Correlation-Id": [ - "f097b104-5ee6-4c12-9899-bf420be514a5" - ], - "X-RequestId": [ - "f097b104-5ee6-4c12-9899-bf420be514a5" - ], "Content-Length": [ "35" ], + "Set-Cookie": "REDACTED", + "X-Psn-Request-Id": [ + "4ecdfb88-3c92-4f3f-a9b8-e27ba84b7621" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:09 GMT" - ], - "X-CorrelationId": [ - "f097b104-5ee6-4c12-9899-bf420be514a5" + "Sat, 11 Jan 2025 22:44:24 GMT" ] }, "body": { @@ -282,42 +282,42 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "1619" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "X-Psn-Track-Id": [ + "0025232563338823556" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Origin": [ + "*" ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:10 GMT" + "Content-Type": [ + "application/json" ], - "X-Psn-Track-Id": [ - "0415615454748285869" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "Access-Control-Allow-Origin": [ - "*" + "Date": [ + "Sat, 11 Jan 2025 22:44:24 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json index bfe6c71..1e058ce 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__repr_and_str.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "X-RequestId": [ + "bc05996e-abf0-48da-b3b8-a69edacf640b" + ], + "X-CorrelationId": [ + "bc05996e-abf0-48da-b3b8-a69edacf640b" + ], + "X-Psn-Correlation-Id": [ + "bc05996e-abf0-48da-b3b8-a69edacf640b" + ], "Connection": [ "keep-alive" ], "Server": [ "nginx" ], - "X-Psn-Request-Id": [ - "01b3f347-f01d-4150-af0e-c0b558e615d8" - ], - "X-Psn-Correlation-Id": [ - "01b3f347-f01d-4150-af0e-c0b558e615d8" - ], - "X-RequestId": [ - "01b3f347-f01d-4150-af0e-c0b558e615d8" - ], "Content-Length": [ "35" ], + "X-Psn-Request-Id": [ + "bc05996e-abf0-48da-b3b8-a69edacf640b" + ], "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:16 GMT" + "Sat, 11 Jan 2025 22:44:31 GMT" ], - "X-CorrelationId": [ - "01b3f347-f01d-4150-af0e-c0b558e615d8" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"accountId\": \"2721516955383551246\"}" @@ -99,42 +99,42 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "1619" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH" + "X-Psn-Track-Id": [ + "0003757419266246082" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "private" + ], + "Access-Control-Allow-Origin": [ + "*" ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:16 GMT" + "Content-Type": [ + "application/json" ], - "X-Psn-Track-Id": [ - "0882513787830503784" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "Access-Control-Allow-Origin": [ - "*" + "Date": [ + "Sat, 11 Jan 2025 22:44:31 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json index 6dbf5f7..dda533a 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__title_stats.json @@ -33,51 +33,51 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" - ], - "Connection": [ - "keep-alive" - ], - "X-Psn-Request-Id": [ - "f14cda5a-83e8-1031-a823-7a30a0fa26bf" + "Expires": [ + "Sat, 11 Jan 2025 22:44:31 GMT" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Max-Age": [ + "3600" ], "X-Psn-Correlation-Id": [ - "f14cda5a-83e8-1031-a822-7a30a0fa26bf" + "451c277e-94a9-1031-a66c-02955d6e0f38" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "69" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Pragma": [ + "no-cache" ], - "Expires": [ - "Sun, 16 Jun 2024 22:59:15 GMT" + "Cache-Control": [ + "max-age=0, no-cache, no-store" ], - "Content-Type": [ - "application/json" + "Access-Control-Allow-Origin": [ + "*" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:15 GMT" + "X-Psn-Request-Id": [ + "451c277e-94a9-1031-a66d-02955d6e0f38" ], - "Access-Control-Max-Age": [ - "3600" + "Content-Type": [ + "application/json" ], "Access-Control-Allow-Headers": [ "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], + "Date": [ + "Sat, 11 Jan 2025 22:44:31 GMT" + ], "Set-Cookie": "REDACTED" }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json index 251f491..01e6b68 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies.json @@ -33,33 +33,33 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" - ], "Content-Length": [ "14154" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Vary": [ + "Accept-Language" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "max-age=300" ], "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" + "Content-Type": [ + "application/json" ], "Date": [ - "Sun, 16 Jun 2024 22:59:14 GMT" + "Sat, 11 Jan 2025 22:44:29 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json index 448aaad..b407e3c 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophies_with_progress.json @@ -33,33 +33,33 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" - ], "Content-Length": [ "14154" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Vary": [ + "Accept-Language" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "max-age=300" ], "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" + "Content-Type": [ + "application/json" ], "Date": [ - "Sun, 16 Jun 2024 22:59:14 GMT" + "Sat, 11 Jan 2025 22:44:29 GMT" ] }, "body": { @@ -99,6 +99,9 @@ "message": "Not Found" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], @@ -108,22 +111,19 @@ "Content-Length": [ "110" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:14 GMT" + "Sat, 11 Jan 2025 22:44:30 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"0d6f6413-2c34-11ef-a647-f72a25fb9321\", \"code\": 2240525, \"message\": \"Resource not found\"}}" + "string": "{\"error\": {\"referenceId\": \"9e70f41e-d06d-11ef-a1e3-7d65cde6bf8e\", \"code\": 2240525, \"message\": \"Resource not found\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json index ffc5a46..62a08dc 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary.json @@ -33,33 +33,33 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" - ], "Content-Length": [ "1446" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Vary": [ + "Accept-Language" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "max-age=300" ], "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" + "Content-Type": [ + "application/json" ], "Date": [ - "Sun, 16 Jun 2024 22:59:15 GMT" + "Sat, 11 Jan 2025 22:44:30 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json index 8c78c97..c4657ca 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_groups_summary_with_progress.json @@ -33,33 +33,33 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" - ], "Content-Length": [ "1446" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Vary": [ + "Accept-Language" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "max-age=300" ], "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" + "Content-Type": [ + "application/json" ], "Date": [ - "Sun, 16 Jun 2024 22:59:15 GMT" + "Sat, 11 Jan 2025 22:44:30 GMT" ] }, "body": { @@ -99,6 +99,9 @@ "message": "Not Found" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], @@ -108,22 +111,19 @@ "Content-Length": [ "110" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:15 GMT" + "Sat, 11 Jan 2025 22:44:30 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"0de7a183-2c34-11ef-941f-bd3ca234bdb0\", \"code\": 2240525, \"message\": \"Resource not found\"}}" + "string": "{\"error\": {\"referenceId\": \"9edab24b-d06d-11ef-89eb-cddb58447f12\", \"code\": 2240525, \"message\": \"Resource not found\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json index d1d2ee1..b69cd50 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_summary.json @@ -33,30 +33,30 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "203" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:13 GMT" + "Sat, 11 Jan 2025 22:44:28 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json index f002171..e3c3b3c 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles.json @@ -33,30 +33,30 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "38" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:13 GMT" + "Sat, 11 Jan 2025 22:44:29 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json index 94c6482..58c5c0c 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_client__trophy_titles_for_title.json @@ -33,30 +33,30 @@ "message": "OK" }, "headers": { + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "59" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", "Date": [ - "Sun, 16 Jun 2024 22:59:13 GMT" + "Sat, 11 Jan 2025 22:44:29 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json index cecfc1c..f8d8e74 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__get_title_details.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ - "891" + "912" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:16 GMT" - ] + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"67.7\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}" + "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"66.8\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}" } } }, @@ -96,34 +96,34 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json;charset=UTF-8" + ], "Connection": [ "keep-alive" ], - "Cache-Control": [ - "max-age=300" - ], "content-length": [ - "23208" + "23896" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json;charset=UTF-8" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Cache-Control": [ + "max-age=300" ], "Vary": [ "Accept-Encoding" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:17 GMT" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "[{\"id\": 201930, \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"publisherName\": \"Rockstar Games\", \"media\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)

Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.

Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.

Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.

PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.

Explore Los Santos and Blaine County in greater detail than ever before, now featuring:

\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more

Plus, all-new enhancements to the ever-evolving world of GTA Online, including:

\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
30 network players
Remote Play supported
DUALSHOCK\\u00a04 vibration\"}], \"categorizedProducts\": [{\"topCategory\": \"ADD_ON\", \"ids\": [\"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"UP1004-CUSA00419_00-STARTERPACKOG001\", \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"UP1004-CUSA00419_00-GTAVCASHPACK000F\"]}, {\"topCategory\": \"GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOANDSPUPGRADE\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"UP1004-CUSA00419_00-PREMIUMPACKOG001\", \"UP1004-CUSA00419_00-PREMIUMPACKOGGW1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGME1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGWS1\", \"UP1004-CUSA00419_00-GTAVDIGITALDOWNL\"]}, {\"topCategory\": \"PVU_GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\"]}], \"titleIds\": [\"CUSA01436_00\", \"CUSA00880_00\", \"PPSA03421_00\", \"CUSA00419_00\", \"CUSA29862_00\", \"PPSA04263_00\", \"PPSA03420_00\", \"CUSA00411_00\", \"PPSA04265_00\", \"PPSA04264_00\", \"PPSA01721_00\"], \"country\": \"US\", \"language\": \"en\", \"type\": \"GAME\", \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Grand Theft Auto V (PlayStation\\u00ae5)\"}}, \"localizedDescriptions\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": [{\"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)

Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.

Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.

Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.

PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.

Explore Los Santos and Blaine County in greater detail than ever before, now featuring:

\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more

Plus, all-new enhancements to the ever-evolving world of GTA Online, including:

\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\", \"type\": \"LONG\"}]}}, \"localizedPublisherName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Rockstar Games\"}}, \"defaultProduct\": {\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"conceptId\": 201930, \"titleId\": \"PPSA03420_00\", \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"minimumAge\": 17, \"type\": \"GAME.BUNDLE\", \"storeClassification\": \"GAME\", \"storePrimaryClassification\": \"PREMIUM_GAME\", \"storeSubClassification\": \"BUNDLE\", \"storeDisplayClassification\": \"GAME_BUNDLE\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"topCategory\": \"GAME\", \"localizedTopCategory\": \"Game\", \"edition\": {\"name\": \"\", \"nameEn\": \"\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"ordering\": 2, \"type\": \"STANDARD\", \"features\": [\"Grand Theft Auto Online (PS5\\u2122)\"]}, \"isDefaultProduct\": true, \"isBestSelling\": false, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Includes Grand Theft Auto Online. GTAV: Story Mode can be purchased separately.

Continue your journey on PS5\\u2122 and transfer your GTA Online characters and progression to PS5\\u2122 with a one-time migration.

Experience GTA Online, a dynamic and ever-evolving online universe for up to 30 players, where you can rise from street-level hustler to become a kingpin of your own criminal empire. PlayStation\\u00ae5 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and content released since launch, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.

GTA Online for PlayStation\\u00ae5 also features all-new enhancements, including:

\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort. All this and more available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including nightclubs, arcades, penthouse parties, car meetups, and much more

Plus, all of the enhancements available on latest generation consoles bringing the world of Los Santos and Blaine County in greater detail than ever before, including:

\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, a frame rate of up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and much more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
Remote Play supported\"}, {\"type\": \"LEGAL\", \"desc\": \"

Online features require an account and are subject to terms of service and applicable privacy policy (playstationnetwork.com/terms-of-service & playstationnetwork.com/privacy-policy).

Software subject to license (us.playstation.com/softwarelicense).
\", \"metadata\": {\"downloadCloudFlag\": \"BOTH\", \"subType\": \"SCEA_TOS\"}}, {\"type\": \"LEGAL\", \"desc\": \"
You can download and play this content on the main PS5 console associated with your account (through the \\u201cConsole Sharing and Offline Play\\u201d setting) and on any other PS5 consoles when you login with your same account.
\", \"metadata\": {\"downloadCloudFlag\": \"DOWNLOAD\", \"subType\": \"SCEA_PS5_DRM\"}}, {\"type\": \"LEGAL\", \"desc\": \"
\\u00a9 2008\\u20132022. Rockstar Games, Rockstar North, Grand Theft Auto, GTA Five, Grand Theft Auto Online, and R* are marks/logos/copyrights of Take-Two Interactive. Uses Bink Video. \\u00a9 1997\\u20132022 by Epic Game Tools, Inc. This game includes Autodesk\\u00ae Scaleform\\u00ae software, \\u00a9 2013 Autodesk, Inc. All other marks and trademarks are properties of their respective owners. All rights reserved.
\"}], \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://image.api.playstation.com/grc/images/ratings/hd/esrb/m.png\", \"url4k\": \"https://image.api.playstation.com/grc/images/ratings/4k/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"media\": {\"videos\": [{\"id\": \"10427117\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202203/2115/5WZd4yvNgJ80hrysrckNR6Op.png\"], \"type\": \"PREVIEW\"}, {\"id\": \"10983933\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202403/1817/32635bc8c1f1fcdf3c096d4138ecce6d123aa20ad1609f67.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/91f5e632-13bc-4bea-9185-7311982a69c0-ltx8lse4/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/91f5e632-13bc-4bea-9185-7311982a69c0-ltx8lse4/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202403/1817/2f24bad0c576d8c21856c97c7d6e821aa52863ad45b9cd3f.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedGenres\": [{\"value\": \"Action\", \"type\": \"ACTION\"}, {\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}], \"subGenres\": [\"N/A\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"NA\", \"type\": \"N/A\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"releaseDate\": \"2022-03-15T04:00:00Z\", \"localizedReleaseDate\": \"03/15/2022\", \"synonyms\": \"Rockstar Games,GTA Online,GTA V,GTA+,GTA Plus,Shark Cash Card,GTA$,Tarjeta Tibur\\u00f3n,CashCard,\\u0420\\u043e\\u043a\\u0441\\u0442\\u0430\\u0440 \\u0433\\u0435\\u0439\\u043c\\u0441\", \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"isInGameStore\": false, \"isPlaystationStore\": true, \"isPlatformRepresentative\": false, \"isConsumable\": false, \"leadPublisherName\": \"Rockstar Games\", \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}, {\"type\": \"STREAMING_SUPPORTED\", \"value\": \"ENABLED\", \"targetPlatforms\": [\"PS5\"]}], \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"revisionIds\": {}, \"targetPlatforms\": [\"PS5\"], \"skus\": [{\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"displayPrice\": \"$19.99\", \"price\": 1999, \"eligibilities\": [], \"type\": \"STANDARD\", \"name\": \"Game\", \"entitlements\": [{\"id\": \"UP1004-PPSA03420_00-GTAONLINEDIGITAL\", \"name\": \"Grand Theft Auto V\", \"applicationType\": \"STANDARD\", \"packageType\": \"PSGD\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"spokenLanguages\": [\"en\"], \"screenLanguages\": [\"es\", \"zh\", \"fr\", \"ru\", \"de\", \"pl\", \"it\", \"pt_BR\", \"en\", \"es_MX\", \"ko\", \"ch\"], \"packages\": [{\"playablePlatform\": \"PS5\", \"size\": 95945162752}], \"streamingSupported\": true, \"featureType\": \"FULL_GAME\"}, {\"id\": \"UP1004-PPSA03420_00-PSTRACK000000000\", \"name\": \"Grand Theft Auto Online (PS5\\u2122) Tracker\", \"packageType\": \"PSTRACK\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"packages\": [], \"featureType\": \"NOT_APPLICABLE\"}], \"chargeImmediatelyFlag\": false, \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"contentCollections\": []}], \"offers\": {\"osls\": [], \"skuRelevancy\": [{\"skuId\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"offerAvailability\": []}]}, \"starRating\": {\"total\": \"698988\", \"score\": \"4.52\", \"count\": [{\"score\": 1, \"count\": 47865}, {\"score\": 2, \"count\": 7078}, {\"score\": 3, \"count\": 33383}, {\"score\": 4, \"count\": 56813}, {\"score\": 5, \"count\": 553849}]}, \"isTrending\": false, \"contentTypeId\": 1}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedGenres\": [{\"value\": \"Action\", \"type\": \"ACTION\"}, {\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}], \"subGenres\": [\"SHOOT_EM_UP\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"Shoot 'Em Up\", \"type\": \"SHOOT_EM_UP\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"minimumAge\": 17, \"releaseDate\": {\"date\": \"2014-11-18T00:00:00Z\", \"localizedDate\": \"11/17/2014\", \"type\": \"DAY_MONTH_YEAR\"}, \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"storeFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS\", \"value\": 30}, {\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"DUALSHOCK4_VIBRATION\", \"value\": true, \"targetPlatforms\": [\"PS4\"]}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}], \"localizedMedia\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}}}, \"revisionIds\": {\"all\": 1718118515797, \"self\": 1710535295308}, \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://cdn-a.sonyentertainmentnetwork.com/grc/images/ratings/hd/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"starRating\": {\"total\": \"698988\", \"score\": \"4.52\", \"count\": [{\"score\": 1, \"count\": 47865}, {\"score\": 2, \"count\": 7078}, {\"score\": 3, \"count\": 33383}, {\"score\": 4, \"count\": 56813}, {\"score\": 5, \"count\": 553849}]}}]" + "string": "[{\"id\": 201930, \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"publisherName\": \"Rockstar Games\", \"media\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)

Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.

Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.

Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.

PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.

Explore Los Santos and Blaine County in greater detail than ever before, now featuring:

\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more

Plus, all-new enhancements to the ever-evolving world of GTA Online, including:

\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
30 network players
Remote Play supported
DUALSHOCK\\u00a04 vibration\"}], \"categorizedProducts\": [{\"topCategory\": \"ADD_ON\", \"ids\": [\"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"UP1004-CUSA00419_00-STARTERPACKOG001\", \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"UP1004-CUSA00419_00-GTAVCASHPACK000F\"]}, {\"topCategory\": \"GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOANDSPUPGRADE\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"UP1004-CUSA00419_00-PREMIUMPACKOG001\", \"UP1004-CUSA00419_00-PREMIUMPACKOGGW1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGME1\", \"UP1004-CUSA00419_00-PREMIUMPACKOGWS1\", \"UP1004-CUSA00419_00-GTAVDIGITALDOWNL\"]}, {\"topCategory\": \"PVU_GAME\", \"ids\": [\"UP1004-CUSA00419_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAVCROSSGENBUND\", \"UP1004-PPSA03420_00-GTAOSTANDALONE01\"]}], \"titleIds\": [\"CUSA01436_00\", \"CUSA00880_00\", \"PPSA03421_00\", \"CUSA00419_00\", \"CUSA29862_00\", \"PPSA04263_00\", \"PPSA03420_00\", \"CUSA00411_00\", \"PPSA04265_00\", \"PPSA04264_00\", \"PPSA01721_00\"], \"country\": \"US\", \"language\": \"en\", \"type\": \"GAME\", \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Grand Theft Auto V (PlayStation\\u00ae5)\"}}, \"localizedDescriptions\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": [{\"desc\": \"Special introductory price valid from 15-03-2022 to 14-06-2022 (Standard Price: $39.99)

Includes Grand Theft Auto V: Story Mode and Grand Theft Auto Online.

Continue your journey on PS5\\u2122 and transfer both GTAV Story Mode progress and GTA Online characters and progression to PS5\\u2122 with a one-time migration.

Experience entertainment blockbusters, Grand Theft Auto V and GTA Online \\u2014 now for PS5\\u2122.

PS5\\u2122 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and access to all current and previous content updates, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.

Explore Los Santos and Blaine County in greater detail than ever before, now featuring:

\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more

Plus, all-new enhancements to the ever-evolving world of GTA Online, including:

\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new vehicle upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four illicit businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort; all available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including golf courses, nightclubs, arcades, poolside lounges, and much more\", \"type\": \"LONG\"}]}}, \"localizedPublisherName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Rockstar Games\"}}, \"defaultProduct\": {\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"conceptId\": 201930, \"titleId\": \"PPSA03420_00\", \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"nameEn\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"minimumAge\": 17, \"type\": \"GAME.BUNDLE\", \"storeClassification\": \"GAME\", \"storePrimaryClassification\": \"PREMIUM_GAME\", \"storeSubClassification\": \"BUNDLE\", \"storeDisplayClassification\": \"GAME_BUNDLE\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"topCategory\": \"GAME\", \"localizedTopCategory\": \"Game\", \"edition\": {\"name\": \"\", \"nameEn\": \"\", \"phoneticPronunciation\": \"\", \"spokenName\": \"\", \"ordering\": 2, \"type\": \"STANDARD\", \"features\": [\"Grand Theft Auto Online (PS5\\u2122)\"]}, \"isDefaultProduct\": true, \"isBestSelling\": false, \"descriptions\": [{\"type\": \"LONG\", \"desc\": \"Includes Grand Theft Auto Online. GTAV: Story Mode can be purchased separately.

Continue your journey on PS5\\u2122 and transfer your GTA Online characters and progression to PS5\\u2122 with a one-time migration.

Experience GTA Online, a dynamic and ever-evolving online universe for up to 30 players, where you can rise from street-level hustler to become a kingpin of your own criminal empire. PlayStation\\u00ae5 players can enjoy new high-performance vehicle upgrades and improvements like the Career Builder as well as all GTA Online gameplay upgrades, expansions, and content released since launch, ready to enjoy solo or with friends. Pull off daring co-operative Heists, enter adrenaline-fueled Stunt Races, compete in unique Adversary Modes, or hang out in social spaces including nightclubs, arcades, penthouse parties, car meetups, and much more.

GTA Online for PlayStation\\u00ae5 also features all-new enhancements, including:

\\u2022\\tEXCLUSIVE NEW CONTENT \\u2014 Step into Hao\\u2019s Special Works at the Los Santos Car Meet, featuring elite new upgrades and exclusive modifications. Then take these high-performance vehicles into HSW races, new time trials, and more.
\\u2022\\tTHE CAREER BUILDER \\u2014 Get started in GTA Online with the tools of the trade. Quickly choose from one of four businesses \\u2014 Biker, Executive, Nightclub Owner, or Gunrunner \\u2014 and select from properties, powerhouse vehicles, and weaponry to kick-start your enterprise.
\\u2022\\tNEW MENU DESIGN \\u2014 Immediately access everything GTA Online has to offer right from the Main Menu, including the latest and most popular updates
\\u2022\\tACCESS TO ALL CURRENT AND PREVIOUS UPDATES \\u2014 Dive into more than 40 massive updates with more to come, featuring everything from the high-stakes hunt for Dr. Dre\\u2019s missing music files with Franklin Clinton in The Contract to the high-octane underground street racing action of Los Santos Tuners; Heists on the lush tropical island of Cayo Perico to the nightlife circuit of After Hours and The Diamond Casino & Resort. All this and more available alongside a wide range of races, modes, activities, and social spaces to enjoy solo or with friends \\u2014 including nightclubs, arcades, penthouse parties, car meetups, and much more

Plus, all of the enhancements available on latest generation consoles bringing the world of Los Santos and Blaine County in greater detail than ever before, including:

\\u2022\\tSTUNNING VISUALS \\u2014 Enhanced levels of fidelity and performance with new graphics modes featuring up to 4K resolution, a frame rate of up to 60 frames per second, HDR options, ray tracing, improved texture quality, and more
\\u2022\\tFASTER LOADING \\u2014 Quicker access to the action as the world of Los Santos and Blaine County load in faster than ever before
\\u2022\\tADAPTIVE TRIGGERS AND HAPTIC FEEDBACK \\u2014 Feel every moment through the DualSense\\u2122 controller, from directional damage to weather effects, rough road surfaces to explosions, and much more
\\u2022\\tTEMPEST 3D AUDIO \\u2014 Hear the sounds of the world with pinpoint precision: the throttle of a stolen supercar, the rattle of neighboring gunfire, the roar of a helicopter overhead, and more
\"}, {\"type\": \"COMPATIBILITY_NOTICE\", \"desc\": \"PS\\u00a0Plus required for online play
Supports up to 30 online players with PS Plus
In-game purchases optional
Online play required
Vibration function and trigger effect supported (DualSense wireless controller)
Remote Play supported\"}, {\"type\": \"LEGAL\", \"desc\": \"

Online features require an account and are subject to terms of service and applicable privacy policy (playstationnetwork.com/terms-of-service & playstationnetwork.com/privacy-policy).

Software subject to license (us.playstation.com/softwarelicense).
\", \"metadata\": {\"downloadCloudFlag\": \"BOTH\", \"subType\": \"SCEA_TOS\"}}, {\"type\": \"LEGAL\", \"desc\": \"
You can download and play this content on the main PS5 console associated with your account (through the \\u201cConsole Sharing and Offline Play\\u201d setting) and on any other PS5 consoles when you login with your same account.
\", \"metadata\": {\"downloadCloudFlag\": \"DOWNLOAD\", \"subType\": \"SCEA_PS5_DRM\"}}, {\"type\": \"LEGAL\", \"desc\": \"
\\u00a9 2008\\u20132022. Rockstar Games, Rockstar North, Grand Theft Auto, GTA Five, Grand Theft Auto Online, and R* are marks/logos/copyrights of Take-Two Interactive. Uses Bink Video. \\u00a9 1997\\u20132022 by Epic Game Tools, Inc. This game includes Autodesk\\u00ae Scaleform\\u00ae software, \\u00a9 2013 Autodesk, Inc. All other marks and trademarks are properties of their respective owners. All rights reserved.
\"}], \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://image.api.playstation.com/grc/images/ratings/hd/esrb/m.png\", \"url4k\": \"https://image.api.playstation.com/grc/images/ratings/4k/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"media\": {\"videos\": [{\"id\": \"10427117\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/cdba937f-e310-4798-a293-2633da3a61f2-l10vor03/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202203/2115/5WZd4yvNgJ80hrysrckNR6Op.png\"], \"type\": \"PREVIEW\"}, {\"id\": \"11254896\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/231027f2-9aef-4bb7-b4d4-d245fcd554b2-m4lf9lpn/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/231027f2-9aef-4bb7-b4d4-d245fcd554b2-m4lf9lpn/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202412/1214/ce17f09a3242159ca773a7854e122a51b770f59c1c9768ab.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\"], \"localizedGenres\": [{\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}, {\"value\": \"Action\", \"type\": \"ACTION\"}], \"subGenres\": [\"N/A\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"NA\", \"type\": \"N/A\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"releaseDate\": \"2022-03-15T04:00:00Z\", \"localizedReleaseDate\": \"03/15/2022\", \"synonyms\": \"Rockstar Games,GTA Online,GTA V,GTA+,GTA Plus,Shark Cash Card,GTA$,Tarjeta Tibur\\u00f3n,CashCard,\\u0420\\u043e\\u043a\\u0441\\u0442\\u0430\\u0440 \\u0433\\u0435\\u0439\\u043c\\u0441\", \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"isInGameStore\": false, \"isPlaystationStore\": true, \"isPlatformRepresentative\": false, \"isConsumable\": false, \"leadPublisherName\": \"Rockstar Games\", \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}, {\"type\": \"STREAMING_SUPPORTED\", \"value\": \"ENABLED\", \"targetPlatforms\": [\"PS5\"]}], \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"revisionIds\": {}, \"targetPlatforms\": [\"PS5\"], \"skus\": [{\"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"displayPrice\": \"$19.99\", \"price\": 1999, \"eligibilities\": [], \"type\": \"STANDARD\", \"name\": \"Game\", \"entitlements\": [{\"id\": \"UP1004-PPSA03420_00-GTAONLINEDIGITAL\", \"name\": \"Grand Theft Auto V\", \"applicationType\": \"STANDARD\", \"packageType\": \"PSGD\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"spokenLanguages\": [\"en\"], \"screenLanguages\": [\"es\", \"zh\", \"fr\", \"ru\", \"de\", \"pl\", \"it\", \"pt_BR\", \"en\", \"es_MX\", \"ko\", \"ch\"], \"packages\": [{\"playablePlatform\": \"PS5\", \"size\": 98521710592}], \"streamingSupported\": true, \"featureType\": \"FULL_GAME\"}, {\"id\": \"UP1004-PPSA03420_00-PSTRACK000000000\", \"name\": \"Grand Theft Auto Online (PS5\\u2122) Tracker\", \"packageType\": \"PSTRACK\", \"preorderPlaceholderFlag\": false, \"type\": \"UNIFIED\", \"subType\": \"REGULAR\", \"packages\": [], \"featureType\": \"NOT_APPLICABLE\"}], \"chargeImmediatelyFlag\": false, \"storeFronts\": [\"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS5\", \"WEB_STORE\"], \"contentCollections\": []}], \"offers\": {\"osls\": [\"{\\\"metadata\\\":{\\\"id\\\":\\\"OFFER-PROD-10503_50\\\",\\\"schemaVersion\\\":\\\"1.3.2\\\",\\\"modified\\\":\\\"2024-12-13T17:53:04Z\\\",\\\"financeKeyId\\\":\\\"15339327\\\",\\\"campaignId\\\":\\\"PROMO-PROD-00010503\\\",\\\"promoId\\\":10503,\\\"start\\\":\\\"2025-01-03T08:00:00Z\\\",\\\"end\\\":\\\"2025-01-18T07:59:00Z\\\",\\\"version\\\":2,\\\"exclusive\\\":false,\\\"suggestSkuInCart\\\":false,\\\"display\\\":{\\\"formatting\\\":\\\"PERCENTAGE\\\"}},\\\"qualification\\\":{},\\\"content\\\":{\\\"excludes\\\":[],\\\"includes\\\":[]},\\\"reward\\\":{\\\"itemReward\\\":{\\\"discount\\\":{\\\"percent\\\":{\\\"retail\\\":50,\\\"wholesale\\\":null}}},\\\"priority\\\":10,\\\"bias\\\":10,\\\"publisherFunded\\\":null}}\"], \"skuRelevancy\": [{\"skuId\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01-U003\", \"offerAvailability\": [{\"offerId\": \"OFFER-PROD-10503_50\", \"startDate\": \"2025-01-03T08:00:00Z\", \"endDate\": \"2025-01-18T07:59:00Z\"}]}]}, \"starRating\": {\"total\": \"771122\", \"score\": \"4.50\", \"count\": [{\"score\": 1, \"count\": 56203}, {\"score\": 2, \"count\": 8177}, {\"score\": 3, \"count\": 38093}, {\"score\": 4, \"count\": 61811}, {\"score\": 5, \"count\": 606838}]}, \"isTrending\": false, \"contentTypeId\": 1}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedGenres\": [{\"value\": \"Action\", \"type\": \"ACTION\"}, {\"value\": \"Adventure\", \"type\": \"ADVENTURE\"}], \"subGenres\": [\"SHOOT_EM_UP\", \"N/A\"], \"localizedSubGenres\": [{\"value\": \"Shoot 'Em Up\", \"type\": \"SHOOT_EM_UP\"}, {\"value\": \"NA\", \"type\": \"N/A\"}], \"minimumAge\": 17, \"releaseDate\": {\"date\": \"2014-11-18T00:00:00Z\", \"localizedDate\": \"11/17/2014\", \"type\": \"DAY_MONTH_YEAR\"}, \"isRecommendableOnStore\": true, \"isSearchableOnStore\": true, \"storeFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"supportedStoreFronts\": [\"PS4\", \"PS5\", \"WEB_STORE\"], \"marketingStories\": [], \"compatibilityNotices\": [{\"type\": \"NO_OF_NETWORK_PLAYERS\", \"value\": 30}, {\"type\": \"NO_OF_NETWORK_PLAYERS_PS_PLUS\", \"value\": 30}, {\"type\": \"DUALSHOCK4_VIBRATION\", \"value\": true, \"targetPlatforms\": [\"PS4\"]}, {\"type\": \"REMOTE_PLAY_SUPPORTED\", \"value\": true}, {\"type\": \"PS5_VIBRATION\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"PS5_TRIGGER_EFFECT\", \"value\": \"OPTIONAL\", \"targetPlatforms\": [\"PS5\"]}, {\"type\": \"ONLINE_PLAY_MODE\", \"value\": \"REQUIRED\"}, {\"type\": \"IN_GAME_PURCHASES\", \"value\": \"OPTIONAL\"}], \"localizedMedia\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": {\"videos\": [{\"id\": \"10908545\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\", \"hlsUrl\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_avc.m3u8\", \"hlsUrl4k\": \"https://vulcan.dl.playstation.net/ap/bm/b9afc2a2-c88d-480b-b03c-44703b76337e-lq53hgw2/master_hevc.m3u8\", \"posters\": [\"https://image.api.playstation.com/vulcan/img/rnd/202312/1411/d0464983961065b9777f63354c675f21cd1f58bab031b481.png\"], \"type\": \"PREVIEW\"}], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\", \"type\": \"MASTER\"}]}}}, \"revisionIds\": {\"all\": 1734015032738, \"self\": 1732036037020}, \"contentRating\": {\"authority\": \"ESRB\", \"description\": \"ESRB Mature\", \"name\": \"ESRB_MATURE\", \"url\": \"https://cdn-a.sonyentertainmentnetwork.com/grc/images/ratings/hd/esrb/m.png\", \"descriptors\": [{\"description\": \"Blood and Gore\", \"name\": \"ESRB_BLOOD_AND_GORE\"}, {\"description\": \"Intense Violence\", \"name\": \"ESRB_INTENSE_VIOLENCE\"}, {\"description\": \"Mature Humor\", \"name\": \"ESRB_MATURE_HUMOR\"}, {\"description\": \"Nudity\", \"name\": \"ESRB_NUDITY\"}, {\"description\": \"Strong Language\", \"name\": \"ESRB_STRONG_LANGUAGE\"}, {\"description\": \"Strong Sexual Content\", \"name\": \"ESRB_STRONG_SEXUAL_CONTENT\"}, {\"description\": \"Use of Drugs and Alcohol\", \"name\": \"ESRB_USE_OF_DRUGS_AND_ALCOHOL\"}], \"interactiveElements\": []}, \"starRating\": {\"total\": \"771122\", \"score\": \"4.50\", \"count\": [{\"score\": 1, \"count\": 56203}, {\"score\": 2, \"count\": 8177}, {\"score\": 3, \"count\": 38093}, {\"score\": 4, \"count\": 61811}, {\"score\": 5, \"count\": 606838}]}}]" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json index a75e55a..94d2f95 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__np_communication_id.json @@ -4,7 +4,7 @@ { "request": { "method": "GET", - "uri": "https://m.np.playstation.com/api/trophy/v1/users/6515971742264256071/titles/trophyTitles?npTitleIds=PPSA03420_00%2C", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", "body": null, "headers": { "User-Agent": [ @@ -24,43 +24,226 @@ ], "Country": [ "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 302, + "message": "Moved Temporarily" }, "headers": { "Connection": [ "keep-alive" ], "Server": [ - "Apache" + "nginx" + ], + "Content-Length": [ + "0" + ], + "X-Psn-Request-Id": [ + "ad84aa658f1e4cd62a1dae7d6eeb739b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.NdB8E7&cid=00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Frame-Options": [ + "DENY" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Date": [ + "Sun, 12 Jan 2025 00:15:51 GMT" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Expires": [ + "0" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "Set-Cookie": "REDACTED", + "X-RequestId": [ + "ad84aa658f1e4cd62a1dae7d6eeb739b" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" ], "Content-Length": [ - "891" + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json;charset=UTF-8" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Connection": [ + "keep-alive" + ], + "Server": [ + "nginx" + ], + "Content-Length": [ + "4010" + ], + "X-Psn-Request-Id": [ + "43f421bbcb6e96a3038d06b8b0bcc2a5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Sun, 12 Jan 2025 00:15:51 GMT" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Cache-Control": [ + "no-store" + ], + "X-RequestId": [ + "43f421bbcb6e96a3038d06b8b0bcc2a5" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://m.np.playstation.com/api/trophy/v1/users/6515971742264256071/titles/trophyTitles?npTitleIds=PPSA03420_00%2C", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json" ], - "Set-Cookie": "REDACTED", + "Connection": [ + "keep-alive" + ], + "Server": [ + "Apache" + ], + "Content-Length": [ + "912" + ], "Date": [ - "Sun, 16 Jun 2024 22:59:16 GMT" - ] + "Sun, 12 Jan 2025 00:15:52 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"67.7\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}" + "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"66.8\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json index f5da470..203e769 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ - "891" + "912" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:53 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:17 GMT" - ] + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"67.7\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}" + "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21647_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/26efdb55-9e6d-4de9-943f-6b95768ae607.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyRare\": 3, \"trophyEarnedRate\": \"66.8\", \"earned\": true, \"earnedDateTime\": \"2022-03-15T13:34:38Z\"}], \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-03-15T13:34:39Z\"}]}]}" } } }, @@ -96,34 +96,34 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" - ], "Content-Length": [ "23860" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Cache-Control": [ + "max-age=300" ], - "Set-Cookie": "REDACTED", "Vary": [ "Accept-Language" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:17 GMT" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"trophySetVersion\": \"01.05\", \"hasTrophyGroups\": true, \"trophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"trophyType\": \"platinum\", \"trophyName\": \"Los Santos Legend\", \"trophyDetail\": \"Congratulations! You're Vinewood's biggest star!\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/8f7cad12-95b0-4040-a320-700466ca64d8.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 1, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Welcome to Los Santos\", \"trophyDetail\": \"You repo'd a car and raced it through the heart of a sun-soaked metropolis.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/ccb0b394-e930-4637-83c0-c4e0e7e0f156.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 2, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A Friendship Resurrected\", \"trophyDetail\": \"With friends like this who needs enemies?\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/c082b3cb-30e0-415b-87e2-10ada7a695bb.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 3, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A Fair Day's Pay\", \"trophyDetail\": \"It's time for a little getaway.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/21a106d7-d179-44a4-a27f-b744f9acfa31.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 4, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Moment of Truth\", \"trophyDetail\": \"You have uncovered the truth about Brad.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/35a662f0-6455-4911-a5e0-e6f86a2c225f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 5, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"To Live or Die in Los Santos\", \"trophyDetail\": \"Completed the final mission.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/c76535a6-a757-43f1-900d-5caac79eea8f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 6, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Diamond Hard\", \"trophyDetail\": \"You cleaned out Vangelico to pay back Martin Madrazo.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/63497dad-fb86-4a40-bdb9-86f7db09124b.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 7, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Subversive\", \"trophyDetail\": \"You stole an experimental super weapon from Merryweather... and gave it back.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/dae889f3-2b0b-4ac6-afaf-c9e41c7f7bfd.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 8, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Blitzed\", \"trophyDetail\": \"You performed a classic blitz play.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d313c61c-ddc6-4c76-b51e-8c5fbdb2fbce.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 9, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Small Town, Big Job\", \"trophyDetail\": \"You made a big impression at the Paleto Bay Chicken Festival.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/b3d4eac7-fe14-4ac9-bbb5-646418d7abe7.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 10, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Government Gimps\", \"trophyDetail\": \"You recovered sensitive information from a highly defended federal building.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/af0ef1d1-728d-4dd2-97b8-a76508055574.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 11, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Big One!\", \"trophyDetail\": \"This ain't no dream no more.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d44686dd-d943-45f3-93ec-efc96b161600.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 12, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Solid Gold, Baby!\", \"trophyDetail\": \"Earn any 70 Gold Medals on Missions, Strangers and Freaks.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d9df8fb4-56dd-4a69-996a-2919eb340f81.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 13, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Career Criminal\", \"trophyDetail\": \"Attain 100% Game Completion.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/ffe6219d-a628-4979-a564-3c4bcbaa1c0a.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 14, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"San Andreas Sightseer\", \"trophyDetail\": \"Explore all of Los Santos and Blaine County\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/f46e02fa-baa3-4bdc-8171-9d9b5d9019c1.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 15, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"All's Fare in Love and War\", \"trophyDetail\": \"Purchase Downtown Cab Co. and complete a private fare.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/407f8f2f-7573-4d3a-b2ed-70c60505eb09.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 16, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"TP Industries Arms Race\", \"trophyDetail\": \"Purchase McKenzie Field Hangar and win the arms race.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/b7fa74bb-ff56-40ba-b431-5a35180a7009.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 17, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Multi-Disciplined\", \"trophyDetail\": \"Attain a gold medal in all applicable hobbies and pastimes.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/21ee5d53-e1a6-4fde-9dfa-8e75a11fb4ab.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 18, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"From Beyond the Stars\", \"trophyDetail\": \"Collect and return all spaceship parts.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/1dd4b0c9-91b8-4927-9804-f5fa2ce17721.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 19, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"A Mystery, Solved\", \"trophyDetail\": \"Solve the mystery of Leonora Johnson.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/47b1c89b-ed56-4de0-b4ee-5a60615d37d5.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 20, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Waste Management\", \"trophyDetail\": \"Purchase the old dock and collect all nuclear waste.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/330c6215-17fc-4c2e-9104-5cad5116a234.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 21, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Red Mist\", \"trophyDetail\": \"Complete all Rampages.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/02a1fa47-eef1-4f49-8153-c58eadf35ca7.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 22, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Show Off\", \"trophyDetail\": \"Complete all Stunt Jumps.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3b02e2f9-31bc-49c5-a9c4-4446efc49e5b.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 23, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Kifflom!\", \"trophyDetail\": \"Complete your path to enlightenment... or not.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/4a1fe249-6049-4a09-a129-ddfb7893294c.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 24, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Three Man Army\", \"trophyDetail\": \"Survive 3 minutes on at least a 3 star Wanted Level with all three characters together off mission.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/54c70347-4d07-40b5-9ce6-68b8455f3099.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 25, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Out of Your Depth\", \"trophyDetail\": \"You're gonna need a bigger boat...\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5a5b4506-e41f-42b1-8278-5707e7aa8e58.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 26, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Altruist Acolyte\", \"trophyDetail\": \"Deliver an unsuspecting victim to the Altruist Cult.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3980c235-c092-40d2-ada4-884153336720.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 27, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"A Lot of Cheddar\", \"trophyDetail\": \"Spend a total of $200 million across all three characters.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/0e658cb6-fda4-4a01-9a8b-5a5503e8919c.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 28, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Trading Pure Alpha\", \"trophyDetail\": \"Make a profit over your total investments in the stock market.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a9b7f362-7a6c-4ea1-a4d9-d93b19457b5c.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 29, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Pimp My Sidearm\", \"trophyDetail\": \"Fully mod a weapon.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/00ccca7f-19d2-4dd3-aff3-c06f7f391bca.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 30, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Wanted: Alive or Alive\", \"trophyDetail\": \"Deliver a bail bond target alive.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/e554e088-23ac-4e85-aed5-82d3262af11f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 31, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Los Santos Customs\", \"trophyDetail\": \"Fully mod a vehicle.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/ba518752-81f3-43e8-8dc1-28dc5eb8cc3e.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 32, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Close Shave\", \"trophyDetail\": \"Complete all Under the Bridge and Knife Flight challenges.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/9cab1938-414a-420c-9605-c9011510e514.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 33, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Off the Plane\", \"trophyDetail\": \"GTA Online: Complete the Introduction.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5db1c774-34af-44cb-a2b7-2ae55b781ec3.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 34, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Three-Bit Gangster\", \"trophyDetail\": \"GTA Online: Reach Rank 25.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/1185e5ad-7117-4d09-8371-30a7c8eda2e6.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 35, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Making Moves\", \"trophyDetail\": \"GTA Online: Reach Rank 50.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/bad0a512-df77-4f44-b41e-6c810db3c99a.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 36, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Above the Law\", \"trophyDetail\": \"GTA Online: Reach Rank 100.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/bcb13829-8341-47b6-9cf0-4de5a9a8da96.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 37, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Numero Uno\", \"trophyDetail\": \"GTA Online: Obtain first place in all competitive game types.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/af382248-6e89-4174-88c8-4d095753fc85.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 38, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"The Midnight Club\", \"trophyDetail\": \"GTA Online: Use custom vehicles to win 5 races.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/f6e54ad8-baaf-4700-99d2-2e1211d1b8a1.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 39, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Unnatural Selection\", \"trophyDetail\": \"GTA Online: Complete all 10 waves of a Survival.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3b8aa2c7-5942-4d38-ae24-b144a5c224b0.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 40, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Backseat Driver\", \"trophyDetail\": \"GTA Online: Direct a driver to 1st place as co-driver in Rally Mode.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/cb18180a-42f9-4409-8012-06db0f74adef.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 41, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Run Like The Wind\", \"trophyDetail\": \"GTA Online: Survive with a Bounty on your head.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/0842e88f-49e9-4d69-a5f8-0e512057aead.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 42, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Clean Sweep\", \"trophyDetail\": \"GTA Online: Finish a Gang Attack without dying and kill at least 10 enemies.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/9d4390c2-7688-44b8-aaa5-ff6fe1828a83.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 43, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Decorated\", \"trophyDetail\": \"GTA Online: Earn 30 Platinum Awards.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/36f36a57-e3e7-4c33-9914-b9e462aaa58e.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 44, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Stick Up Kid\", \"trophyDetail\": \"GTA Online: Hold up all 20 Stores.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/39749c5e-9981-4547-9166-ba143ce56974.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 45, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Enjoy Your Stay\", \"trophyDetail\": \"GTA Online: Participate in everything Los Santos has to offer.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3f11179e-721f-4b46-bab5-46ebec2ff694.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 46, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Crew Cut\", \"trophyDetail\": \"GTA Online: Complete a Job as a member of a Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/df83cb3e-9508-452d-9cf9-e12d049fa182.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 47, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Full Refund\", \"trophyDetail\": \"GTA Online: Kill the thief that mugged you.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/66d261cd-37f5-4201-b587-8ece8e044c2f.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 48, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Dialling Digits\", \"trophyDetail\": \"GTA Online: Call for a Backup Helicopter for the first time.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5101d345-6515-4b20-9eda-2195adbcddea.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 49, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"American Dream\", \"trophyDetail\": \"GTA Online: Own an Apartment, Garage and an Insured Vehicle\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/53dfd2f4-20b0-4474-8c11-be1cc87c3ec8.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 50, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A New Perspective\", \"trophyDetail\": \"You played GTA V in first person mode for 15 hours.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/22b4725a-fe3f-446a-b30b-221114625d86.png\", \"trophyGroupId\": \"default\"}, {\"trophyId\": 51, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Be Prepared\", \"trophyDetail\": \"GTA Online: You completed a Heist Setup mission.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/2c5f9523-c8a5-47f2-bb92-b905158f019f.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 52, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"In the Name of Science\", \"trophyDetail\": \"GTA Online: You completed The Humane Labs Raid and Series A Funding as Heist Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/56f35ca1-784e-4bc2-99e2-da7065538435.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 53, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Dead Presidents\", \"trophyDetail\": \"GTA Online: You completed The Fleeca Job and The Pacific Standard Job as Heist Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/089c98e8-f8ae-4014-8166-1201f7f2094f.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 54, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"Parole Day\", \"trophyDetail\": \"GTA Online: You completed The Prison Break as Heist Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/21bd824f-c7eb-408b-8ed6-7fc00ab9c371.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 55, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Shot Caller\", \"trophyDetail\": \"GTA Online: Invest your hard earned cash to set up a Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/5b55f68b-feaa-48e0-bae7-b1e40e460099.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 56, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Four Way\", \"trophyDetail\": \"GTA Online: As Heist Leader set the finale cut as 25% across all players.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a49d5abe-8e78-43aa-ad30-ac1e21c36733.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 57, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Live a Little\", \"trophyDetail\": \"GTA Online: Spend a total of $8,000,000 purchasing vehicles included as part of The Heists Update.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/2fd2bf5d-dac3-48b8-8117-93f9c3b02e15.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 58, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Can't Touch This\", \"trophyDetail\": \"GTA Online: Complete a Heist finale without taking any damage.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/2626a548-4fc2-46a7-96be-73b2ceb0d068.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 59, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Mastermind\", \"trophyDetail\": \"GTA Online: Earn 25 platinum medals across Heist Setups and Finales.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a4de49db-bdb6-4bd1-93b4-623c64c856f2.png\", \"trophyGroupId\": \"001\"}, {\"trophyId\": 60, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Vinewood Visionary\", \"trophyDetail\": \"Create and export a video using the Rockstar Editor or enter Director Mode 5 times.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/a9e1a4dc-0eeb-4fa2-9ff3-5a9f60fda39c.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 61, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Majestic\", \"trophyDetail\": \"Create and export 10 videos using the Rockstar Editor or enter Director Mode 10 times.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/f562afb6-2620-4d3c-be6b-d4172c3d6eb6.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 62, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Humans of Los Santos\", \"trophyDetail\": \"Unlock all Special Characters and enter Director Mode as an actor from this category.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/d8a79b66-810b-468f-9d5f-19b396db9f6a.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 63, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"First Time Director\", \"trophyDetail\": \"Enter Director Mode for the first time as an unlocked actor.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/b1a55eac-82b9-45c8-aaf3-e1646654f340.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 64, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Animal Lover\", \"trophyDetail\": \"Enter Director Mode as an unlocked animal actor for the first time.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3399b70a-85c6-44bf-be5f-c699378a5d8c.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 65, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Ensemble Piece\", \"trophyDetail\": \"Unlock all Story Characters and enter Director Mode as an actor from this category.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/878d3a77-39ba-4ff1-9c7b-8efeaddecbde.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 66, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Cult Movie\", \"trophyDetail\": \"Enter Director Mode as Cris Formage.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3a7c420c-5a8e-477b-b082-2af8620215a1.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 67, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Location Scout\", \"trophyDetail\": \"Visit all Locations in Director Mode.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/510a70e0-01a5-407c-920f-974ddf1bc5c9.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 68, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Method Actor\", \"trophyDetail\": \"Enter Director Mode using any of your own GTA Online characters.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/e0acccdc-a817-4d14-9106-0adf8acd47e7.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 69, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"Cryptozoologist\", \"trophyDetail\": \"You unlocked all animals for use in Director Mode... or did you?\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/9ffba69b-d45a-4ea7-93aa-61853af8a331.png\", \"trophyGroupId\": \"002\"}, {\"trophyId\": 70, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Getting Started\", \"trophyDetail\": \"GTA Online: Set up The Doomsday Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/42e7e485-c547-4f9d-878d-f6b2253960d4.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 71, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"The Data Breaches\", \"trophyDetail\": \"GTA Online: You completed Act I of The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/97d86b5c-b1f4-4c84-91cb-30bd7ddb6dc5.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 72, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"The Bogdan Problem\", \"trophyDetail\": \"GTA Online: You completed Act II of The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/7f483395-beb7-4fd5-9c65-735b9b4d6e16.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 73, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"The Doomsday Scenario\", \"trophyDetail\": \"GTA Online: You completed Act III of The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/bc84cae6-bbb9-4a28-9cb3-95f135dbf72a.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 74, \"trophyHidden\": true, \"trophyType\": \"silver\", \"trophyName\": \"A World Worth Saving\", \"trophyDetail\": \"GTA Online: You completed The Doomsday Heist as Leader or Crew.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/79baf833-7a10-4cc7-9971-2ef77319c122.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 75, \"trophyHidden\": false, \"trophyType\": \"bronze\", \"trophyName\": \"Orbital Obliteration\", \"trophyDetail\": \"GTA Online: Kill another player with the Orbital Cannon.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/974b2ee7-668e-4502-89de-fadc6c433ce8.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 76, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Elitist\", \"trophyDetail\": \"GTA Online: Complete all 3 Elite Challenges in The Doomsday Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/1fbc03fe-32c2-4571-bc29-24e42d35e0ab.png\", \"trophyGroupId\": \"003\"}, {\"trophyId\": 77, \"trophyHidden\": false, \"trophyType\": \"silver\", \"trophyName\": \"Masterminds\", \"trophyDetail\": \"GTA Online: Complete all 3 Criminal Mastermind challenges in The Doomsday Heist.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21647_00/3b3bb9df-8f39-4d2b-9058-30163a80861c.png\", \"trophyGroupId\": \"003\"}], \"totalItemCount\": 78}" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json index 4c9e3d8..356ff6b 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_game_not_owned_by_user.json @@ -33,31 +33,31 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "59" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:18 GMT" - ] + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"titles\": [{\"npTitleId\": \"PPSA03420_00\", \"trophyTitles\": []}]}" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json index 90b714a..64d916b 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophies_invalid_np_communication_id.json @@ -33,6 +33,9 @@ "message": "Not Found" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], @@ -42,22 +45,19 @@ "Content-Length": [ "110" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:19 GMT" - ] + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"error\": {\"referenceId\": \"10175255-2c34-11ef-b7a9-738751f20872\", \"code\": 2240525, \"message\": \"Resource not found\"}}" + "string": "{\"error\": {\"referenceId\": \"647ebece-d07a-11ef-bcc8-195e5d2c6e18\", \"code\": 2240525, \"message\": \"Resource not found\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json index ff09393..c8375ac 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary.json @@ -33,34 +33,34 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ - "880" + "901" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:54 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:18 GMT" - ] + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"npTitleId\": \"PPSA01325_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 44, \"trophyHidden\": true, \"trophyType\": \"gold\", \"trophyName\": \"Run Astro Run!\", \"trophyDetail\": \"Got a total Speed Run time of 7 minutes or under.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/77cba17d-c338-41c6-a3e5-4a6687d8730d.png\", \"trophyRare\": 0, \"trophyEarnedRate\": \"3.7\", \"earned\": true, \"earnedDateTime\": \"2020-12-20T08:06:44Z\"}], \"progress\": 93, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-12-20T08:06:45Z\"}]}]}" + "string": "{\"titles\": [{\"npTitleId\": \"PPSA01325_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"rarestTrophies\": [{\"trophyId\": 44, \"trophyHidden\": true, \"trophyType\": \"gold\", \"trophyName\": \"Run Astro Run!\", \"trophyDetail\": \"Got a total Speed Run time of 7 minutes or under.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/77cba17d-c338-41c6-a3e5-4a6687d8730d.png\", \"trophyRare\": 0, \"trophyEarnedRate\": \"3.7\", \"earned\": true, \"earnedDateTime\": \"2020-12-20T08:06:44Z\"}], \"progress\": 93, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-12-20T08:06:45Z\"}]}]}" } } }, @@ -96,34 +96,34 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" - ], "Content-Length": [ "1137" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:55 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Cache-Control": [ + "max-age=300" ], - "Set-Cookie": "REDACTED", "Vary": [ "Accept-Language" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:18 GMT" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophySetVersion\": \"01.40\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"trophyTitlePlatform\": \"PS5\", \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"trophyGroups\": [{\"trophyGroupId\": \"default\", \"trophyGroupName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyGroupIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}}, {\"trophyGroupId\": \"001\", \"trophyGroupName\": \"ASTRO\\u2019s PLAYROOM [ADD-ON]\", \"trophyGroupIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/07628edd-c7e7-4762-9409-edcece03a12d.png\", \"definedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 2, \"platinum\": 0}}, {\"trophyGroupId\": \"002\", \"trophyGroupName\": \"ASTRO\\u2019s PLAYROOM [ADD-ON] \", \"trophyGroupIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/1c8dc8da-12c2-4a5a-a6f0-d89f2fd9c6c1.png\", \"definedTrophies\": {\"bronze\": 4, \"silver\": 1, \"gold\": 0, \"platinum\": 0}}]}" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json index da35cfe..172d385 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_game_not_owned_by_user.json @@ -33,31 +33,31 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" - ], "Content-Length": [ "59" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:18 GMT" - ] + "Cache-Control": [ + "private" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"titles\": [{\"npTitleId\": \"PPSA01325_00\", \"trophyTitles\": []}]}" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json index 81a85ed..ad914da 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__trophy_groups_summary_invalid_np_communication_id.json @@ -33,6 +33,9 @@ "message": "Not Found" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], @@ -42,22 +45,19 @@ "Content-Length": [ "110" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:56 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:19 GMT" - ] + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"error\": {\"referenceId\": \"1039a7b1-2c34-11ef-ba39-bd72c10ade5e\", \"code\": 2240525, \"message\": \"Resource not found\"}}" + "string": "{\"error\": {\"referenceId\": \"64beadf0-d07a-11ef-a509-7509b9324c80\", \"code\": 2240525, \"message\": \"Resource not found\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json index df5fdd8..1637e24 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_game_title__wrong_title_id.json @@ -33,6 +33,9 @@ "message": "Not Found" }, "headers": { + "Content-Type": [ + "application/json" + ], "Connection": [ "keep-alive" ], @@ -42,22 +45,19 @@ "Content-Length": [ "137" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Date": [ + "Sun, 12 Jan 2025 00:15:52 GMT" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Type": [ - "application/json" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:16 GMT" - ] + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"error\": {\"referenceId\": \"0ea3ec89-2c34-11ef-8e49-b38c344b0b00\", \"code\": 2240525, \"message\": \"Resource not found (npTitleId='SSSA01325_00')\"}}" + "string": "{\"error\": {\"referenceId\": \"62295c84-d07a-11ef-b247-37ac2715e446\", \"code\": 2240525, \"message\": \"Resource not found (npTitleId='SSSA01325_00')\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json index 72a9f3b..8a6049c 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name.json @@ -39,50 +39,50 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:27 GMT" ], - "Content-Length": [ - "159" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:18 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "159" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"mainThread\": {\"threadId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\"}, \"hasAllAccountInvited\": true}" + "string": "{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"mainThread\": {\"threadId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\"}, \"hasAllAccountInvited\": true}" } } }, { "request": { "method": "PATCH", - "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961", + "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372", "body": "{\"groupName\": {\"value\": \"Testing API\"}}", "headers": { "User-Agent": [ @@ -117,11 +117,23 @@ "message": "No Content" }, "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:28 GMT" + ], "Cache-Control": [ "private" ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" + "Connection": [ + "keep-alive" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH, OPTIONS" @@ -129,22 +141,10 @@ "Server": [ "Apache" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:18 GMT" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Set-Cookie": "REDACTED", - "Connection": [ - "keep-alive" - ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ], - "X-Content-Type-Options": [ - "nosniff" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json index 4a6eb8c..cb8cf78 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__change_name_dm.json @@ -33,39 +33,39 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:26 GMT" ], - "Content-Length": [ - "245" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:16 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "245" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { @@ -111,40 +111,40 @@ "message": "Bad Request" }, "headers": { - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" - ], - "Server": [ - "Apache" - ], - "Content-Length": [ - "103" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Sun, 14 Jul 2024 02:19:16 GMT" + "Sun, 12 Jan 2025 03:23:26 GMT" + ], + "Connection": [ + "close" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "close" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "103" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"78737ee9-4187-11ef-9d3b-ab129bf6db4c\", \"code\": 2285696, \"message\": \"Bad Request\"}}" + "string": "{\"error\": {\"referenceId\": \"963ad5ef-d094-11ef-a38e-6b1b14c80376\", \"code\": 2285696, \"message\": \"Bad Request\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json index eede6d1..2e006b5 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__dming_blocked_user.json @@ -39,40 +39,40 @@ "message": "Forbidden" }, "headers": { - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" - ], - "Server": [ - "Apache" - ], - "Content-Length": [ - "140" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Sun, 14 Jul 2024 02:19:17 GMT" + "Sun, 12 Jan 2025 03:23:27 GMT" + ], + "Connection": [ + "close" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "close" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "140" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"79081d25-4187-11ef-9e5f-2db2ca44f497\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}" + "string": "{\"error\": {\"referenceId\": \"96be8491-d094-11ef-bc3b-bd42a98b615d\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json index d4e58d6..2791a8d 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__get_group_information.json @@ -4,7 +4,7 @@ { "request": { "method": "GET", - "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", + "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/members/me/groups?includeFields=members&limit=1&offset=0", "body": null, "headers": { "User-Agent": [ @@ -24,231 +24,48 @@ ], "Country": [ "US" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "X-Requested-With": [ - "com.scee.psxandroid" - ], - "Sec-Fetch-Dest": [ - "document" - ], - "Sec-Fetch-Mode": [ - "navigate" - ], - "Sec-Fetch-Site": [ - "same-site" - ], - "Sec-Fetch-User": [ - "?1" ] } }, "response": { "status": { - "code": 302, - "message": "Moved Temporarily" + "code": 200, + "message": "OK" }, "headers": { - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.3y77vQ&cid=00000000-0000-0000-0000-b025aa3b2674" - ], - "X-Frame-Options": [ - "DENY" - ], - "Connection": [ - "keep-alive" - ], - "Set-Cookie": "REDACTED", - "X-XSS-Protection": [ - "1; mode=block" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Psn-Request-Id": [ - "e5535c2500e6a409f1b60a0c8b3ec01a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000 ; includeSubDomains" - ], - "Server": [ - "nginx" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Sun, 14 Jul 2024 03:02:15 GMT" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Expires": [ - "0" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "X-RequestId": [ - "e5535c2500e6a409f1b60a0c8b3ec01a" - ], - "Content-Length": [ - "0" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", - "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", - "headers": { - "User-Agent": [ - "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" - ], - "Accept-Encoding": [ - "gzip, deflate" + "Sun, 12 Jan 2025 03:23:25 GMT" ], - "Accept": [ - "*/*" + "Cache-Control": [ + "private" ], - "Connection": [ - "keep-alive" - ], - "Accept-Language": [ - "en-US,en;q=0.9" - ], - "Country": [ - "US" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Content-Length": [ - "207" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { "Connection": [ "keep-alive" ], "Set-Cookie": "REDACTED", - "Cache-Control": [ - "no-store" - ], - "X-Psn-Request-Id": [ - "f4cedebaac240905f3bfa8544032a616" + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Sun, 14 Jul 2024 03:02:15 GMT" - ], - "Server": [ - "nginx" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Content-Type": [ - "application/json;charset=UTF-8" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "X-RequestId": [ - "f4cedebaac240905f3bfa8544032a616" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], "Content-Length": [ - "3998" - ] - }, - "body": { - "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/members/me/groups?includeFields=members&limit=1&offset=0", - "body": null, - "headers": { - "User-Agent": [ - "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "Accept-Language": [ - "en-US,en;q=0.9" - ], - "Country": [ - "US" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Connection": [ - "keep-alive" - ], - "Set-Cookie": "REDACTED", - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" + "245" ], - "Date": [ - "Sun, 14 Jul 2024 03:02:15 GMT" + "Content-Type": [ + "application/json" ], "Server": [ "Apache" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "Access-Control-Allow-Headers": [ "Authorization, Content-Type" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Content-Type": [ - "application/json" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" - ], - "Content-Length": [ - "245" ] }, "body": { @@ -288,43 +105,43 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:25 GMT" ], - "Set-Cookie": "REDACTED", "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sun, 14 Jul 2024 03:02:15 GMT" - ], - "Server": [ - "Apache" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" + "X-Content-Type-Options": [ + "nosniff" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" + ], + "Content-Length": [ + "769" ], "Content-Type": [ "application/json" ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Server": [ + "Apache" ], - "Content-Length": [ - "764" + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groupId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"groupType\": 0, \"modifiedTimestamp\": \"1720923646497\", \"groupName\": {\"value\": \"\", \"status\": 0}, \"groupIcon\": {\"status\": 0}, \"joinedTimestamp\": \"1717991006000\", \"isFavorite\": false, \"existsNewArrival\": false, \"mainThread\": {\"threadId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"modifiedTimestamp\": \"1720923646497\", \"latestMessage\": {\"messageUid\": \"1#440556453503362\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello\", \"createdTimestamp\": \"1720923646497\", \"sender\": {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}}, \"readMessageUid\": \"1#440556453503362\"}, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}], \"notificationSetting\": {\"isMute\": false}}" + "string": "{\"groupId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"groupType\": 0, \"modifiedTimestamp\": \"1736652205473\", \"groupName\": {\"value\": \"\", \"status\": 0}, \"groupIcon\": {\"status\": 0}, \"joinedTimestamp\": \"1717991006000\", \"isFavorite\": false, \"existsNewArrival\": false, \"mainThread\": {\"threadId\": \"~1CACE0CDC2C96B5B.25C4C5406FD6D50E\", \"modifiedTimestamp\": \"1736652205473\", \"latestMessage\": {\"messageUid\": \"1#444582964601306\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello World!\", \"createdTimestamp\": \"1736652205473\", \"sender\": {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}}, \"readMessageUid\": \"1#444582964601306\"}, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}], \"notificationSetting\": {\"isMute\": false}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json index a4b752c..95e3fdb 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_id.json @@ -33,39 +33,39 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:25 GMT" ], - "Content-Length": [ - "245" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:15 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "245" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { @@ -111,43 +111,43 @@ "message": "Created" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:25 GMT" ], - "Content-Length": [ - "69" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:16 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "69" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"messageUid\": \"1#440556430326987\", \"createdTimestamp\": \"1720923555964\"}" + "string": "{\"messageUid\": \"1#444582964601306\", \"createdTimestamp\": \"1736652205473\"}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json index b48bcc3..714e419 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_users.json @@ -39,39 +39,39 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:24 GMT" ], - "Content-Length": [ - "139" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:14 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "139" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { @@ -117,43 +117,43 @@ "message": "Created" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:24 GMT" ], - "Content-Length": [ - "69" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:15 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "69" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"messageUid\": \"1#440556430130324\", \"createdTimestamp\": \"1720923555196\"}" + "string": "{\"messageUid\": \"1#444582964418900\", \"createdTimestamp\": \"1736652204761\"}" } } }, @@ -189,43 +189,43 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:25 GMT" ], - "Content-Length": [ - "318" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:15 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "318" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"messages\": [{\"messageUid\": \"1#440556430130324\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello World\", \"createdTimestamp\": \"1720923555196\", \"sender\": {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}}], \"previous\": \"1#440556430130324\", \"next\": \"1#440556430130324\", \"reachedEndOfPage\": false, \"messageCount\": 1}" + "string": "{\"messages\": [{\"messageUid\": \"1#444582964418900\", \"messageType\": 1, \"alternativeMessageType\": 1, \"body\": \"Hello World\", \"createdTimestamp\": \"1736652204761\", \"sender\": {\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}}], \"previous\": \"1#444582964418900\", \"next\": \"1#444582964418900\", \"reachedEndOfPage\": false, \"messageCount\": 1}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json index dde484d..c8e64b3 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__group_with_wrong_id.json @@ -51,51 +51,51 @@ "message": "Moved Temporarily" }, "headers": { + "Expires": [ + "0" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.KEWAVS&cid=00000000-0000-0000-0000-b025aa3b2674" - ], "X-XSS-Protection": [ "1; mode=block" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Psn-Request-Id": [ + "75261df7cd377ec95b6b116893ede366" ], - "X-RequestId": [ - "4c159ba156569af5cdfbaebf21ba55d2" + "Connection": [ + "keep-alive" ], - "X-Psn-Request-Id": [ - "4c159ba156569af5cdfbaebf21ba55d2" + "X-Frame-Options": [ + "DENY" ], - "Date": [ - "Sun, 14 Jul 2024 02:58:55 GMT" + "Set-Cookie": "REDACTED", + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.ppiSLB&cid=00000000-0000-0000-0000-b025aa3b2674" ], "Strict-Transport-Security": [ "max-age=31536000 ; includeSubDomains" ], - "Expires": [ - "0" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "X-Frame-Options": [ - "DENY" + "X-Content-Type-Options": [ + "nosniff" ], - "Connection": [ - "keep-alive" + "X-RequestId": [ + "75261df7cd377ec95b6b116893ede366" ], "Content-Length": [ "0" ], - "Set-Cookie": "REDACTED", "X-Psn-Correlation-Id": [ "00000000-0000-0000-0000-b025aa3b2674" ], "Server": [ "nginx" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:23 GMT" ] }, "body": { @@ -147,37 +147,37 @@ "Cache-Control": [ "no-store" ], - "Content-Type": [ - "application/json;charset=UTF-8" + "X-Psn-Request-Id": [ + "81100f8e99ae2cb17af200c2938f1bb8" + ], + "Connection": [ + "keep-alive" ], "X-Content-Type-Options": [ "nosniff" ], "X-RequestId": [ - "91b5d3128a623976b654a25e4e521e79" + "81100f8e99ae2cb17af200c2938f1bb8" ], - "X-Psn-Request-Id": [ - "91b5d3128a623976b654a25e4e521e79" + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" ], - "Date": [ - "Sun, 14 Jul 2024 02:58:55 GMT" + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "Server": [ + "nginx" ], "X-CorrelationId": [ "00000000-0000-0000-0000-b025aa3b2674" ], - "Connection": [ - "keep-alive" - ], "Content-Length": [ - "3998" + "4010" ], - "Set-Cookie": "REDACTED", - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" + "Date": [ + "Sun, 12 Jan 2025 03:23:23 GMT" ], - "Server": [ - "nginx" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" @@ -216,40 +216,40 @@ "message": "Not Found" }, "headers": { - "Content-Type": [ - "application/json" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Apache" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Sun, 14 Jul 2024 02:58:55 GMT" + "Sun, 12 Jan 2025 03:23:23 GMT" ], - "Set-Cookie": "REDACTED", - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], - "Connection": [ - "keep-alive" + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], "Content-Length": [ "157" ], + "Content-Type": [ + "application/json" + ], + "Server": [ + "Apache" + ], "Access-Control-Allow-Headers": [ "Authorization, Content-Type" - ], - "Access-Control-Allow-Origin": [ - "*" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"02623784-418d-11ef-b1db-99d59f5115e6\", \"code\": 2285581, \"message\": \"Resource not found (groupId='~25C4C5406FD6D50E.763F9A1EB6AB5791')\"}}" + "string": "{\"error\": {\"referenceId\": \"947f437d-d094-11ef-96d1-0556d7703a14\", \"code\": 2285581, \"message\": \"Resource not found (groupId='~25C4C5406FD6D50E.763F9A1EB6AB5791')\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json index 3d3c035..83de942 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members.json @@ -33,43 +33,43 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:29 GMT" ], - "Content-Length": [ - "192" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:19 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "192" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" + "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" } } }, @@ -111,39 +111,39 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:29 GMT" ], - "Content-Length": [ - "139" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:20 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "139" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json index 0018dd6..52f6da5 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__invite_members_blocked.json @@ -33,43 +33,43 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:29 GMT" ], - "Content-Length": [ - "192" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:20 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "192" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" + "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" } } }, @@ -111,40 +111,40 @@ "message": "Forbidden" }, "headers": { - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" - ], - "Server": [ - "Apache" - ], - "Content-Length": [ - "140" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Sun, 14 Jul 2024 02:19:20 GMT" + "Sun, 12 Jan 2025 03:23:29 GMT" + ], + "Connection": [ + "close" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "close" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "140" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"7ad5d8d4-4187-11ef-8d49-c56d5feb84ef\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}" + "string": "{\"error\": {\"referenceId\": \"982b5b55-d094-11ef-af95-b73221aa4650\", \"code\": 2286592, \"message\": \"Request is rejected due to all targets' settings\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json index b09853a..74aa33e 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member.json @@ -33,50 +33,50 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:28 GMT" ], - "Content-Length": [ - "255" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:18 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "255" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" + "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}, {\"accountId\": \"2066273503397112667\", \"onlineId\": \"isFakeAccount\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" } } }, { "request": { "method": "DELETE", - "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961/members/2066273503397112667", + "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372/members/2066273503397112667", "body": null, "headers": { "User-Agent": [ @@ -108,11 +108,23 @@ "message": "No Content" }, "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:28 GMT" + ], "Cache-Control": [ "private" ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" + "Connection": [ + "keep-alive" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH, OPTIONS" @@ -120,22 +132,10 @@ "Server": [ "Apache" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:19 GMT" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Set-Cookie": "REDACTED", - "Connection": [ - "keep-alive" - ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ], - "X-Content-Type-Options": [ - "nosniff" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json index ca46a28..d3e8dc1 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__kick_member_not_found.json @@ -33,50 +33,50 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:28 GMT" ], - "Content-Length": [ - "192" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:19 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "192" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" + "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" } } }, { "request": { "method": "DELETE", - "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961/members/5007681186655854753", + "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372/members/5007681186655854753", "body": null, "headers": { "User-Agent": [ @@ -108,40 +108,40 @@ "message": "Not Found" }, "headers": { - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" - ], - "Server": [ - "Apache" - ], - "Content-Length": [ - "167" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Sun, 14 Jul 2024 02:19:19 GMT" + "Sun, 12 Jan 2025 03:23:28 GMT" + ], + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "167" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"7a121352-4187-11ef-b1ec-2fd7ea9f3f12\", \"code\": 2285581, \"message\": \"Resource not found (groupId='dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961')\"}}" + "string": "{\"error\": {\"referenceId\": \"979b01ab-d094-11ef-9efd-55b737e0d372\", \"code\": 2285581, \"message\": \"Resource not found (groupId='34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372')\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json index 62b0336..15f7033 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__leave_group.json @@ -33,50 +33,50 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:30 GMT" ], - "Content-Length": [ - "192" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:21 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "192" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { - "string": "{\"groups\": [{\"groupId\": \"dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" + "string": "{\"groups\": [{\"groupId\": \"34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372\", \"groupType\": 1, \"members\": [{\"accountId\": \"2721516955383551246\", \"onlineId\": \"VaultTec-Co\"}]}], \"previousOffset\": 0, \"nextOffset\": 1}" } } }, { "request": { "method": "DELETE", - "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/dc6266af0b99f2f7e0a24441e4ee9058c0034b87-961/members/me", + "uri": "https://m.np.playstation.com/api/gamingLoungeGroups/v1/groups/34e99b8734b0283a0f7e3a291d5d84f35e1bb522-372/members/me", "body": null, "headers": { "User-Agent": [ @@ -108,11 +108,23 @@ "message": "No Content" }, "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:30 GMT" + ], "Cache-Control": [ "private" ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" + "Connection": [ + "keep-alive" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH, OPTIONS" @@ -120,22 +132,10 @@ "Server": [ "Apache" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:21 GMT" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Set-Cookie": "REDACTED", - "Connection": [ - "keep-alive" - ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ], - "X-Content-Type-Options": [ - "nosniff" - ] + "Set-Cookie": "REDACTED" }, "body": { "string": "" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json index 404682c..f2da808 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_group__repr_and_str.json @@ -33,39 +33,39 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Content-Type" - ], - "Access-Control-Allow-Methods": [ - "GET, PUT, POST, DELETE, PATCH, OPTIONS" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:23:26 GMT" ], - "Content-Length": [ - "245" + "Cache-Control": [ + "private" ], - "Date": [ - "Sun, 14 Jul 2024 02:19:16 GMT" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Connection": [ - "keep-alive" + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, PATCH, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" + "Content-Length": [ + "245" ], - "Set-Cookie": "REDACTED", "Content-Type": [ "application/json" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Content-Type" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json index 6415443..7df9bde 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_addon_content_id.json @@ -1,189 +1,6 @@ { "version": 1, "interactions": [ - { - "request": { - "method": "GET", - "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", - "body": null, - "headers": { - "User-Agent": [ - "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "Accept-Language": [ - "en-US,en;q=0.9" - ], - "Country": [ - "US" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "X-Requested-With": [ - "com.scee.psxandroid" - ], - "Sec-Fetch-Dest": [ - "document" - ], - "Sec-Fetch-Mode": [ - "navigate" - ], - "Sec-Fetch-Site": [ - "same-site" - ], - "Sec-Fetch-User": [ - "?1" - ] - } - }, - "response": { - "status": { - "code": 302, - "message": "Moved Temporarily" - }, - "headers": { - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Date": [ - "Sun, 14 Jul 2024 03:10:32 GMT" - ], - "X-RequestId": [ - "69f7728fc745138bdddc0c00cc717da2" - ], - "Server": [ - "nginx" - ], - "Set-Cookie": "REDACTED", - "Location": [ - "com.scee.psxandroid.scecompcall://redirect/?code=v3.z3wDXp&cid=00000000-0000-0000-0000-b025aa3b2674" - ], - "Expires": [ - "0" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "X-Psn-Request-Id": [ - "69f7728fc745138bdddc0c00cc717da2" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "Strict-Transport-Security": [ - "max-age=31536000 ; includeSubDomains" - ], - "X-XSS-Protection": [ - "1; mode=block" - ], - "X-Frame-Options": [ - "DENY" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Connection": [ - "keep-alive" - ] - }, - "body": { - "string": "" - } - } - }, - { - "request": { - "method": "POST", - "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", - "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", - "headers": { - "User-Agent": [ - "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ], - "Accept-Language": [ - "en-US,en;q=0.9" - ], - "Country": [ - "US" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Content-Length": [ - "207" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "3998" - ], - "X-RequestId": [ - "664863c168ca011b889a2d3aaa2f834c" - ], - "Server": [ - "nginx" - ], - "Set-Cookie": "REDACTED", - "Content-Type": [ - "application/json;charset=UTF-8" - ], - "X-Psn-Request-Id": [ - "664863c168ca011b889a2d3aaa2f834c" - ], - "X-CorrelationId": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Cache-Control": [ - "no-store" - ], - "Date": [ - "Sun, 14 Jul 2024 03:10:32 GMT" - ], - "X-Psn-Correlation-Id": [ - "00000000-0000-0000-0000-b025aa3b2674" - ], - "Connection": [ - "keep-alive" - ] - }, - "body": { - "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" - } - } - }, { "request": { "method": "GET", @@ -225,25 +42,23 @@ "message": "OK" }, "headers": { - "Vary": [ - "Origin", - "Accept-Encoding" + "Access-Control-Allow-Credentials": [ + "true" ], - "strict-transport-security": [ - "max-age=15552000; includeSubDomains" + "x-frame-options": [ + "SAMEORIGIN" ], - "content-length": [ - "81973" + "x-xss-protection": [ + "1; mode=block" ], "Pragma": [ "no-cache" ], - "x-xss-protection": [ - "1; mode=block" + "Connection": [ + "keep-alive" ], - "Set-Cookie": "REDACTED", - "x-dns-prefetch-control": [ - "off" + "Content-Type": [ + "application/json" ], "x-content-type-options": [ "nosniff" @@ -251,33 +66,35 @@ "x-download-options": [ "noopen" ], - "Expires": [ - "Sun, 14 Jul 2024 03:10:33 GMT" + "ETag": [ + "W/\"13d9f-3AB1PXvOF0ZjF6as6AalLXyjTN8\"" ], - "Content-Type": [ - "application/json" + "strict-transport-security": [ + "max-age=15552000; includeSubDomains" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "Vary": [ + "Origin", + "Accept-Encoding" ], - "ETag": [ - "W/\"14036-Zqdp9UOFGCZiqAWlZGNk/1hFFSY\"" + "Expires": [ + "Sun, 12 Jan 2025 00:16:06 GMT" ], "Date": [ - "Sun, 14 Jul 2024 03:10:33 GMT" + "Sun, 12 Jan 2025 00:16:06 GMT" ], - "Access-Control-Allow-Credentials": [ - "true" + "Set-Cookie": "REDACTED", + "Cache-Control": [ + "max-age=0, no-cache, no-store" ], - "x-frame-options": [ - "SAMEORIGIN" + "x-dns-prefetch-control": [ + "off" ], - "Connection": [ - "keep-alive" + "content-length": [ + "81310" ] }, "body": { - "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8abQo6NmMyYmY4NmQtYzM4Yy00YTU0LTg4ZWYtMTMxZWU3ZTgxYzhjLXNZNVI3anlYLTItMTcyMDkxNTIwMBIvc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtYmxhY2tleWUiHnNlYXJjaC5ub19leHBlcmltZW50Lm5vbi4wLm5vbioCMzk\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202406/2810/03660f882c549e181182b0a0a7d9021f99ee2fd54171ef71.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": San Andreas \\u2013 The Definitive Edition\"]}, \"id\": \"10003552\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03524_00-GTASANANDREAS001\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10003552\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2914/BukTyjMYxWu94IqaaXVzDlBo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10011043\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UB0851-CUSA48913_00-0554901393633968\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/a1681968cadfe5a28eb88b0d840c89790ee586a5829200a9.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10011043\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/ad640fb609a6d0f538bf8490ee8c9e6a2c64fa560d6a7f86.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/2576162c8d6ebf13b6b6ed2afe056dc27076415ccb797a40.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202007/2122/Oq6TdUsqiafeOYueO8gvhvx5.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/qJkuelKsYZ6dVRdnInF3kqDJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/1708/u54yeWPGwLAzT75sfQnzt0ue.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 40, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokNjk3NTY0ZGJhODkxNGE5OWFmZWM4YjRkNzc5ODkyYmUtNDU1Ei5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0zMDc\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 16, \"zeroState\": false}]}}}" + "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8acQo6YmQzYjNhYTItOWQyOS00ZmM5LWE0YzgtZDE5YmY4ZDI5MTY1LWdGWTJ2TnNnLTItMTczNjYxODQwMBIzc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtY29uZG9yLWJhc2ljIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzk5NQ\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"200477\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03507_00-SLUS212690000001\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0802/ec072c1cd3b72838476a53056a923771bc16d08c43d68d3c.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"200477\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew Motorfest Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/fc97eda24f337d017e98e28b632d94959cfad7de1a8ca8d9.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a0add90003186e98961d2d63e9e17d32063ecb39d692d9f4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/726056484ccbc699c3b143a85841d79a9eb844137c36c5b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a4c27a1ff10c6c071d660d212f3ccd623d3f386e939027a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5f386e88aa32b0cf60750e839b4671c76df9e1126544d679.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5fb8cf06e2f894195efe2ab7d8cbdb13b8129eeae1c2a653.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/353832b119e92b04e81dbebc1ceaffd1c110bdd03fd31d03.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/6ec491c9a5f5ad35d3f83ca1cbca7d931e68c2a6547f8185.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/d03c851c3d57bc483a7c591d0b46f28e00ae6d3268f4db3a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/33a3b5540683ae445f0efe9c25df8d0a4f1c062ac50401a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/c09010eb84af0a9c532fbb791641189d98b32555c46ee5eb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/aff7ae0da202d816a5761fd4ce865085320052f46223c770.png\"}], \"name\": \"The Crew Motorfest Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2107/9f044e6d328e539f5ca10c4e5a42cd3d1a74452474dec5cc.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/4afa4359de58e6c1fe2509b0bf19c3dded734f5d9f7be0ed.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/91e6bfb46391e31be9f72773c41f260d6e5b8bcd95bb15c9.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/a78f616bbf7a7e7617dade905c1c996579b8efcd68680e93.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2015/66870e3605f0a6f04df0463486470874ac25b9acd600d8d8.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"231844\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0082-CUSA10938_00-DEFINITIVE00SIEA\", \"invariantName\": \"Shadow of the Tomb Raider Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307dK21b0mNOkOhnHW3lKVRuib4EaNWuCmXtt0wMdKVAlE7sYUbD6YOcpgSFImpnxjg--_1p1RgWHadbDnNHpRhzMf28SD.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yguQQ6t1hWTw0aaf_7mI7PLV0nuWRTzhfCFd9HG2abU6IHxZhrfzdlQcpK6lSyaBn9BTv3t_KcD_KgX-H3BNTcbKk0j.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307obn0reFe1U4gMc6b1pGe29vUWBAwdA8-rwjTkBN9iSwdc4rU6hpu5QI4ZXkrja75v0RAOXR1bNsTAg1jbb-3AgvCc1Y.png\"}], \"name\": \"Shadow of the Tomb Raider Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"231844\", \"invariantName\": \"Shadow of the Tomb Raider\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10872_00/6/i_bf48f37e880368d90e7d619b254088edb96086a63ce0554a1c227701e6e5f357/i/icon0.png\"}], \"name\": \"Shadow of the Tomb Raider\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"204794\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03972_00-00000000000GOTY7\", \"invariantName\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202301/2800/iVue7C5G9BCBeiREDJTxjqch.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/hfxDHG9zRcCC7JcviyqgqGUc.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/9uU0gBq02jmXHtDsm82AV722.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/3w3HeyHIT2CKQYS2ODdCwl3j.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0807/IqM9JK6MTlSfKFfJbpO8Mclr.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/GFZJ6WOXRnpH9NxaIcsninch.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/ojKZ7l0T2M5egR9YHIjVhI0R.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/5DSZkROrbrlYN2PXGfDGedeM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/iFujqkGQJZKBGjpw1kgAkjWe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/mfy0530smBKbptFC5oEIaEyi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/KXwbvKMxbPIfDFd7Eiy0w3nA.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/yQIZsOItt4MrBWuR8Gs1RatV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/S1jCzktWD7XJSRkz4kNYNVM0.png\"}], \"name\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"204794\", \"invariantName\": \"The Witcher 3: Wild Hunt\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/3015/C7oqKI8ckegDhbN4ZvzKkbL6.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/f0gDxISdUwVkHgPuAulWNMF7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0712/TJdORs7iyJT91csQVdw7JawD.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/IW5r8hLVZzf0ApOyiOuRnKUe.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/ZNLQs42V6wLVjXSWVr1lIZjU.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0815/lkDQobVNPwh8PQKLmccBgCul.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/qezXTVn1ExqBjVjR5Ipm97IK.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTW3Xfg51LrGZa3riw7ss1/PREVIEW_SCREENSHOT1_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTwWYvhprSG4ZS0frKN2Z3/PREVIEW_SCREENSHOT2_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT5M5PkgpZqQASi2R1eVYj/PREVIEW_SCREENSHOT3_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTlEaxiV5us5kzpwPbcRmD/PREVIEW_SCREENSHOT5_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTALDIrlRJXdgo0XMj7feB/PREVIEW_SCREENSHOT6_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTAf8dzlbHghZ3OiURBY6r/PREVIEW_SCREENSHOT7_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTH5HqSMnkAu9A77BEAJaB/PREVIEW_SCREENSHOT8_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTmOfbRyxfMHHkh8ziATkX/PREVIEW_SCREENSHOT9_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT2gCDlDVuLKhhHzYx0i6l/PREVIEW_SCREENSHOT10_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1412/5YlA3POEEpaAJsUq3eg6U8d6.png\"}], \"name\": \"The Witcher 3: Wild Hunt\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201624\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA00496_00-FC4GAMEPS4000001\", \"invariantName\": \"Far Cry\\u00ae 4 \", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA00496_00/FREE_CONTENTFhrqenkhhwfgnWQjeQ53/PREVIEW_GAMEPLAY_VIDEO_54899.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTlpIzm82yTvTdwdGPtqAz/PREVIEW_SCREENSHOT1_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTwWvRELkeqHqDRR1EKL2b/PREVIEW_SCREENSHOT2_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTRVNZKWvZqfok5tgmPUbL/PREVIEW_SCREENSHOT3_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTFdMmD7JGH07tnYxLaaX5/PREVIEW_SCREENSHOT4_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTNVH9yitmwynPSQQJ3UVx/PREVIEW_SCREENSHOT5_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTqHTkr1D3fwCHLjwT9g4y/PREVIEW_SCREENSHOT6_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTZp1xxdLpiugdYD7RNpcl/PREVIEW_SCREENSHOT7_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTctokfb7px9MSGML3U7Bv/PREVIEW_SCREENSHOT8_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTtntLWJIsbHmPiDlVZJWo/PREVIEW_SCREENSHOT9_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTbb0upXXLoEmzs0jnoIbn/PREVIEW_SCREENSHOT10_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076px2b27B2ofcw5IzONcQEr6vlx2oSWvfJEutr9o7jAcP9vbVFjtbYjYoX2MOkkuepqwRRkk8Krf08MR2BKeTPw-FyY7.png\"}], \"name\": \"Far Cry\\u00ae 4 \", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201624\", \"invariantName\": \"Far Cry\\u00ae 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA00462_00/3/i_f949708af1851db4e2c353b5ae0f577e3fad30658f8381b0485267663aac769a/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 4\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232910\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA13917_00-FARCRYBOWMORE000\", \"invariantName\": \"Far Cry New Dawn\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTgk0YjFLR6PSEfEmwMhfj/PREVIEW_GAMEPLAY_VIDEO_3_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTy5qV3T2mjK0leCFrnCJJ/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTcKttW4m7XG6LglaCV8ys/PREVIEW_TRAILER_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENT3qNAmCkb6Yl0DlTvq1Zv/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/sNDjQiQyp8AdPs01veCWou82dtgGbkel.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTWdmo5IAfLECuRObM2Hmo/PREVIEW_SCREENSHOT2_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTvVpqmmAFc8kDa7PDLqNs/PREVIEW_SCREENSHOT3_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTpY3FkwH4BCJNR6v870Yy/PREVIEW_SCREENSHOT4_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTaMK6decUAgo79s2CEczj/PREVIEW_SCREENSHOT5_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENThbbHoW4QlYG4pUcCeDaC/PREVIEW_SCREENSHOT6_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENT6ZU66cqxwDUanSMeX7dF/PREVIEW_SCREENSHOT7_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTwGvbDRrrk9B01aa1Ut90/PREVIEW_SCREENSHOT8_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/s2paV3Q5VGXYcup1gmnVzD0rmGWMeyfd.png\"}], \"name\": \"Far Cry New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232910\", \"invariantName\": \"Far Cry\\u00ae New Dawn\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/eeXmyH6hbDDbs9s5H9U8dY7s.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/fHSgavQrGBp2OfmyVPxUnqCT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0ulqqz3BJMI1iJGNeNhWHVcC.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0iWiLD8mzYEu5pOhlwW7TeFK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA13885_00/2/i_26f5de10bfd55ff9d0bbbb6f253ef91fa6cb93dad780eb8a2f002aa3f6e9e5a0/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 44, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokMWFiM2MzZDA1NTk2NDhjMGFlYTEwYmI5N2IxYTRmN2QtNDAwEi5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzk2Mg\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313:UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"invariantName\": \"The Crew Motorfest | Year 1 Pass\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Season Pass\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/1469ba301ac835323dde04ead8d5bffed5b7127fc5d3d437.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1213/4f1947ca59705da7b87d28418cb023d3ede5a5809514f8e0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/e54f502c99bfe3f7b9cfdee64b6fa4c36e2c583d4915e571.png\"}], \"name\": \"The Crew Motorfest | Year 1 Pass\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"SEASON_PASS\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 17, \"zeroState\": false}]}}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json index d6cc578..daffca5 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__get_game_content_id.json @@ -4,7 +4,190 @@ { "request": { "method": "GET", - "uri": "https://m.np.playstation.com/api/graphql/v1/op?extensions=%7B%22persistedQuery%22%3A+%7B%22version%22%3A+1%2C+%22sha256Hash%22%3A+%22a2fbc15433b37ca7bfcd7112f741735e13268f5e9ebd5ffce51b85acc126f41d%22%7D%7D&operationName=metGetContextSearchResults&variables=%7B%22searchTerm%22%3A+%22GTA%22%2C+%22searchContext%22%3A+%22MobileUniversalSearchGame%22%2C+%22displayTitleLocale%22%3A+%22en-US%22%7D", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" + ] + } + }, + "response": { + "status": { + "code": 302, + "message": "Moved Temporarily" + }, + "headers": { + "Expires": [ + "0" + ], + "X-Psn-Request-Id": [ + "1ae7cc7928f02789ab2a61513bc95273" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Connection": [ + "keep-alive" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.9190wJ&cid=00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Frame-Options": [ + "DENY" + ], + "Date": [ + "Sun, 12 Jan 2025 00:18:03 GMT" + ], + "Content-Length": [ + "0" + ], + "Server": [ + "nginx" + ], + "X-RequestId": [ + "1ae7cc7928f02789ab2a61513bc95273" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Psn-Request-Id": [ + "5d1cf576884c7db9dee4d34258158d02" + ], + "Cache-Control": [ + "no-store" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "Connection": [ + "keep-alive" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 12 Jan 2025 00:18:03 GMT" + ], + "Content-Length": [ + "4010" + ], + "Server": [ + "nginx" + ], + "X-RequestId": [ + "5d1cf576884c7db9dee4d34258158d02" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://m.np.playstation.com/api/graphql/v1/op?extensions=%7B%22persistedQuery%22%3A+%7B%22version%22%3A+1%2C+%22sha256Hash%22%3A+%22a2fbc15433b37ca7bfcd7112f741735e13268f5e9ebd5ffce51b85acc126f41d%22%7D%7D&operationName=metGetContextSearchResults&variables=%7B%22searchTerm%22%3A+%22GTA+5%22%2C+%22searchContext%22%3A+%22MobileUniversalSearchGame%22%2C+%22displayTitleLocale%22%3A+%22en-US%22%7D", "body": null, "headers": { "User-Agent": [ @@ -42,59 +225,59 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" - ], - "Connection": [ - "keep-alive" + "x-content-type-options": [ + "nosniff" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "x-dns-prefetch-control": [ + "off" ], - "content-length": [ - "84597" + "Vary": [ + "Origin", + "Accept-Encoding" ], "strict-transport-security": [ "max-age=15552000; includeSubDomains" ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], "x-xss-protection": [ "1; mode=block" ], + "Access-Control-Allow-Credentials": [ + "true" + ], "Content-Type": [ "application/json" ], - "Vary": [ - "Origin", - "Accept-Encoding" + "x-download-options": [ + "noopen" ], - "Expires": [ - "Sun, 16 Jun 2024 22:59:27 GMT" + "Pragma": [ + "no-cache" ], - "x-dns-prefetch-control": [ - "off" + "Connection": [ + "keep-alive" ], "ETag": [ - "W/\"14a76-XYLCoGq9PF+AJYepEx0/Kcj+ciU\"" + "W/\"165ca-4LX366CcLVAcDlVbnUA7dQH6rx4\"" ], "Date": [ - "Sun, 16 Jun 2024 22:59:27 GMT" - ], - "Set-Cookie": "REDACTED", - "x-content-type-options": [ - "nosniff" + "Sun, 12 Jan 2025 00:18:04 GMT" ], - "x-frame-options": [ - "SAMEORIGIN" + "content-length": [ + "91593" ], - "x-download-options": [ - "noopen" + "Expires": [ + "Sun, 12 Jan 2025 00:18:04 GMT" ], - "Access-Control-Allow-Credentials": [ - "true" - ] + "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8abQo6YjRlNWI3ZGUtZGFiNS00Zjc4LTg4OGQtNDc4ZWI0Y2QwMThmLUpzMVI1NjZXLTItMTcxODU2MDgwMBIvc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtYmxhY2tleWUiHnNlYXJjaC5ub19leHBlcmltZW50Lm5vbi4wLm5vbioDNjY4\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202403/1817/32635bc8c1f1fcdf3c096d4138ecce6d123aa20ad1609f67.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": San Andreas \\u2013 The Definitive Edition\"]}, \"id\": \"10003552\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03524_00-GTASANANDREAS001\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10003552\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2914/BukTyjMYxWu94IqaaXVzDlBo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10011043\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UB0851-CUSA48913_00-0554901393633968\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/a1681968cadfe5a28eb88b0d840c89790ee586a5829200a9.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10011043\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/ad640fb609a6d0f538bf8490ee8c9e6a2c64fa560d6a7f86.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/2576162c8d6ebf13b6b6ed2afe056dc27076415ccb797a40.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202007/2122/Oq6TdUsqiafeOYueO8gvhvx5.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/qJkuelKsYZ6dVRdnInF3kqDJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/1708/u54yeWPGwLAzT75sfQnzt0ue.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/6a83ab4f23142d0127b757db899908a239a0f38142fe9c5c.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/59ef2227b8ff75a5d564b914f69a6a6c7ede7f0530d6e2f3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/02308b61e5b4baff808b9049ea380b8edfcd896b1c0266d0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/388c9dfd043c3c9b86593881ec98e965f4b92a5ff9b5d920.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/b9b98c9c4dff78608f3393e3d90dfb5a84aecce1a9ca2a55.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/8ad6967a749c971c1910b94d76dc33cbb0a4c5da84ec5e6d.png\"}], \"name\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 41, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokNjk3NTY0ZGJhODkxNGE5OWFmZWM4YjRkNzc5ODkyYmUtMTI4Ei5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzU5OA\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 16, \"zeroState\": false}]}}}" + "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8acQo6YmQzYjNhYTItOWQyOS00ZmM5LWE0YzgtZDE5YmY4ZDI5MTY1LWdGWTJ2TnNnLTItMTczNjYxODQwMBIzc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtY29uZG9yLWJhc2ljIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC00NTY\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" \", \"V\", \" (PlayStation\\u00ae\", \"5\", \")\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SAINTSROW00PS5US\", \"invariantName\": \"Saints Row PS4&PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202108/2613/9XObtBG2WzUhBWTnPJfuf3CB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/JcwWbXmuZJvCbxg6xR706VOb.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/1009/Xn02D1OLZr4vCUhZO4W0gGBB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/RdT785TOLSSBaixaWIUYXiiP.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/fg3HTSV9GR0SqrLWsGhvE1MQ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PMHD0rxw31XwGPibnBmLOeLg.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/D7ss2NW3Q44yYvozDrjmmzao.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/3P5y1MOvlTJzVC39Ga8O4Bsn.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/nTpAmY1T11xggfIEaY9cB0uD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/sXFcxF3cFeTLzT6CMx2vEIO2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/uNwTNHcsiFbTBmOLyBJlV4yd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/oBkKJavcyJiJRVnUFhcz3NJc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PQLu1uL387j8p4FZjpuFconi.png\"}], \"name\": \"Saints Row PS4&PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002042\", \"invariantName\": \"Saints Row\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202108/2613/9XObtBG2WzUhBWTnPJfuf3CB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/oAe5dCWAQ223VWKfMBBbkX8B.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/fg3HTSV9GR0SqrLWsGhvE1MQ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PMHD0rxw31XwGPibnBmLOeLg.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/D7ss2NW3Q44yYvozDrjmmzao.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/3P5y1MOvlTJzVC39Ga8O4Bsn.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/nTpAmY1T11xggfIEaY9cB0uD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/sXFcxF3cFeTLzT6CMx2vEIO2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/uNwTNHcsiFbTBmOLyBJlV4yd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0609/oBkKJavcyJiJRVnUFhcz3NJc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/PQLu1uL387j8p4FZjpuFconi.png\"}], \"name\": \"Saints Row\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew Motorfest Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/fc97eda24f337d017e98e28b632d94959cfad7de1a8ca8d9.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a0add90003186e98961d2d63e9e17d32063ecb39d692d9f4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/726056484ccbc699c3b143a85841d79a9eb844137c36c5b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a4c27a1ff10c6c071d660d212f3ccd623d3f386e939027a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5f386e88aa32b0cf60750e839b4671c76df9e1126544d679.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5fb8cf06e2f894195efe2ab7d8cbdb13b8129eeae1c2a653.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/353832b119e92b04e81dbebc1ceaffd1c110bdd03fd31d03.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/6ec491c9a5f5ad35d3f83ca1cbca7d931e68c2a6547f8185.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/d03c851c3d57bc483a7c591d0b46f28e00ae6d3268f4db3a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/33a3b5540683ae445f0efe9c25df8d0a4f1c062ac50401a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/c09010eb84af0a9c532fbb791641189d98b32555c46ee5eb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/aff7ae0da202d816a5761fd4ce865085320052f46223c770.png\"}], \"name\": \"The Crew Motorfest Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/4afa4359de58e6c1fe2509b0bf19c3dded734f5d9f7be0ed.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/91e6bfb46391e31be9f72773c41f260d6e5b8bcd95bb15c9.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/a78f616bbf7a7e7617dade905c1c996579b8efcd68680e93.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2107/9f044e6d328e539f5ca10c4e5a42cd3d1a74452474dec5cc.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"Far Cry\\u00ae \", \"5\"]}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10001130\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0002-PPSA01649_00-CODBO6CROSSGEN01\", \"invariantName\": \"Call of Duty\\u00ae: Black Ops 6 - Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/1420/2d41634f4422a1ec4016b80835415e52d808903d7a014cc0.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/2018/db0f69969cf515a6bf304273066d4f2639f98ae90fe8c9b2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/46be078742eef20a38e4a8e8f23e1107310597c2fc6df8cf.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/8a16010834ed7ffdb570a32f7ec89c8c40e60cce4041e16d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/5835d2a5053e7aff667230c26c9a03ee06fc1a50ec372a54.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/e591f3f0ea1863fd40039a3c3a80e72b7119e2c6df76fe19.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/0119/a183a78e406f9b6b891bc7de8577019699e85c91721ed896.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/393ff993a7c101feff9e1e6442bea0dda6c3f0128714a302.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/14d8385d59e614e0e5fea8fa5e140aa96a46622d7f836a7a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/2819b5df32c19b4b9e972dc3281b474937bb2570312b38a2.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/05a08ddb076656e71324f6d578bdbaa16c8925ab01dc3046.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/7d2e8ac872e44a6d8cb0ae5a7170b6b3eb5a21f20c374886.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/b39b0874faf0447a3a921852545c9668ac332fe173602a10.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2921/4b45cf4b319a65e05f6e4f87a22c7b91d2e7e8aeb247b61f.png\"}], \"name\": \"Call of Duty\\u00ae: Black Ops 6 - Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10001130\", \"invariantName\": \"Call of Duty\\u00ae\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/1323/9ab4bb8d7024377cc5d78edfd270b4e5b77b127c1e32374a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/1420/2d41634f4422a1ec4016b80835415e52d808903d7a014cc0.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/2018/db0f69969cf515a6bf304273066d4f2639f98ae90fe8c9b2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/46be078742eef20a38e4a8e8f23e1107310597c2fc6df8cf.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/3de9599e0c0ddd48dd9064c9a763ad48b49a593a7a3e46ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/8a16010834ed7ffdb570a32f7ec89c8c40e60cce4041e16d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/5835d2a5053e7aff667230c26c9a03ee06fc1a50ec372a54.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202410/2504/e591f3f0ea1863fd40039a3c3a80e72b7119e2c6df76fe19.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202411/0119/a183a78e406f9b6b891bc7de8577019699e85c91721ed896.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\"}], \"name\": \"Call of Duty\\u00ae\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"The Elder Scrolls \", \"V\", \": Skyrim Special Edition\"]}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 64, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokMWFiM2MzZDA1NTk2NDhjMGFlYTEwYmI5N2IxYTRmN2QtNDAwEi5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qAzQyNQ\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10001137:UP0638-PPSA01797_00-FNAFSBCHOWDATIME\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP0638-PPSA01797_00-FNAFSBCHOWDATIME\", \"invariantName\": \"Five Nights at Freddy's: Security Breach - Ruin\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Level\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202307/1719/1b1015425f6836420ee79442c6bbfce4df1d059cd1a9783e.mp4\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/353cfc4852b01c7089cc474e676becaf7ddbe3fc709e902a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/78ac528e6683705e65cb0f65bf73a7dbfc87dcee6b6a430b.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/341ba74b9bc272741be69e9d86cb0d5f5af13672cff3566b.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/49fdb02c09bb8a451f8201c19bb06c3e267ac41912356aab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/4a93b4a12a4315bd200e16761e33723ddcd1db245b248351.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/7b1a0828f7a435c299a0be93251cae32e9e8edee65dfb7b3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/3dfa2f4478719ceda3c0835f9bc0a6d0f228bdc253cc797a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1315/33705d2ef2d8c503eeaeab2316cde8667e6b8ec8789f8f49.png\"}], \"name\": \"Five Nights at Freddy's: Security Breach - Ruin\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"LEVEL\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-SRDLC0000007SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SRDLC0000007SIEA\", \"invariantName\": \"Saints Row: SteelSeries\\u00a9 FREE Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1513/rOsrcc4cmGAr07cX75SMpvmS.png\"}], \"name\": \"Saints Row: SteelSeries\\u00a9 FREE Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-WHICHDLC0000SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-WHICHDLC0000SIEA\", \"invariantName\": \"Front to Back Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0608/fg3HTSV9GR0SqrLWsGhvE1MQ.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2013/TeNitMAGGEZ0RMQVzqQjryqo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2013/Ds5YWB2RmJhFkK93QHgX1uLE.png\"}], \"name\": \"Front to Back Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-SRDLC0000010SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SRDLC0000010SIEA\", \"invariantName\": \"Hexy Halloween Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2720/48e2b942fab342c9bb4171fe10fe029065eec1fa48bc4f49.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2720/0682500f5045c9d4ad9d58843d0c2f1ab6ad90f9044b376f.png\"}], \"name\": \"Hexy Halloween Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002042:UP2047-PPSA02813_00-SRDLC0000009SIEA\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02813_00-SRDLC0000009SIEA\", \"invariantName\": \"Dead Island 2 FREE Cosmetic Pack\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Costume\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0713/f82bd91881a7b2597f850e3c11678b80cf16ca0c83734580.png\"}], \"name\": \"Dead Island 2 FREE Cosmetic Pack\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"COSTUME\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 95, \"zeroState\": false}]}}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json index 47d162a..3c0668d 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_search__universal_search.json @@ -1,6 +1,189 @@ { "version": 1, "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" + ] + } + }, + "response": { + "status": { + "code": 302, + "message": "Moved Temporarily" + }, + "headers": { + "X-XSS-Protection": [ + "1; mode=block" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.TcTNgB&cid=00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Connection": [ + "keep-alive" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Sun, 12 Jan 2025 00:16:03 GMT" + ], + "Expires": [ + "0" + ], + "Set-Cookie": "REDACTED", + "X-Frame-Options": [ + "DENY" + ], + "X-RequestId": [ + "954ec06c7434da17734cb39e07dd0d41" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Psn-Request-Id": [ + "954ec06c7434da17734cb39e07dd0d41" + ], + "Content-Length": [ + "0" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-store" + ], + "Connection": [ + "keep-alive" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Sun, 12 Jan 2025 00:16:04 GMT" + ], + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "X-RequestId": [ + "924dc22606ca7e46dfc70619fbf07f9b" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Psn-Request-Id": [ + "924dc22606ca7e46dfc70619fbf07f9b" + ], + "Content-Length": [ + "4010" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" + } + } + }, { "request": { "method": "GET", @@ -42,59 +225,59 @@ "message": "OK" }, "headers": { + "Access-Control-Allow-Credentials": [ + "true" + ], + "x-frame-options": [ + "SAMEORIGIN" + ], + "x-xss-protection": [ + "1; mode=block" + ], "Pragma": [ "no-cache" ], "Connection": [ "keep-alive" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" - ], - "content-length": [ - "84600" + "Content-Type": [ + "application/json" ], - "strict-transport-security": [ - "max-age=15552000; includeSubDomains" + "x-content-type-options": [ + "nosniff" ], - "x-xss-protection": [ - "1; mode=block" + "x-download-options": [ + "noopen" ], - "Content-Type": [ - "application/json" + "ETag": [ + "W/\"2a296-s+qp0jFTh6JPEfkLYtcJqCz5h8s\"" ], "Vary": [ "Origin", "Accept-Encoding" ], - "Expires": [ - "Sun, 16 Jun 2024 22:59:26 GMT" - ], - "x-dns-prefetch-control": [ - "off" + "strict-transport-security": [ + "max-age=15552000; includeSubDomains" ], - "ETag": [ - "W/\"14a79-FTM5OvqynnctIWsZHe6ypDmRN78\"" + "Expires": [ + "Sun, 12 Jan 2025 00:16:04 GMT" ], "Date": [ - "Sun, 16 Jun 2024 22:59:26 GMT" + "Sun, 12 Jan 2025 00:16:04 GMT" ], "Set-Cookie": "REDACTED", - "x-content-type-options": [ - "nosniff" - ], - "x-frame-options": [ - "SAMEORIGIN" + "Cache-Control": [ + "max-age=0, no-cache, no-store" ], - "x-download-options": [ - "noopen" + "x-dns-prefetch-control": [ + "off" ], - "Access-Control-Allow-Credentials": [ - "true" + "content-length": [ + "81312" ] }, "body": { - "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8abQo6YjRlNWI3ZGUtZGFiNS00Zjc4LTg4OGQtNDc4ZWI0Y2QwMThmLUpzMVI1NjZXLTItMTcxODU2MDgwMBIvc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtYmxhY2tleWUiHnNlYXJjaC5ub19leHBlcmltZW50Lm5vbi4wLm5vbioELTkwOQ\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202403/1817/32635bc8c1f1fcdf3c096d4138ecce6d123aa20ad1609f67.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": San Andreas \\u2013 The Definitive Edition\"]}, \"id\": \"10003552\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03524_00-GTASANANDREAS001\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10003552\", \"invariantName\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/E0JlFrBbj45k1pOpHWOCWMJ5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2914/BukTyjMYxWu94IqaaXVzDlBo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2814/4adJ0gjnFRysR59iJSZJFQ1J.png\"}], \"name\": \"Grand Theft Auto: San Andreas \\u2013 The Definitive Edition\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10011043\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UB0851-CUSA48913_00-0554901393633968\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/a1681968cadfe5a28eb88b0d840c89790ee586a5829200a9.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10011043\", \"invariantName\": \"Ginger - The Tooth Fairy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/ad640fb609a6d0f538bf8490ee8c9e6a2c64fa560d6a7f86.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/b2f7fc63d3aeedeedbec2ece01419bce27148486dc653dd9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2716/1b55d3b66ca34c31af9ed151a515530201c9ecec90398ef4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/2576162c8d6ebf13b6b6ed2afe056dc27076415ccb797a40.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/174fd0e6f98a0ea0127e22317bfa14d195bbbd523a65b5f1.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/840af2c13aa25923c3234ff3bf4140ca71c9e2b685fb0aa6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/89d84464b693e5aa02d810732fcf9ab98088cd461bd1d55a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/06fdbe51cfa52046511357dcae6e98745ba5ca530301431f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/90a6ce766abeaff745c7c9987484e247bfe349232cdbd28e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/b7d0a5fbbc8eb5dbe7c6fb5e0af95b819f19b7b105e5b876.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9cb78b6fd556c3126a871fe55b0aa43a2d25269b0f66fccd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/c4326a5a1843410df40a47cc99341483e8f248662a978e74.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/24d192bff9bea2fa8a8843740dc11e88ec5848a1c4d11d50.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2314/9b4f31fe5238c5f0206d92d19a4680e4ef095388593e9978.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2214/7f24951f50067db22e8c9135739d683a75c8615685bb3513.png\"}], \"name\": \"Ginger - The Tooth Fairy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202007/2122/Oq6TdUsqiafeOYueO8gvhvx5.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234481\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP2047-PPSA02873_00-SRTTRPS5SIEA0000\", \"invariantName\": \"Saints Row: The Third Remastered\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202105/1221/7BxcfYKx6TpKWPcePwMrqZCU.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307l2Se9j9utRr2dHngNoth1NVLUliX_pMfK0tvchK1YhcW93jsDfh2DRCs0ryHRwJY2r24a5o06OP7GkXt3tQqHcEXs1w.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1110/OwxZcWTSQshQNCS8n3M1dm25.png\"}], \"name\": \"Saints Row: The Third Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234481\", \"invariantName\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307YkrEnJvlSyU6gMx96GIhgCgcPaik-hlCJJrgWKLNab46PECqUs4R3OvIMXxiWv9L-OEyooObW_Xjrbvd68mtcY_5fYy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/c8VacpANtiFneNr0aKZ5ymLH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/ImZCU4uGLhlKjzNWbRVH5TDg.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/cEiMLV2AKwyhP6PMGpG925jn.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1706/peqFd9wCosqD5tOPrM5IDrFS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307FMv3AIO-H9Dlips5uMHu4GA1KAg2AhT_tUA4OQ9RdCkIwA-MzC1njc6tdwfGTC9WoPe4Ww7-_MBAyi7hoFYBogUm4Fj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307PF87ebSoyRBIomxCcpyJdTs-JwWTqaMcbhj3PaAv1jIP5Zz17B2sczpqO4MbcleY9NCSvFHYQdndwK_wvAqvhs_KQhb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307viUcOvoyZ7rNKxTYPMysiSUZndUzDsTpRluuARD5ELQciwSlzmb32m_tV9z3Tf-cJnTSlbEIhyO2zL6EfL2mDQu6d97.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073sDFxmiiOz-bT_Bg848EX1xmnl_39RBHxQ3DoUGzeOktHDAxm2sVf0UOHXp4XOrS_Tjptezat-96DygXmdatY8N-n0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307DX8NhF5XjESvej0zotMGDi2DVr07h599dhXBVcuuEtYaQUrZilAT_AbDib0wV2AplddT4LLYv5tGl7IFOY8t0MXGxUF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307xNbf1E7wcpFSjo-Uck5ZFUUW7p_11p5trolhz6fPlb8YdoRKb8r4E3gW-Wb3lsWlZS53zJIs8BFJk0rmpaYbLgMvLnQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14350_00/1/i_6801577709fcc2c2ba0a318b56a55e36e4de63ca50ca418563a4a802da9e7b24/i/icon0.png\"}], \"name\": \"Saints Row\\u00ae: The Third\\u2122 Remastered\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/qJkuelKsYZ6dVRdnInF3kqDJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232581\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA01487_00-ORWFULLGAME00000\", \"invariantName\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/L8sS2T6HMVrb5m32Wozb05FG.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/dJs37eVfzwgRbtRQxHUyyWu4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0217/OX5mEmwgRPeSQrhGFU3n4moZ.png\"}], \"name\": \"Watch Dogs\\u00ae: Legion PS4 & PS5\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232581\", \"invariantName\": \"Watch Dogs: Legion\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/IDECNxXGO44AtMXkAlRyznhE.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202011/1320/Ke7VxVGfqmLqByIgRCqwPSVw.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/Hb3EEpezVsgMqWr7znB26Y9o.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2223/3zAbbsgtBYSfG2l043rLh7i2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/3002/5yRvEJERrFUHQKoyISq3ezo1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/15TEl7lTkPIEQjtcgOml1Enx.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/3120/fQJAUCvZFYSKMcLevI8QEIZo.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0302/eK0TNeaxIR1ajS2iaoH29hwh.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Zb5XQo2qUCdQ7t2BYFthgQzy.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/36AyWamGWIdrZFq3womW3EBD.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/vtUaSelYAa7lzS7iW9gYzAuE.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/8AMhYewi23yPPuLZmSI3Uel0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/27GNa5HpBG6Kai3dOPp2s8Co.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/KVSsfjhW08V4QPXFLrp1hNvd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/GAiu1BqOTJ7Sqdu3T8ReCfgi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/1521/Eh5banCUgl0CnoBeUVgDbjQ1.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0200/ohDfr1TcylLqbwva38ONyLHO.png\"}], \"name\": \"Watch Dogs: Legion\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"221692\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA05904_00-FARCRY5GAME00000\", \"invariantName\": \"Far Cry 5\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/63ada2876901bcfb265616e2e839a3c9b12dcc3e92732709.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/45fbf3692152eb3f7b89957236c9d944cad46c7f15339a09.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202303/1617/9bf561e72c02b184c219b070b95dac89f18d76680d59e66a.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05849_00/KQNjYgbQ5HOeo7MZLPCUj3UfOG6sbdkO.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0819/d9L9qNbe7DSlO28girAiCtZW.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/659d85ff7836ea2a6e41218032956c20b5348fb94aa2d3c2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/f9039f51c1a42396c4021ce52819f97dcbabf1596a81b57a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/36ef02098d3738a67bcf9c3708a636f523f22b8fbcc11ee8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/929a358ecd999649a6e7b800442d0787c1162eca91736e90.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/c59ddd1fe63053663cb67226c97b979b58da581b5230ed79.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/81b51e77710040463f1da0a65549e938dce1a151f4318b1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/e230f0eea675725f514935c2b7a4ef3c52d9fdfbf98605b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/a536590487d6cbc71f1f2b284977a03adf1361c2f9dcfe9a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1016/fcf4cff5403d98c71c0c8ae1b7362811c3eb799ae20a33fc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP0001/CUSA05847_00/pEBJnRh6DeL2BfyZRa9jZRrNuSav42QPJIXyqo6Rgcr52o9kYLwY4EpouAzWh4Fu.png\"}], \"name\": \"Far Cry 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"221692\", \"invariantName\": \"Far Cry\\u00ae 5\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0222/3GrW7o7urwVJwMZEL463EJRH.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1000/I6miOpSDKwGCPcfhwWMYrWPZ.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA05847_00/2/i_156be5fdc23a961f0e2b05974c0df5ecfd6169b09aa25e5c510ec7e6e1ad683f/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 5\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"230955\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA03746_00-TESVSKYRIM000000\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/ZBBsG498tANX90E20pqzaJpK.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/aDSOgerXg4V6sf5A7VzHiTun.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA05486_00/FREE_CONTENT7xUtNLCOc3jyBqaMFCv7/PREVIEW_SCREENSHOT10_498764.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition - PS5 & PS4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"230955\", \"invariantName\": \"The Elder Scrolls V: Skyrim Special Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/GdSnApO2g23IFdqMIGDUSQbr.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202111/0917/EnMcUDRy16ruQyFDefFGzXNm.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/yljAxtuj0ErMJhm5iBaVe9TT.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2820/h12URI7MdswtFPFHpkppNh2z.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2019/HOQebjaJkdGFZUZWT3bnF32D.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/AVfcmCQlJf3yEk5eRGss28KA.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTu9LDBfEvXQXc8zh1XxJD/PREVIEW_SCREENSHOT1_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzy41wPvWx80ds7e6kHEI/PREVIEW_SCREENSHOT8_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTOOcQllTlTcN6Qk6GyJfK/PREVIEW_SCREENSHOT10_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTAJQhOvnx9ftgyuo54upp/PREVIEW_SCREENSHOT5_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTrn5DpD4NPoRZj6gvDmRP/PREVIEW_SCREENSHOT7_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTzFYbM9zR5Oap84qKQdZl/PREVIEW_SCREENSHOT6_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTKpcawCwpZQUBx285n72g/PREVIEW_SCREENSHOT2_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTHr2Yy0xOhXVLAJ3MmdkL/PREVIEW_SCREENSHOT3_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA05333_00/FREE_CONTENTORaDJtrK7f6fmOjBHsQG/PREVIEW_SCREENSHOT4_120139.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2818/FuG72QFUf4aRYbSBAMNH2xwm.png\"}], \"name\": \"The Elder Scrolls V: Skyrim Special Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/1708/u54yeWPGwLAzT75sfQnzt0ue.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/6a83ab4f23142d0127b757db899908a239a0f38142fe9c5c.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/59ef2227b8ff75a5d564b914f69a6a6c7ede7f0530d6e2f3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/02308b61e5b4baff808b9049ea380b8edfcd896b1c0266d0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/388c9dfd043c3c9b86593881ec98e965f4b92a5ff9b5d920.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/b9b98c9c4dff78608f3393e3d90dfb5a84aecce1a9ca2a55.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0710/8ad6967a749c971c1910b94d76dc33cbb0a4c5da84ec5e6d.png\"}], \"name\": \"The Crew\\u2122 Motorfest Standard Edition - Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 41, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokNjk3NTY0ZGJhODkxNGE5OWFmZWM4YjRkNzc5ODkyYmUtMTI4Ei5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0zNzk\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000F\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/mCa3ytiMbhVx4ByzmuY1c8lu.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 16, \"zeroState\": false}]}}}" + "string": "{\"data\": {\"universalContextSearch\": {\"__typename\": \"UniversalContextSearchResponse\", \"results\": [{\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileGames\", \"domainTitle\": \"Full Games\", \"next\": \"CA8acQo6YmQzYjNhYTItOWQyOS00ZmM5LWE0YzgtZDE5YmY4ZDI5MTY1LWdGWTJ2TnNnLTItMTczNjYxODQwMBIzc2VhcmNoLXJlbGV2YW5jeS1jb25jZXB0LWdhbWUtbWwtbW9kZWwtY29uZG9yLWJhc2ljIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0xMzE\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"209441\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03041_00-REDEMPTIONFULL02\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP1004/CUSA03041_00/FREE_CONTENT1YUV4PNZPAppDjhY9Li6/PREVIEW_GAMEPLAY_VIDEO_3_166081.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/1215/WyHa1BM3ISDVqYSEUMB9VZJs.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTvJKvL7yfxIr782YEPFC1/PREVIEW_SCREENSHOT10_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTHGtjr9cnSmOKjo4nN4EF/PREVIEW_SCREENSHOT8_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTNUnS6JI3rQg5ELQyhpej/PREVIEW_SCREENSHOT5_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT66dehxycKqgS4Mhiabti/PREVIEW_SCREENSHOT7_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxMGjvWfhU2fx4VJIgUP1/PREVIEW_SCREENSHOT9_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT6360cGXTPL8vg7J1iBU1/PREVIEW_SCREENSHOT6_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTPkRWha1p8XekBjvSs2jd/PREVIEW_SCREENSHOT3_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENToZlCoShC2j15o82YyWYd/PREVIEW_SCREENSHOT2_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENT2xdDEeTPXhKgM3mqi53l/PREVIEW_SCREENSHOT1_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/FREE_CONTENTxyyRex1B6WQIughYFrcQ/PREVIEW_SCREENSHOT4_166081.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1004/CUSA03041_00/Hpl5MtwQgOVF9vJqlfui6SDB5Jl4oBSq.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"209441\", \"invariantName\": \"Red Dead Redemption 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/pic0.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/7SafJMKgVT0Ppsn2ZmHoqzFH.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA08519_00/12/i_3da1cf7c41dc7652f9b639e1680d96436773658668c7dc3930c441291095713b/i/icon0.png\"}], \"name\": \"Red Dead Redemption 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"200477\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA03507_00-SLUS212690000001\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0802/ec072c1cd3b72838476a53056a923771bc16d08c43d68d3c.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"200477\", \"invariantName\": \"Bully (Canis Canem Edit)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/f465861e409bd16104d9308ef1d8add2c3c6973e41eceec0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/e2adb6927bab58c79bd92f6f9e130bf5913d2edd2315887a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/ee573801cb0e89de16731d480bd8feae504f31185dd49b68.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/9281dda80c565177b9db7c17ed47514eeccae1ba88b44b95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/e247bad88fc66eb3844da7ee3c2af61f7729bd70c86940cd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/ea0f9b79ec3aa499c64d6fc9eb94da36f6b5401f437fcb93.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f92061d19b793882e5c61d56f7724006654dfb0f0d3ffe3f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/1d888cc1a18740c31f7ba5999d57a6dae7587c76c23f28dc.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/f2826c413090266f80e8171bad47d60b9363a001bfb3994c.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0914/087d6c0b05761c9223487a678b7242a563139a62bd5b81ac.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0702/0a80a4bca3be19ae1bd7b50a50121df84b7e546642233b54.png\"}], \"name\": \"Bully\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \" V (PlayStation\\u00ae5)\"]}, \"id\": \"201930\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAOSTANDALONE01\", \"invariantName\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202203/2115/Ov4Wa7uZST7SyVV8kAgUbS8y.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202412/1214/bc2eee197847559eee147d3ffdc34049745e0bbd212bc379.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1714/RWdg9GkTDSgztsFVKuvvgVwt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0820/4OL8c6zeV95pA70XFmwQYvCj.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/YHqWG89UegirLGRyNIn8tmnv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/tpPFgPeAv6YWMBUg51YyZcdv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/4aX03Zu8ocLyP0bQui1AiKco.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/DogIYjDGyXPn1vI4a62P5XN3.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/WGP58ZYx9ZjS816Ksjm3fgNR.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1515/8kNkdvIIbW8YCoFQkv5tdVU5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/mYn2ETBKFct26V9mJnZi4aSS.png\"}], \"name\": \"Grand Theft Auto Online (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"201930\", \"invariantName\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/1411/5fa8f17c4c81cf21a277e64f8a4031eabd7a119700ae45db.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/bZ1JTRXzoyl3hkcsloKcCgdB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/2419/XFDZtpMiMpFaJLuo9azJK6Gl.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/K6mmm89oNII1iI1aqaClO0wh.png\"}], \"name\": \"Grand Theft Auto V (PlayStation\\u00ae5)\", \"platforms\": [\"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-PPSA02838_00-THECREWORL000000\", \"invariantName\": \"The Crew Motorfest Cross-Gen Bundle\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/d6d8607f86e201b5c44107e6c594195c6740e516c6804959.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/2617/51829f63679821b25e76a2bdc960195579aa5570f8016103.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/fc97eda24f337d017e98e28b632d94959cfad7de1a8ca8d9.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a0add90003186e98961d2d63e9e17d32063ecb39d692d9f4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/726056484ccbc699c3b143a85841d79a9eb844137c36c5b4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/a4c27a1ff10c6c071d660d212f3ccd623d3f386e939027a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5f386e88aa32b0cf60750e839b4671c76df9e1126544d679.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/5fb8cf06e2f894195efe2ab7d8cbdb13b8129eeae1c2a653.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/353832b119e92b04e81dbebc1ceaffd1c110bdd03fd31d03.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/6ec491c9a5f5ad35d3f83ca1cbca7d931e68c2a6547f8185.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/d03c851c3d57bc483a7c591d0b46f28e00ae6d3268f4db3a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/33a3b5540683ae445f0efe9c25df8d0a4f1c062ac50401a9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/3109/c09010eb84af0a9c532fbb791641189d98b32555c46ee5eb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2217/aff7ae0da202d816a5761fd4ce865085320052f46223c770.png\"}], \"name\": \"The Crew Motorfest Cross-Gen Bundle\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10002313\", \"invariantName\": \"The Crew Motorfest\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/2217/3983b542e02d65a6380995bbff352bd3c741beff074ec407.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/32ec9c1b67aaa024d37d239b3c12aff20cfb21b7e8653307.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/6ff3747df561ee913da049e115b7df06a8e1eaaf3cff6842.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/9b2e0d4a04551aed7f8998c94f668950cb0b3a64de2e7965.mp4\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\"}], \"name\": \"The Crew Motorfest\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"Grand\", \" \", \"Theft\", \" \", \"Auto\", \": The Trilogy \\u2013 The Definitive Edition\"]}, \"id\": \"10003543\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA05804_00-GTATRILOGYBUNDLE\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1516/wrdKtJdru9eE2g6zbP9pnqJS.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition (PS5 & PS4)\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10003543\", \"invariantName\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202210/0609/mU4qUsDI65US6zWh9YyiALAP.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/XZIpMlU1SJxEzfP6zPfDSn16.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/1908/66WgIpQaNGoL2sXlsjiVB370.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1110/Dr2U3bpUIl3Svxu2vPz03KCq.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/ziqcwLldoANt4ZfPRSXGGQuo.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/FkLizaTUlTlwwWeG08yqh8Mq.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/CpQeUbgAVfijcDlSbDKrFRrt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/inMzuYusf5l050MF9DInAWrM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/VhRmaVLjUZze7GcGQ6H7AM4v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/0915/wMxGpf5mZOSYlx28qXtnjLGU.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0106/9EfOgkd9XN01Hzre1v61y27z.png\"}], \"name\": \"Grand Theft Auto: The Trilogy \\u2013 The Definitive Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10006164\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA36842_00-REDEMPTION000001\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/2b9e0bfa3dcdd7f891a38ee792fd605fb70c74f8fb4d9a1a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/2812/251093b4181e2be7b4ff95a46a5c546e18a922438bbf6813.jpg\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0209/e02c2acc354f7377c8327491ad4527145cf07653d0615545.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"10006164\", \"invariantName\": \"Red Dead Redemption\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202308/1709/1c87373a6b49086767cbe25a7d4bccd2e9c04cbd326b27ae.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/9a93fe7e28b59c2c87fc08e9b8a9e68578cd3f129e6c54ab.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/f6fc45c7b766dafa297a8e9bb57da05357ccfe3f5a6c8f2a.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2614/818450b883ec30c7e67f921cb1952bafafc0233227c90ef2.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0215/5d3791f0977136cb12752c21058ac27f6d78ac63c9ec55c5.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/0ffc78210b8c3db86763841bd30e41da49028147403fb591.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/18c82341259a24872fb1fe84fad0c3ebf3789057c9522068.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/af494c0c2cdb0c3a13b5f19f3a8a16f19bc0823443bfea23.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/4fc7e0944a8e9ff789b4b42a9c0bc1d5b7167443195be9b8.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0717/618a0d6fe12ac1cf80d2c9751c83ea90bdc8fe79b9ab0ac2.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3122/00bd08cf240ede27e4354d3fc7a5b867190df853940366ec.png\"}], \"name\": \"Red Dead Redemption\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"235302\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA18097_00-MAFIAONEREMASTER\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2107/9f044e6d328e539f5ca10c4e5a42cd3d1a74452474dec5cc.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/4j5sLNVteYYG9kw416lUaC3b.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/1SW3oZnzU0WiWybpMK68dQhF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/ASZHtbe8UsTySPXPtPUpAgdL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/AgWIv9NHpkWc1vXdNYuSGI8p.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/3vVJqMeMu3hOZ8SgUzdhvNwv.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/g4ytpjOqPv6nA7MjGhfsNi8v.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RW5MpnR7eSpzVBCMUNDYCI95.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/WOmG71rm0RUwLDlGllpBF2oP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/RdVVSxgIPGhL2e68NbTclToL.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/H9SYmRDM9RxcrHQZd8peW0Y6.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/gdKI3z3TFDczZjryvql1sqwB.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/xtFBi7yPp0UyxHtugyVznfwK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/yX7judkh9w0ZkUbyQamt9NhJ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"235302\", \"invariantName\": \"Mafia: Definitive Edition\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/zqKtuo708PVfe00zPXlyaixZ.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/YKUKZMG05N7h4NWApBUV0wpY.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1023/35jaBRLW6kV4wfF3bi0nxRIH.png\"}], \"name\": \"Mafia: Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"234567\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03974_00-0000000000000CP1\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202202/1613/QkMuinH2s6kopjYfr58SIgxy.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202209/0616/zHOn419RbpUBh67KAduKWSCz.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/7b17b9b6d130b7a9e6bdb740f28bb8c48974d33921dbc741.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/9cc6e679ba3231244b67bb57d498437bb628013f6da66e72.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/3fb07ed7e17707ac596c5253ba35813db3afa8066adc7cfa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202310/2414/72d8170a4c5fef68ec5a78d14e87e7a9965efc6d4e596384.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/0610/838a126a8a904f03492b9973168e710c3004280ad83ee324.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202311/2213/a11eb183471c0bb0bfc3b59ba0c76849301f017fdc888fa2.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202312/0713/a5ecfca3d1522f30b568054106e6a09fb59d5516f2c04b4d.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1015/blUvStfX95h8t5S4aO3pwebk.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/bxSj4jO0KBqUgAbH3zuNjCje.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/UjQ1pWQiHwymgQQ6q4pWQkMC.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0913/qgDbP1DMWVHuBJTj7bHIkPJU.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/4afa4359de58e6c1fe2509b0bf19c3dded734f5d9f7be0ed.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/91e6bfb46391e31be9f72773c41f260d6e5b8bcd95bb15c9.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1712/a78f616bbf7a7e7617dade905c1c996579b8efcd68680e93.jpeg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/cKZ4tKNFj9C00giTzYtH8PF1.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"234567\", \"invariantName\": \"Cyberpunk 2077\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0315/c0oODh1ZVMGnVti4A2wm5ZQn.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202012/0820/3CFnppXls8PiPY1VwfTtcaiq.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/Sj24JLaappdxS43qfqMsaucB.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/kZ6i1bHmmEf6xZlx7dt17YqM.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202106/1413/OcOsbgVpypYIZ1M0uXwIpMge.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0608/7rHcPDgdIe4B0cystJ5pVf73.png\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/2tW2zf7n8wwwWXZO9dAQMVu5.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/a1krxU0VRlOC3ULeUjeFGEcA.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/ldpHpmae9XSwRe3BsItDlDty.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/DA5ATxBtFgdpNev4qxmCM9PO.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/3013/6bAF2VVEamgKclalI0oBnoAe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/1IsdhYkL04bOKIx7YrntiJM0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/To8WFTjfrMQtrX63D0GoCNRj.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/SWnz126faKV0CbPOVzCk2R3M.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/cEaFSSbQCTgZsNJf0ckbN2fG.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/PT2qWfNzcGncIlTB0SlzFYY9.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/TFYFeWpzczM8OD0NH4VeqfWT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/M3epuOiFxwBW8g3p8JQzUgwr.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/3XOeBDOHYRcdv2y0m1EeWS70.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1514/pSZ3EObiJxWTIUN7ICFk7ASb.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1517/UyPJCxbE3EoeLtUxjoFBnsD4.png\"}], \"name\": \"Cyberpunk 2077\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201511\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1003-PPSA09016_00-FALLOUT4FULLGAME\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/EP1003/CUSA03450_00/aZMNg1wgxpBR8GOjk3ZlGwNrPwVW0xx7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2502/rB3GRFvdPmaALiGt89ysflQ4.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA02557_00/j4PdxSxO3optsrP1SxnAqdq6qCmYPd9x.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201511\", \"invariantName\": \"Fallout 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2418/d35035077f6e8633b4163b9e5ca02b679919d4729a108936.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/531df66c95a7a98005322beca4bc7a5b0bf2d84f16ea2633.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/25e62a5df64f77eb7c4c0bf518fcc5855ea41cb5fd6da1fa.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202404/2501/b9176e2ca18d13091d2f9c444358addc12eabfb425bd2ec4.mp4\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/4GZyUQ1bHTjICP6GCRG7f65n.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/lFmwpBg2muGrOa4DwRCD6KZa.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/01clRN6ENI0ULgJK5dpcm2Ox.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2500/D59jxQR99Jg545NKa4Nu1FmP.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTYiVZLQerWBq3cTbIw7M8/PREVIEW_SCREENSHOT10_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTpJhCcQfbq2nqLg4oiugQ/PREVIEW_SCREENSHOT9_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTjEZUIxtEmVmBHb4NCc04/PREVIEW_SCREENSHOT8_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTz1kyN0aqz76QXP8jyYbX/PREVIEW_SCREENSHOT7_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTsEpzOFXsgkfeKP4U0RhH/PREVIEW_SCREENSHOT6_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTK8ECFTqrmSqP0FTtUymv/PREVIEW_SCREENSHOT5_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTlIBkyGeqHBS6keOz1peS/PREVIEW_SCREENSHOT4_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTZVM97xTD5ko9yLjTMfp1/PREVIEW_SCREENSHOT3_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTPX8qbPPH49nYDSLLsHVv/PREVIEW_SCREENSHOT2_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP1003/CUSA03448_00/FREE_CONTENTB7Tpcwbk13JqPVB8noDi/PREVIEW_SCREENSHOT1_93381.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/2419/BWMVfyxONkIAlAJVQd96qPuN.png\"}], \"name\": \"Fallout 4\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"216759\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA04459_00-WD2FULLGAME00000\", \"invariantName\": \"Watch Dogs 2\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/iNzPJJFsmRibhTqimmuzEEs2A0tpxXfS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTdhDcXCVO7wJKPXGSeBn7/PREVIEW_SCREENSHOT1_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENToeMJklltpe0m3WcySNnS/PREVIEW_SCREENSHOT2_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTZrmPB60cRrjCVzU70r37/PREVIEW_SCREENSHOT3_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTIPO1N8cV0o6ynLlGzikJ/PREVIEW_SCREENSHOT4_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTz4CeEOPWHRdDuCi0u9GM/PREVIEW_SCREENSHOT5_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTcQCdyMTRpDFnxlNKjtdD/PREVIEW_SCREENSHOT6_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTE7T6ThJUn3dkopMws6Vr/PREVIEW_SCREENSHOT7_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTEJVP2qEHxhznyys4kQT6/PREVIEW_SCREENSHOT8_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/FREE_CONTENTiioJVjboYaO9MTWkpkyg/PREVIEW_SCREENSHOT9_116605.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"Watch Dogs 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"216759\", \"invariantName\": \"WATCH_DOGS\\u00ae 2\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/8027gzUNUKdpdqHy6s016ewt.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0900/UrCud0VEfyA0osjZ8HZviH4A.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA04459_00/qBxvfDJJ9dbavai6xsWOcWaxRDGRb7h0.png\"}], \"name\": \"WATCH_DOGS\\u00ae 2\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10008649\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP1001-CUSA03652_00-MAFIATRILOGYDEFI\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Game Bundle\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202408/2015/66870e3605f0a6f04df0463486470874ac25b9acd600d8d8.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/xvnhK1X1LkQPaUGXMyZerqbO.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/tfRvV3kZZMQM6ktXsJInnc43.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/qxLDgZUFz8EaIYtzbrSNdoiP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/GaYrunFJCzGUPia3zqBW6b25.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2422/b1e4c43596c5fdd8e55ae1f766272dacf6b6d336de553096.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/woNOhynm6JWwEbiQM8SojXoQ.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v_DELneIPKXG1X5jZCrpOoAkqy6ZtvbdlL_2LSQ2EFQnBI-tMclplzrN6xK_bsybsiIvRfKwtppLM9nReXw850eBAfd.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lGgeIuBQVvZC-ZOUYeh7eirf-PzF8Fx5Mu4cYP4MLWkDDUCUZor8s1b8y468KwGZKz-wuZRmdb-fm9EojuMMNwYw9SF.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307_UCxK_wszrInoT9c1mcSIi9yqwvXnl5eprDAnPz3UoYE_yWsbSQlkJoK9lElhyfCuJwJy3UNyxppGhKLDoPykoDfCfV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307K2A9XDoJCj5gRTpNtl3UATTGC6RmuzHs1nIYuI851G4uV8SfVno_7bDko5nIglhLEcVnKh2quq_oJmKcbKxU4EHe5IY.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wUOJ_BHRdiWDgL6chXdLfcypycnBZn9YCDycTI6oSG8CaV8Uvbh0DBa2JtqwNny3ZkjpqmDmEd_slKOULq07hMTR49T.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307v5q4pDuxk81Qtk_Piffb_7OxCSz6G6ICzfjze83msA0N4Mkj_YugFjnMY9Jom39q8sj94XwETlFBiKsdfXq4SwKpRPk.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307wg6Sqg9XfvGGrim9LU0zTf-XWZ1BwGzozZWIzlbfANkQPrJ-KBMym1P-s5W9MH1uxk9GZ5nrhM8vPhhYwAMrWgWQ2Ly.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113079-ZhinbOWWymvjNQRZBd9hKgSqEQyowVpeI0AIBFrRkLuDZRM95JYLNtU9abOEcxpOJHLiRGaQoxm4334BL02c11r0U.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076jJTeKjc9jEYf0PnO58rk-UZ-sg6G5SYBWD0OBWUt-kY8R_fKLsIyxBveHPzlp3JwA2JNrirLh-16W-FGyF5-owYmNP.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0902/7CAOfTFXzgypO4TWHnWtQstC.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"GAME_BUNDLE\", \"type\": \"GAME\"}, \"id\": \"10008649\", \"invariantName\": \"Mafia: Trilogy\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/8f1bb734cd760d57b4a7054d0c49ee1263bfc1a73f267e51.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1422/cc8f9a5fea22800aaeed6c8b38032fcc94ab2c0c57a6746e.png\"}], \"name\": \"Mafia: Trilogy\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"231844\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0082-CUSA10938_00-DEFINITIVE00SIEA\", \"invariantName\": \"Shadow of the Tomb Raider Definitive Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/cfn/11307dK21b0mNOkOhnHW3lKVRuib4EaNWuCmXtt0wMdKVAlE7sYUbD6YOcpgSFImpnxjg--_1p1RgWHadbDnNHpRhzMf28SD.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yguQQ6t1hWTw0aaf_7mI7PLV0nuWRTzhfCFd9HG2abU6IHxZhrfzdlQcpK6lSyaBn9BTv3t_KcD_KgX-H3BNTcbKk0j.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307obn0reFe1U4gMc6b1pGe29vUWBAwdA8-rwjTkBN9iSwdc4rU6hpu5QI4ZXkrja75v0RAOXR1bNsTAg1jbb-3AgvCc1Y.png\"}], \"name\": \"Shadow of the Tomb Raider Definitive Edition\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"231844\", \"invariantName\": \"Shadow of the Tomb Raider\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/JMUrhnDCKHirq6XLl4KN9R2e.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0823/zv8GX4HceMxPzo8E8TK8ghPr.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10872_00/6/i_bf48f37e880368d90e7d619b254088edb96086a63ce0554a1c227701e6e5f357/i/icon0.png\"}], \"name\": \"Shadow of the Tomb Raider\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"204794\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP4497-PPSA03972_00-00000000000GOTY7\", \"invariantName\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202301/2800/iVue7C5G9BCBeiREDJTxjqch.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/hfxDHG9zRcCC7JcviyqgqGUc.png\"}, {\"__typename\": \"Media\", \"role\": \"EDITION_KEY_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/9uU0gBq02jmXHtDsm82AV722.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0814/3w3HeyHIT2CKQYS2ODdCwl3j.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0807/IqM9JK6MTlSfKFfJbpO8Mclr.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/GFZJ6WOXRnpH9NxaIcsninch.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/ojKZ7l0T2M5egR9YHIjVhI0R.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/5DSZkROrbrlYN2PXGfDGedeM.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/iFujqkGQJZKBGjpw1kgAkjWe.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/mfy0530smBKbptFC5oEIaEyi.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/KXwbvKMxbPIfDFd7Eiy0w3nA.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/yQIZsOItt4MrBWuR8Gs1RatV.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0714/S1jCzktWD7XJSRkz4kNYNVM0.png\"}], \"name\": \"The Witcher 3: Wild Hunt \\u2013 Complete Edition\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"204794\", \"invariantName\": \"The Witcher 3: Wild Hunt\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202009/3015/C7oqKI8ckegDhbN4ZvzKkbL6.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202212/0711/mobDZZoc88r1UjQHzRWFU4so.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND_LAYER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/f0gDxISdUwVkHgPuAulWNMF7.jpg\"}, {\"__typename\": \"Media\", \"role\": \"FOUR_BY_THREE_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0712/TJdORs7iyJT91csQVdw7JawD.png\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/IW5r8hLVZzf0ApOyiOuRnKUe.png\"}, {\"__typename\": \"Media\", \"role\": \"HERO_CHARACTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1415/ZNLQs42V6wLVjXSWVr1lIZjU.png\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0815/lkDQobVNPwh8PQKLmccBgCul.png\"}, {\"__typename\": \"Media\", \"role\": \"PORTRAIT_BANNER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0711/qezXTVn1ExqBjVjR5Ipm97IK.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTW3Xfg51LrGZa3riw7ss1/PREVIEW_SCREENSHOT1_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTwWYvhprSG4ZS0frKN2Z3/PREVIEW_SCREENSHOT2_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT5M5PkgpZqQASi2R1eVYj/PREVIEW_SCREENSHOT3_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTlEaxiV5us5kzpwPbcRmD/PREVIEW_SCREENSHOT5_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTALDIrlRJXdgo0XMj7feB/PREVIEW_SCREENSHOT6_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTAf8dzlbHghZ3OiURBY6r/PREVIEW_SCREENSHOT7_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTH5HqSMnkAu9A77BEAJaB/PREVIEW_SCREENSHOT8_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENTmOfbRyxfMHHkh8ziATkX/PREVIEW_SCREENSHOT9_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP4497/CUSA00527_00/FREE_CONTENT2gCDlDVuLKhhHzYx0i6l/PREVIEW_SCREENSHOT10_68724.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1412/5YlA3POEEpaAJsUq3eg6U8d6.png\"}], \"name\": \"The Witcher 3: Wild Hunt\", \"platforms\": [\"PS4\", \"PS5\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"201624\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA00496_00-FC4GAMEPS4000001\", \"invariantName\": \"Far Cry\\u00ae 4 \", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA00496_00/FREE_CONTENTFhrqenkhhwfgnWQjeQ53/PREVIEW_GAMEPLAY_VIDEO_54899.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTlpIzm82yTvTdwdGPtqAz/PREVIEW_SCREENSHOT1_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTwWvRELkeqHqDRR1EKL2b/PREVIEW_SCREENSHOT2_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTRVNZKWvZqfok5tgmPUbL/PREVIEW_SCREENSHOT3_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTFdMmD7JGH07tnYxLaaX5/PREVIEW_SCREENSHOT4_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTNVH9yitmwynPSQQJ3UVx/PREVIEW_SCREENSHOT5_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTqHTkr1D3fwCHLjwT9g4y/PREVIEW_SCREENSHOT6_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTZp1xxdLpiugdYD7RNpcl/PREVIEW_SCREENSHOT7_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTctokfb7px9MSGML3U7Bv/PREVIEW_SCREENSHOT8_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTtntLWJIsbHmPiDlVZJWo/PREVIEW_SCREENSHOT9_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA00496_00/FREE_CONTENTbb0upXXLoEmzs0jnoIbn/PREVIEW_SCREENSHOT10_54899.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076px2b27B2ofcw5IzONcQEr6vlx2oSWvfJEutr9o7jAcP9vbVFjtbYjYoX2MOkkuepqwRRkk8Krf08MR2BKeTPw-FyY7.png\"}], \"name\": \"Far Cry\\u00ae 4 \", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"201624\", \"invariantName\": \"Far Cry\\u00ae 4\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/TPknlBAbAXGaQWcyi6YCKjCS.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/1223/BcpetJKXXlV0Q1zPFxm4wxvv.png\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA00462_00/3/i_f949708af1851db4e2c353b5ae0f577e3fad30658f8381b0485267663aac769a/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae 4\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"232910\", \"result\": {\"__typename\": \"Concept\", \"defaultProduct\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA13917_00-FARCRYBOWMORE000\", \"invariantName\": \"Far Cry New Dawn\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Full Game\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTgk0YjFLR6PSEfEmwMhfj/PREVIEW_GAMEPLAY_VIDEO_3_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTy5qV3T2mjK0leCFrnCJJ/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENTcKttW4m7XG6LglaCV8ys/PREVIEW_TRAILER_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://apollo2.dl.playstation.net/cdn/UP0001/CUSA13917_00/FREE_CONTENT3qNAmCkb6Yl0DlTvq1Zv/PREVIEW_GAMEPLAY_VIDEO_172163.mp4\"}, {\"__typename\": \"Media\", \"role\": \"BACKGROUND\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/sNDjQiQyp8AdPs01veCWou82dtgGbkel.jpg\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTWdmo5IAfLECuRObM2Hmo/PREVIEW_SCREENSHOT2_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTvVpqmmAFc8kDa7PDLqNs/PREVIEW_SCREENSHOT3_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTpY3FkwH4BCJNR6v870Yy/PREVIEW_SCREENSHOT4_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTaMK6decUAgo79s2CEczj/PREVIEW_SCREENSHOT5_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENThbbHoW4QlYG4pUcCeDaC/PREVIEW_SCREENSHOT6_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENT6ZU66cqxwDUanSMeX7dF/PREVIEW_SCREENSHOT7_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/FREE_CONTENTwGvbDRrrk9B01aa1Ut90/PREVIEW_SCREENSHOT8_172163.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/cdn/UP0001/CUSA13917_00/s2paV3Q5VGXYcup1gmnVzD0rmGWMeyfd.png\"}], \"name\": \"Far Cry New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": \"FULL_GAME\", \"type\": \"GAME\"}, \"id\": \"232910\", \"invariantName\": \"Far Cry\\u00ae New Dawn\", \"itemType\": \"CONCEPT\", \"localizedStoreDisplayClassification\": null, \"media\": [{\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/3023/QkbjWApRpaqJ75GrMRENY94N.jpg\"}, {\"__typename\": \"Media\", \"role\": \"LOGO\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0101/rFmWJbf7mmZaNma49joz6cOe.png\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/eeXmyH6hbDDbs9s5H9U8dY7s.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/fHSgavQrGBp2OfmyVPxUnqCT.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0ulqqz3BJMI1iJGNeNhWHVcC.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/0100/0iWiLD8mzYEu5pOhlwW7TeFK.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA13885_00/2/i_26f5de10bfd55ff9d0bbbb6f253ef91fa6cb93dad780eb8a2f002aa3f6e9e5a0/i/icon0.png\"}], \"name\": \"Far Cry\\u00ae New Dawn\", \"platforms\": [\"PS4\"], \"price\": null, \"storeDisplayClassification\": null}}], \"totalResultCount\": 44, \"zeroState\": false}, {\"__typename\": \"UniversalDomainSearchResponse\", \"domain\": \"MobileAddOns\", \"domainTitle\": \"Add-Ons\", \"next\": \"CA8aVgokMWFiM2MzZDA1NTk2NDhjMGFlYTEwYmI5N2IxYTRmN2QtNDAwEi5zZWFyY2gtcmVsZXZhbmN5LXByb2R1Y3RzLW9ubHktdG9wSy1wcm9kLWFzdHJhIh5zZWFyY2gubm9fZXhwZXJpbWVudC5ub24uMC5ub24qBC0yMjk\", \"searchResults\": [{\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS4\", \"invariantName\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2212/5gsmzZtUMx8TQaHq4qfMTIeV.png\"}], \"name\": \"GTA+: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK4\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK5\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS3\", \"invariantName\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2210/u6euQVAo4Y0Ncvr1jRvMYUqG.png\"}], \"name\": \"GTA+: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS2\", \"invariantName\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2114/xZp4YToUlDwGYWizgWBeuXVJ.png\"}], \"name\": \"GTA+: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK2\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK6\", \"invariantName\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3014/02fdzuH7Le5BqAkpgxq9bigV.png\"}], \"name\": \"GTA Online: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Great White Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000D\", \"invariantName\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ESUixdrU55EHr7wbf5eOz8oo.png\"}], \"name\": \"GTA Online: Great White Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000C\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": null}, \"id\": \"10002313:UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP0001-CUSA26571_00-TCMYEAR1PASS2023\", \"invariantName\": \"The Crew Motorfest | Year 1 Pass\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Season Pass\", \"media\": [{\"__typename\": \"Media\", \"role\": \"PREVIEW\", \"type\": \"VIDEO\", \"url\": \"https://vulcan.dl.playstation.net/img/rnd/202309/1100/10d2b1e9ebfaa386f8d9ea37d42ebd409b76e5f8925b37ed.mp4\"}, {\"__typename\": \"Media\", \"role\": \"GAMEHUB_COVER_ART\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/1469ba301ac835323dde04ead8d5bffed5b7127fc5d3d437.jpg\"}, {\"__typename\": \"Media\", \"role\": \"SCREENSHOT\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1213/4f1947ca59705da7b87d28418cb023d3ede5a5809514f8e0.jpg\"}, {\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2121/e54f502c99bfe3f7b9cfdee64b6fa4c36e2c583d4915e571.png\"}], \"name\": \"The Crew Motorfest | Year 1 Pass\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"SEASON_PASS\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Megalodon Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS6\", \"invariantName\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2214/OAbUaH2NiljOtQVBBZbZJ1Xe.png\"}], \"name\": \"GTA+: Megalodon Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \"+: Whale Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPLUS5\", \"invariantName\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2213/j4O8eGplFfd7KuRXXI94YojJ.png\"}], \"name\": \"GTA+: Whale Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Tiger Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000B\", \"invariantName\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2111/Sra6i7L4DNQsAGVESNfe0joK.png\"}], \"name\": \"GTA Online: Tiger Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Bull Shark Cash Card (PS5\\u2122)\"]}, \"id\": \"201930:UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-PPSA03420_00-GTAVPS5CASHPACK3\", \"invariantName\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2112/ooR4gmo8ZPfkshgzKbOAE2LA.png\"}], \"name\": \"GTA Online: Bull Shark Cash Card (PS5\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}, {\"__typename\": \"SearchResultItem\", \"highlight\": {\"__typename\": \"ItemHighlight\", \"name\": [\"\", \"GTA\", \" Online: Whale Shark Cash Card (PS4\\u2122)\"]}, \"id\": \"201930:UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"result\": {\"__typename\": \"Product\", \"id\": \"UP1004-CUSA00419_00-GTAVCASHPACK000E\", \"invariantName\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"itemType\": \"CONCEPTPRODUCT\", \"localizedStoreDisplayClassification\": \"Virtual Currency\", \"media\": [{\"__typename\": \"Media\", \"role\": \"MASTER\", \"type\": \"IMAGE\", \"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2113/KWIceZ5B4v0Sfeqm1IskXQmu.png\"}], \"name\": \"GTA Online: Whale Shark Cash Card (PS4\\u2122)\", \"platforms\": [], \"price\": null, \"storeDisplayClassification\": \"VIRTUAL_CURRENCY\", \"type\": \"GAME\"}}], \"totalResultCount\": 17, \"zeroState\": false}]}}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json index 821a7bb..18d9993 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__accept_friend_request.json @@ -36,37 +36,37 @@ "message": "No Content" }, "headers": { - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Connection": [ - "keep-alive" - ], "Cache-Control": [ "private" ], + "Date": [ + "Sun, 12 Jan 2025 03:18:41 GMT" + ], "Server": [ "Apache" ], - "Date": [ - "Sat, 13 Jul 2024 07:42:44 GMT" - ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + ], "X-Content-Type-Options": [ "nosniff" ], + "Access-Control-Allow-Origin": [ + "*" + ], "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", "X-Psn-Track-Id": [ - "0014440219577960558" - ] + "0772320178847275269" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json index 37a132b..15aad53 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__friendship.json @@ -33,26 +33,14 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "101" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,19 +48,31 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:31 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0187696571875286143" + "Content-Length": [ + "101" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0287059861605998375" ] }, "body": { - "string": "{\"friendRelation\": \"no-friend\", \"personalDetailSharing\": \"none\", \"friendsCount\": 0, \"mutualFriendsCount\": 0}" + "string": "{\"friendRelation\": \"requested\", \"personalDetailSharing\": \"none\", \"friendsCount\": 0, \"mutualFriendsCount\": 0}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json index 3eacf9f..efba0a3 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends.json @@ -33,26 +33,14 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "33" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,15 +48,27 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:31 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0647920240064036296" + "Content-Length": [ + "33" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0164141993484115919" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json index 1beb52a..2789885 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_friends_forbidden.json @@ -33,26 +33,14 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "123" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,19 +48,31 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:31 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0741914372738003208" + "Content-Length": [ + "123" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0570246400987643638" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"177798d2-2c34-11ef-a77e-9ff7b346a20f\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"ecfeb563-d093-11ef-9c6c-759277bf2dbc\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json index e23924a..eb86abb 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence.json @@ -33,26 +33,14 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "97" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:40 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,15 +48,27 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:30 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0817757008443281123" + "Content-Length": [ + "97" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0282246765665200564" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json index b717fa5..585791f 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_presence_forbidden.json @@ -33,26 +33,14 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "123" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:41 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,19 +48,31 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:30 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0576731203570091827" + "Content-Length": [ + "123" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0548964453661501640" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"16ec9664-2c34-11ef-a1e1-fd622ac0dc56\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"ec128001-d093-11ef-a693-91eb877f80a5\", \"code\": 2281486, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json index 6566e4a..0927843 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_profile.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "77" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:18:39 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:29 GMT" + "Content-Length": [ + "77" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,26 +102,14 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "606" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -132,15 +117,27 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:30 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0845301707383283354" + "Content-Length": [ + "606" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0998905755951815617" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_region.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_region.json new file mode 100644 index 0000000..306de76 --- /dev/null +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__get_region.json @@ -0,0 +1,326 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" + ] + } + }, + "response": { + "status": { + "code": 302, + "message": "Moved Temporarily" + }, + "headers": { + "X-RequestId": [ + "2afb8659d19bcd1291b3051c5b5f852b" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Set-Cookie": "REDACTED", + "Connection": [ + "keep-alive" + ], + "X-Psn-Request-Id": [ + "2afb8659d19bcd1291b3051c5b5f852b" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "Server": [ + "nginx" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.tHgMdp&cid=00000000-0000-0000-0000-b025aa3b2674" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:02 GMT" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Frame-Options": [ + "DENY" + ], + "Expires": [ + "0" + ], + "Content-Length": [ + "0" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-XSS-Protection": [ + "1; mode=block" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-RequestId": [ + "8a5c3037b64d114b2af89ac48d0e2a47" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "Connection": [ + "keep-alive" + ], + "X-Psn-Request-Id": [ + "8a5c3037b64d114b2af89ac48d0e2a47" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:03 GMT" + ], + "Cache-Control": [ + "no-store" + ], + "Content-Length": [ + "4010" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/VaultTec_Trading/profile2?fields=accountId%2ConlineId%2CcurrentOnlineId", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, OPTIONS" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Type": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:03 GMT" + ], + "Cache-Control": [ + "no-store" + ], + "Content-Length": [ + "77" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"profile\": {\"onlineId\": \"VaultTec_Trading\", \"accountId\": \"8520698476712646544\"}}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/VaultTec_Trading/profile2?fields=npId%2ConlineId%2CaccountId%2CavatarUrls%2Cplus%2CaboutMe%2ClanguagesUsed%2CtrophySummary%28%40default%2Clevel%2Cprogress%2CearnedTrophies%29%2CisOfficiallyVerified%2CpersonalDetail%28%40default%2CprofilePictureUrls%29%2CpersonalDetailSharing%2CpersonalDetailSharingRequestMessageFlag%2CprimaryOnlineStatus%2Cpresences%28%40default%2C%40titleInfo%2Cplatform%2ClastOnlineDate%2ChasBroadcastData%29%2CrequestMessageFlag%2Cblocking%2CfriendRelation%2Cfollowing%2CconsoleAvailability", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Methods": [ + "GET, PUT, POST, DELETE, OPTIONS" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Type": [ + "application/json" + ], + "Connection": [ + "keep-alive" + ], + "Server": [ + "Apache" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + ], + "Date": [ + "Sun, 12 Jan 2025 03:23:03 GMT" + ], + "Cache-Control": [ + "no-store" + ], + "Content-Length": [ + "617" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"profile\": {\"onlineId\": \"VaultTec_Trading\", \"accountId\": \"8520698476712646544\", \"npId\": \"VmF1bHRUZWNfVHJhZGluZ0BiNi51cw==\", \"avatarUrls\": [{\"size\": \"l\", \"avatarUrl\": \"http://static-resource.np.community.playstation.net/avatar/default/DefaultAvatar.png\"}], \"plus\": 0, \"aboutMe\": \"r/Fallout76Marketplace Moderator\", \"languagesUsed\": [\"en\"], \"trophySummary\": {\"level\": 1, \"progress\": 0, \"earnedTrophies\": {\"platinum\": 0, \"gold\": 0, \"silver\": 0, \"bronze\": 0}}, \"isOfficiallyVerified\": false, \"personalDetailSharing\": \"no\", \"personalDetailSharingRequestMessageFlag\": false, \"friendRelation\": \"no\", \"requestMessageFlag\": false, \"blocking\": false, \"following\": false}}" + } + } + } + ] +} diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json index 983c9c7..f5b273b 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__is_blocked.json @@ -33,26 +33,14 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "16" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:42 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,15 +48,27 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:31 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0420393315428615276" + "Content-Length": [ + "16" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0973694289627913206" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json index 32a0485..05d48c1 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__prev_online_id.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "105" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:18:38 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:28 GMT" + "Content-Length": [ + "105" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json index 112c423..74cf40f 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__remove_friend.json @@ -36,37 +36,37 @@ "message": "No Content" }, "headers": { - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Connection": [ - "keep-alive" - ], "Cache-Control": [ "private" ], + "Date": [ + "Sun, 12 Jan 2025 03:18:42 GMT" + ], "Server": [ "Apache" ], - "Date": [ - "Sat, 13 Jul 2024 07:42:44 GMT" - ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + ], "X-Content-Type-Options": [ "nosniff" ], + "Access-Control-Allow-Origin": [ + "*" + ], "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], - "Set-Cookie": "REDACTED", "X-Psn-Track-Id": [ - "0380588015907686754" - ] + "0721827968730858957" + ], + "Set-Cookie": "REDACTED" }, "body": { "string": "" diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json index 0b1e87c..992d8f9 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats.json @@ -33,51 +33,51 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:09 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive" ], "X-Psn-Request-Id": [ - "53a3c1c8-83f5-1031-ad5f-e294c563f466" + "83f775ad-94d1-1031-a2e5-5826db577e13" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "53a3c1c8-83f5-1031-ad5e-e294c563f466" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "83f775ad-94d1-1031-a2e4-5826db577e13" ], "Content-Length": [ "69" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Access-Control-Max-Age": [ + "3600" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Sun, 12 Jan 2025 03:19:09 GMT" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:00 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:00 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json index 4863dfb..66cb2ae 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_jump.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "69" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:15 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:05 GMT" + "Content-Length": [ + "69" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,55 +102,55 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:16 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive" ], "X-Psn-Request-Id": [ - "c55b7cae-83f4-1031-af4b-d226387132ff" + "eb6798bf-94bd-1031-8f73-26b3a4ed2a6d" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "c55b7cae-83f4-1031-af4a-d226387132ff" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "eb6798bf-94bd-1031-8f72-26b3a4ed2a6d" ], "Content-Length": [ - "51489" + "49479" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Access-Control-Max-Age": [ + "3600" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Sun, 12 Jan 2025 03:19:16 GMT" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:06 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:06 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 70, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-06-15T15:07:56.880000Z\", \"playDuration\": \"PT156H42S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2023-12-23T09:49:57.000000Z\", \"playDuration\": \"PT12H15M53S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}, {\"titleId\": \"CUSA20564_00\", \"name\": \"WE WERE HERE TOGETHER\", \"localizedName\": \"WE WERE HERE TOGETHER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10001202, \"titleIds\": [\"CUSA28546_00\", \"CUSA25209_00\", \"CUSA28545_00\", \"CUSA20564_00\", \"CUSA25073_00\", \"CUSA25208_00\", \"CUSA25837_00\", \"CUSA25838_00\"], \"name\": \"WE WERE HERE TOGETHER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOGETHER\", \"uk-UA\": \"WE WERE HERE TOGETHER\", \"de-DE\": \"WE WERE HERE TOGETHER\", \"en-US\": \"WE WERE HERE TOGETHER\", \"ko-KR\": \"WE WERE HERE TOGETHER\", \"pt-BR\": \"WE WERE HERE TOGETHER\", \"es-ES\": \"WE WERE HERE TOGETHER\", \"ar-AE\": \"WE WERE HERE TOGETHER\", \"no-NO\": \"WE WERE HERE TOGETHER\", \"fr-CA\": \"WE WERE HERE TOGETHER\", \"it-IT\": \"WE WERE HERE TOGETHER\", \"pl-PL\": \"WE WERE HERE TOGETHER\", \"ru-RU\": \"WE WERE HERE TOGETHER\", \"zh-Hans\": \"WE WERE HERE TOGETHER\", \"nl-NL\": \"WE WERE HERE TOGETHER\", \"pt-PT\": \"WE WERE HERE TOGETHER\", \"zh-Hant\": \"WE WERE HERE TOGETHER\", \"sv-SE\": \"WE WERE HERE TOGETHER\", \"da-DK\": \"WE WERE HERE TOGETHER\", \"tr-TR\": \"WE WERE HERE TOGETHER\", \"fr-FR\": \"WE WERE HERE TOGETHER\", \"en-GB\": \"WE WERE HERE TOGETHER\", \"es-419\": \"WE WERE HERE TOGETHER\", \"ja-JP\": \"WE WERE HERE TOGETHER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T14:20:17.060000Z\", \"lastPlayedDateTime\": \"2023-10-17T02:45:37.970000Z\", \"playDuration\": \"PT2H40M1S\"}, {\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}], \"nextOffset\": 10, \"previousOffset\": 0, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 111, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"419\", \"language\": \"es\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T13:45:37.610000Z\", \"playDuration\": \"PT213H54M25S\"}, {\"titleId\": \"CUSA03105_00\", \"name\": \"GOD EATER RESURRECTION\", \"localizedName\": \"GOD EATER RESURRECTION\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 201731, \"titleIds\": [\"CUSA03105_00\", \"CUSA03369_00\", \"CUSA03703_00\", \"CUSA03525_00\", \"CUSA03409_00\", \"CUSA03592_00\", \"PCSB00875_00\"], \"name\": \"GOD EATER RESURRECTION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GOD EATER RESURRECTION\", \"uk-UA\": \"GOD EATER RESURRECTION\", \"de-DE\": \"GOD EATER RESURRECTION\", \"en-US\": \"GOD EATER RESURRECTION\", \"ko-KR\": \"GOD EATER RESURRECTION\", \"pt-BR\": \"GOD EATER RESURRECTION\", \"es-ES\": \"GOD EATER RESURRECTION\", \"ar-AE\": \"GOD EATER RESURRECTION\", \"no-NO\": \"GOD EATER RESURRECTION\", \"fr-CA\": \"GOD EATER RESURRECTION\", \"it-IT\": \"GOD EATER RESURRECTION\", \"pl-PL\": \"GOD EATER RESURRECTION\", \"ru-RU\": \"GOD EATER RESURRECTION\", \"zh-Hans\": \"GOD EATER RESURRECTION\", \"nl-NL\": \"GOD EATER RESURRECTION\", \"pt-PT\": \"GOD EATER RESURRECTION\", \"zh-Hant\": \"GOD EATER RESURRECTION\", \"sv-SE\": \"GOD EATER RESURRECTION\", \"da-DK\": \"GOD EATER RESURRECTION\", \"tr-TR\": \"GOD EATER RESURRECTION\", \"fr-FR\": \"GOD EATER RESURRECTION\", \"en-GB\": \"GOD EATER RESURRECTION\", \"es-419\": \"GOD EATER RESURRECTION\", \"ja-JP\": \"GOD EATER RESURRECTION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2016-06-23T12:56:47.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T12:27:25.460000Z\", \"playDuration\": \"PT6H27M47S\"}, {\"titleId\": \"PPSA20676_00\", \"name\": \"VALORANT\", \"localizedName\": \"VALORANT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10010048, \"titleIds\": [\"PPSA20676_00\", \"PPSA20711_00\"], \"name\": \"VALORANT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"VALORANT\", \"uk-UA\": \"VALORANT\", \"de-DE\": \"VALORANT\", \"en-US\": \"VALORANT\", \"ko-KR\": \"\\ubc1c\\ub85c\\ub780\\ud2b8\", \"pt-BR\": \"VALORANT\", \"es-ES\": \"VALORANT\", \"ar-AE\": \"VALORANT\", \"no-NO\": \"VALORANT\", \"fr-CA\": \"VALORANT\", \"it-IT\": \"VALORANT\", \"pl-PL\": \"VALORANT\", \"ru-RU\": \"VALORANT\", \"zh-Hans\": \"VALORANT\", \"nl-NL\": \"VALORANT\", \"pt-PT\": \"VALORANT\", \"zh-Hant\": \"\\u300a\\u7279\\u6230\\u82f1\\u8c6a\\u300b\", \"sv-SE\": \"VALORANT\", \"da-DK\": \"VALORANT\", \"tr-TR\": \"VALORANT\", \"fr-FR\": \"VALORANT\", \"en-GB\": \"VALORANT\", \"es-419\": \"VALORANT\", \"ja-JP\": \"VALORANT\"}}, \"country\": \"AE\", \"language\": \"ar\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2024-09-10T10:01:08.080000Z\", \"lastPlayedDateTime\": \"2024-09-10T10:27:07.390000Z\", \"playDuration\": \"PT25M34S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 21, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2024-09-08T14:01:17.230000Z\", \"playDuration\": \"PT14H51M10S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}], \"nextOffset\": 10, \"previousOffset\": 0, \"totalItemCount\": 13573}" } } }, @@ -189,39 +186,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "69" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:16 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:07 GMT" + "Content-Length": [ + "69" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -261,55 +255,55 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:17 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive" ], "X-Psn-Request-Id": [ - "5c886d3f-83e8-1031-8258-7d62a28d774d" + "dfae96e4-9482-1031-95bd-41b5d045ae07" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "5c886d3f-83e8-1031-8257-7d62a28d774d" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "dfae96e4-9482-1031-95bc-41b5d045ae07" ], "Content-Length": [ - "5054" + "6622" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Access-Control-Max-Age": [ + "3600" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Sun, 12 Jan 2025 03:19:17 GMT" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:08 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:08 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}], \"nextOffset\": 10, \"previousOffset\": 8, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}], \"nextOffset\": 10, \"previousOffset\": 8, \"totalItemCount\": 13573}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json index f65fbce..0cc3a21 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__title_stats_with_limit.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "69" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:10 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:00 GMT" + "Content-Length": [ + "69" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,56 +102,56 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:10 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive", "Transfer-Encoding" ], "X-Psn-Request-Id": [ - "531c1665-83eb-1031-8277-b8ac32dd201e" + "da95b6a8-94be-1031-9bd9-617a1cefea14" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "531c1665-83eb-1031-8276-b8ac32dd201e" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "da95b6a8-94be-1031-9bd8-617a1cefea14" ], "Transfer-Encoding": [ "chunked" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Expires": [ + "Sun, 12 Jan 2025 03:19:10 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Max-Age": [ + "3600" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:00 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:00 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 70, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/53aaefeaaefa61eccc2c128b0fad5ddc340e5a0ec50e86e7.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/9a2b5dcac0adfe7a0adb749c988368b765ee7decf19ef6f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c2bd110a78ca99070654069be7e343578d6b0e337f34ff42.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/2926819e74951b0fff19c84946589b07e323da52c1cbf626.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/16bf44d39157cf70d67a10337223ff7e51f5fc686cbd2f1f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/50ebb769ff3b240f620d5f0b67f7a2a33e0ca55d4eab9693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b540d54eca29f9036db4734fb6162697ce5878b621fef842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/de435cbae024f92cebd5fcf6c3a8f1cc2b3436e10c2bcde4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/0c10fda1a5fb6b9c8d584671240e771b71fc41b5d264624c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/c9c89b8c640dcd1e953a96a5389b47a63cc19f3b570ffb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/d8b71660ece8831a64117c19a0b57f16ca71290345971378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1522/b0b76515f9c9a15edc09ab2f5cbcc4c20ef28e7707cd8403.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-06-15T15:07:56.880000Z\", \"playDuration\": \"PT156H42S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/8a2228690d6ffd641a2d3d5012d2d9a00b20f7bc6afda555.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/693419933b166764a1fa09c5da5617dbb4f8fc0a36dc471a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1623/79306939a34230e5a9515b987623371aeaf9d2b3bf14a776.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/9960a3a3660f92ff15c796112fd3844f1c57ac3223d5bc42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a40c02fea23757b801c48969abbeff2e6a4c6ef47d0583a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/ce4ef940b2f69a756d3ea5f448eacdf81133a564d0cf9d9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/93556dd11a79883e93ff99ff9073aeb76433ed4976439c38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/95d5933925267c3aefd9685f2a65df9294acd23c8715f9f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/a3f7899ab08350dfe378450b934cee1058656faa57294ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/b1bb676f68a735740a58506f47973914db06ec1fc5ad4954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/231cde63ab6bc4b661d86ae9429928782fbb4c26db5bf7ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/d52fa323f83476f6f44b3adb27c5138810005dd7a03fb1f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/dbbecb83d71d35fb91e3df6f540cf8e6ac729c59a38a9c62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0919/8bf9c67389324480a3e83d732c9a593513b8e6c73f4d0b76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/0723/46b7158a0cdd76c70dc889e785f7aad8aea96452f23fd016.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2023-12-23T09:49:57.000000Z\", \"playDuration\": \"PT12H15M53S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}, {\"titleId\": \"CUSA20564_00\", \"name\": \"WE WERE HERE TOGETHER\", \"localizedName\": \"WE WERE HERE TOGETHER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10001202, \"titleIds\": [\"CUSA28546_00\", \"CUSA25209_00\", \"CUSA28545_00\", \"CUSA20564_00\", \"CUSA25073_00\", \"CUSA25208_00\", \"CUSA25837_00\", \"CUSA25838_00\"], \"name\": \"WE WERE HERE TOGETHER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOGETHER\", \"uk-UA\": \"WE WERE HERE TOGETHER\", \"de-DE\": \"WE WERE HERE TOGETHER\", \"en-US\": \"WE WERE HERE TOGETHER\", \"ko-KR\": \"WE WERE HERE TOGETHER\", \"pt-BR\": \"WE WERE HERE TOGETHER\", \"es-ES\": \"WE WERE HERE TOGETHER\", \"ar-AE\": \"WE WERE HERE TOGETHER\", \"no-NO\": \"WE WERE HERE TOGETHER\", \"fr-CA\": \"WE WERE HERE TOGETHER\", \"it-IT\": \"WE WERE HERE TOGETHER\", \"pl-PL\": \"WE WERE HERE TOGETHER\", \"ru-RU\": \"WE WERE HERE TOGETHER\", \"zh-Hans\": \"WE WERE HERE TOGETHER\", \"nl-NL\": \"WE WERE HERE TOGETHER\", \"pt-PT\": \"WE WERE HERE TOGETHER\", \"zh-Hant\": \"WE WERE HERE TOGETHER\", \"sv-SE\": \"WE WERE HERE TOGETHER\", \"da-DK\": \"WE WERE HERE TOGETHER\", \"tr-TR\": \"WE WERE HERE TOGETHER\", \"fr-FR\": \"WE WERE HERE TOGETHER\", \"en-GB\": \"WE WERE HERE TOGETHER\", \"es-419\": \"WE WERE HERE TOGETHER\", \"ja-JP\": \"WE WERE HERE TOGETHER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T14:20:17.060000Z\", \"lastPlayedDateTime\": \"2023-10-17T02:45:37.970000Z\", \"playDuration\": \"PT2H40M1S\"}, {\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}, {\"titleId\": \"PPSA01762_00\", \"name\": \"DMM.com\", \"localizedName\": \"DMM.com\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"category\": \"ps5_web_based_media_app\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201149, \"titleIds\": [\"CUSA03302_00\", \"PPSA01762_00\"], \"name\": \"DMM.com\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"DMM.com\", \"en-GB\": \"DMM.com\", \"ja-JP\": \"DMM.com\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-12T08:40:04.430000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:00:22.410000Z\", \"playDuration\": \"PT2H20M16S\"}, {\"titleId\": \"CUSA45152_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:54:43.420000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:58:27.450000Z\", \"playDuration\": \"PT3M40S\"}, {\"titleId\": \"CUSA45153_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:48:11.890000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:54:39.250000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA45151_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:42:13.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:48:07.660000Z\", \"playDuration\": \"PT5M31S\"}, {\"titleId\": \"CUSA45150_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ACTION\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:25:05.410000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:42:03.850000Z\", \"playDuration\": \"PT14M30S\"}, {\"titleId\": \"PPSA16765_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:07:31.450000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:22:57.240000Z\", \"playDuration\": \"PT13M53S\"}, {\"titleId\": \"CUSA43664_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T12:15:00.950000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:07:29.390000Z\", \"playDuration\": \"PT50M18S\"}, {\"titleId\": \"PPSA15830_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:55:32.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T12:14:45.710000Z\", \"playDuration\": \"PT19M\"}, {\"titleId\": \"PPSA15831_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:22:36.780000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:55:30.700000Z\", \"playDuration\": \"PT20M8S\"}, {\"titleId\": \"CUSA42782_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:01:42.610000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:22:34.580000Z\", \"playDuration\": \"PT20M39S\"}, {\"titleId\": \"CUSA42783_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T10:32:05.580000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:01:40.330000Z\", \"playDuration\": \"PT27M20S\"}, {\"titleId\": \"PPSA12613_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:41:02.220000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:42:05.560000Z\", \"playDuration\": \"PT52S\"}, {\"titleId\": \"PPSA12614_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:40:00.840000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:41:00.100000Z\", \"playDuration\": \"PT55S\"}, {\"titleId\": \"CUSA39570_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:38:40.540000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:39:58.360000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA39571_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:37:25.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:38:38.400000Z\", \"playDuration\": \"PT1M8S\"}, {\"titleId\": \"CUSA45034_00\", \"name\": \"The Light in the Darkness\", \"localizedName\": \"The Light in the Darkness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002497, \"titleIds\": [\"PPSA03738_00\", \"CUSA45366_00\", \"CUSA45034_00\", \"PPSA03085_00\", \"CUSA29814_00\"], \"name\": \"The Light in the Darkness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Light in the Darkness\", \"uk-UA\": \"The Light in the Darkness\", \"de-DE\": \"The Light in the Darkness\", \"en-US\": \"The Light in the Darkness\", \"ko-KR\": \"The Light in the Darkness\", \"pt-BR\": \"The Light in the Darkness\", \"es-ES\": \"The Light in the Darkness\", \"ar-AE\": \"The Light in the Darkness\", \"no-NO\": \"The Light in the Darkness\", \"fr-CA\": \"The Light in the Darkness\", \"it-IT\": \"The Light in the Darkness\", \"pl-PL\": \"The Light in the Darkness\", \"ru-RU\": \"The Light in the Darkness\", \"zh-Hans\": \"The Light in the Darkness\", \"nl-NL\": \"The Light in the Darkness\", \"pt-PT\": \"The Light in the Darkness\", \"zh-Hant\": \"The Light in the Darkness\", \"sv-SE\": \"The Light in the Darkness\", \"da-DK\": \"The Light in the Darkness\", \"tr-TR\": \"The Light in the Darkness\", \"fr-FR\": \"The Light in the Darkness\", \"en-GB\": \"The Light in the Darkness\", \"es-419\": \"The Light in the Darkness\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T05:09:26.150000Z\", \"lastPlayedDateTime\": \"2023-10-05T07:10:00.800000Z\", \"playDuration\": \"PT1H5M28S\"}, {\"titleId\": \"PPSA16081_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:50:13.440000Z\", \"lastPlayedDateTime\": \"2023-10-05T05:08:19.190000Z\", \"playDuration\": \"PT17M51S\"}, {\"titleId\": \"PPSA16083_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:29:52.000000Z\", \"lastPlayedDateTime\": \"2023-10-05T04:50:11.360000Z\", \"playDuration\": \"PT19M44S\"}, {\"titleId\": \"PPSA16084_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:27:07.930000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:44:43.530000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"PPSA16082_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:09:47.200000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:26:59.360000Z\", \"playDuration\": \"PT17M\"}, {\"titleId\": \"CUSA42988_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:38:02.180000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:06:41.280000Z\", \"playDuration\": \"PT28M21S\"}, {\"titleId\": \"CUSA42990_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:19:45.350000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:37:35.780000Z\", \"playDuration\": \"PT17M9S\"}, {\"titleId\": \"CUSA42991_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:00:11.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:19:30.010000Z\", \"playDuration\": \"PT18M29S\"}, {\"titleId\": \"CUSA42989_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T06:49:30.790000Z\", \"lastPlayedDateTime\": \"2023-10-04T07:14:37.790000Z\", \"playDuration\": \"PT24M39S\"}, {\"titleId\": \"CUSA45248_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T05:39:23.710000Z\", \"lastPlayedDateTime\": \"2023-10-04T06:24:46.440000Z\", \"playDuration\": \"PT45M9S\"}, {\"titleId\": \"CUSA45249_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T04:48:48.580000Z\", \"lastPlayedDateTime\": \"2023-10-04T05:39:19.580000Z\", \"playDuration\": \"PT50M14S\"}, {\"titleId\": \"CUSA45500_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-03T10:32:02.740000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:48:22.010000Z\", \"playDuration\": \"PT11M15S\"}, {\"titleId\": \"CUSA33670_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:30:34.850000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:31:58.800000Z\", \"playDuration\": \"PT15M54S\"}, {\"titleId\": \"PPSA05041_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:00:44.560000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:29:59.370000Z\", \"playDuration\": \"PT28M42S\"}, {\"titleId\": \"PPSA05040_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:58:23.140000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:00:42.450000Z\", \"playDuration\": \"PT1H7M49S\"}, {\"titleId\": \"CUSA30042_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:18:59.220000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:58:21.200000Z\", \"playDuration\": \"PT39M14S\"}, {\"titleId\": \"CUSA30043_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:44:40.950000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:18:57.260000Z\", \"playDuration\": \"PT28M55S\"}, {\"titleId\": \"PPSA15843_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:36:33.780000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:40:25.390000Z\", \"playDuration\": \"PT3M30S\"}, {\"titleId\": \"PPSA15844_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:33:02.240000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:36:31.740000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA42790_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:28:11.160000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:33:00.140000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA42791_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:24:08.320000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:28:09.170000Z\", \"playDuration\": \"PT3M53S\"}, {\"titleId\": \"PPSA18663_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:32:52.720000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:35:16.550000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA18661_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:29:59.390000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:32:50.260000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA18662_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:26:39.430000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:29:56.900000Z\", \"playDuration\": \"PT1M54S\"}, {\"titleId\": \"CUSA45280_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:21:54.210000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:26:35.920000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA45190_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:15:27.790000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:21:50.590000Z\", \"playDuration\": \"PT5M56S\"}, {\"titleId\": \"CUSA45279_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:06:43.700000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:15:24.150000Z\", \"playDuration\": \"PT6M26S\"}, {\"titleId\": \"PPSA11421_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:01:49.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:05:36.960000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"PPSA11420_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:57:54.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:01:47.810000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"CUSA38190_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:54:06.480000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:57:52.840000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA38189_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:36:36.180000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:54:03.640000Z\", \"playDuration\": \"PT4M8S\"}, {\"titleId\": \"PPSA01475_00\", \"name\": \"Ratchet & Clank: Rift Apart\", \"localizedName\": \"Ratchet & Clank: Rift Apart\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 11, \"concept\": {\"id\": 10000669, \"titleIds\": [\"PPSA01476_00\", \"PPSA03144_00\", \"PPSA01474_00\", \"PPSA01475_00\", \"PPSA01473_00\", \"PPSA03141_00\", \"PPSA05968_00\", \"PPSA03142_00\", \"PPSA03143_00\"], \"name\": \"Ratchet & Clank: Rift Apart\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ratchet & Clank: Rift Apart\", \"uk-UA\": \"Ratchet & Clank: Rift Apart\", \"de-DE\": \"Ratchet & Clank: Rift Apart\", \"en-US\": \"Ratchet & Clank: Rift Apart\", \"ko-KR\": \"Ratchet & Clank: Rift Apart\", \"pt-BR\": \"Ratchet & Clank: Em Uma Outra Dimens\\u00e3o\", \"es-ES\": \"RATCHET & CLANK: UNA DIMENSI\\u00d3N APARTE\", \"ar-AE\": \"Ratchet & Clank \\u0634\\u0642 \\u0637\\u0631\\u064a\\u0642\\u0643\", \"no-NO\": \"Ratchet & Clank: Rift Apart\", \"fr-CA\": \"Ratchet & Clank: Rift Apart\", \"it-IT\": \"Ratchet & Clank: Rift Apart\", \"pl-PL\": \"Ratchet & Clank: Rift Apart\", \"ru-RU\": \"Ratchet & Clank: \\u0421\\u043a\\u0432\\u043e\\u0437\\u044c \\u043c\\u0438\\u0440\\u044b\", \"zh-Hans\": \"\\u745e\\u5947\\u4e0e\\u53ee\\u5f53 \\u65f6\\u7a7a\\u8df3\\u8f6c\\u2122\", \"nl-NL\": \"Ratchet & Clank: Rift Apart\", \"pt-PT\": \"RATCHET & CLANK: UMA DIMENS\\u00c3O \\u00c0 PARTE\", \"zh-Hant\": \"Ratchet & Clank: Rift Apart\", \"sv-SE\": \"Ratchet & Clank: Rift Apart\", \"da-DK\": \"Ratchet & Clank: Rift Apart\", \"tr-TR\": \"Ratchet & Clank: Ayr\\u0131 D\\u00fcnyalar\", \"fr-FR\": \"Ratchet & Clank: Rift Apart\", \"en-GB\": \"Ratchet & Clank: Rift Apart\", \"es-419\": \"Ratchet & Clank: Una dimensi\\u00f3n aparte\", \"ja-JP\": \"\\u30e9\\u30c1\\u30a7\\u30c3\\u30c8\\uff06\\u30af\\u30e9\\u30f3\\u30af \\u30d1\\u30e9\\u30ec\\u30eb\\u30fb\\u30c8\\u30e9\\u30d6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-06-10T07:49:06.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T08:15:48.470000Z\", \"playDuration\": \"PT11H35M31S\"}, {\"titleId\": \"PPSA01325_00\", \"name\": \"ASTRO's PLAYROOM\", \"localizedName\": \"ASTRO's PLAYROOM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 20, \"concept\": {\"id\": 10000229, \"titleIds\": [\"PPSA01325_00\"], \"name\": \"ASTRO's PLAYROOM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ASTRO's PLAYROOM\", \"uk-UA\": \"ASTRO\\u2019s PLAYROOM\", \"de-DE\": \"ASTRO'S PLAYROOM\", \"en-US\": \"ASTRO's PLAYROOM\", \"ko-KR\": \"ASTRO's PLAYROOM\", \"pt-BR\": \"ASTRO's PLAYROOM\", \"es-ES\": \"ASTRO's PLAYROOM\", \"ar-AE\": \"ASTRO's PLAYROOM\", \"no-NO\": \"ASTRO's PLAYROOM\", \"fr-CA\": \"ASTRO'S PLAYROOM\", \"it-IT\": \"ASTRO's PLAYROOM\", \"pl-PL\": \"ASTRO\\u2019s PLAYROOM\", \"ru-RU\": \"ASTRO's PLAYROOM\", \"zh-Hans\": \"\\u5b87\\u5b99\\u673a\\u5668\\u4eba\\u65e0\\u7ebf\\u63a7\\u5236\\u5668\\u4f7f\\u7528\\u6307\\u5357\", \"nl-NL\": \"ASTRO's PLAYROOM\", \"pt-PT\": \"SALA DE JOGOS DO ASTRO\", \"zh-Hant\": \"ASTRO's PLAYROOM\", \"sv-SE\": \"ASTRO's PLAYROOM\", \"da-DK\": \"ASTRO's PLAYROOM\", \"tr-TR\": \"ASTRO's PLAYROOM\", \"fr-FR\": \"ASTRO'S PLAYROOM\", \"en-GB\": \"ASTRO's PLAYROOM\", \"es-419\": \"ASTRO's PLAYROOM\", \"ja-JP\": \"ASTRO's PLAYROOM\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-12-20T03:36:27.680000Z\", \"lastPlayedDateTime\": \"2023-10-01T07:49:01.050000Z\", \"playDuration\": \"PT21H32M40S\"}, {\"titleId\": \"PPSA18803_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:56:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T13:12:27.470000Z\", \"playDuration\": \"PT14M24S\"}, {\"titleId\": \"PPSA18802_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:40:27.350000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:56:24.890000Z\", \"playDuration\": \"PT15M33S\"}, {\"titleId\": \"PPSA18804_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:24:17.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:40:24.330000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA18805_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:02:34.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:24:14.460000Z\", \"playDuration\": \"PT17M7S\"}, {\"titleId\": \"PPSA16368_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:51:27.180000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:02:01.690000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"PPSA16369_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:43:02.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:51:25.040000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"PPSA16370_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:34:40.210000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:42:45.530000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA16371_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:26:30.840000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:34:38.180000Z\", \"playDuration\": \"PT7M46S\"}, {\"titleId\": \"CUSA43317_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:17:21.290000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:26:23.050000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"CUSA43319_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:08:42.140000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:17:03.640000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA43318_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:00:18.740000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:08:28.270000Z\", \"playDuration\": \"PT8M2S\"}, {\"titleId\": \"CUSA43316_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T10:46:23.150000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:00:16.420000Z\", \"playDuration\": \"PT11M52S\"}, {\"titleId\": \"PPSA09453_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T03:10:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:31:14.520000Z\", \"playDuration\": \"PT2M59S\"}, {\"titleId\": \"CUSA35744_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T02:54:12.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:27:40.350000Z\", \"playDuration\": \"PT6H15M51S\"}, {\"titleId\": \"PPSA15533_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:23:30.350000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:32:29.160000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA15532_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:15:58.510000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:23:27.410000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA42542_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:05:20.950000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:15:54.740000Z\", \"playDuration\": \"PT9M46S\"}, {\"titleId\": \"CUSA42543_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:54:58.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:06:10.860000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"CUSA45025_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:39:30.770000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:48:24.480000Z\", \"playDuration\": \"PT8M36S\"}, {\"titleId\": \"CUSA45027_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:35:21.510000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:39:28.850000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"CUSA45028_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:31:21.140000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:35:19.740000Z\", \"playDuration\": \"PT3M52S\"}, {\"titleId\": \"CUSA45026_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:25:58.530000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:31:19.310000Z\", \"playDuration\": \"PT5M2S\"}, {\"titleId\": \"PPSA18648_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:39.760000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:59.640000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18649_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:15.820000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:37.220000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18646_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:50.750000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:13.460000Z\", \"playDuration\": \"PT18S\"}, {\"titleId\": \"PPSA18647_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:27.510000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:27:48.750000Z\", \"playDuration\": \"PT16S\"}, {\"titleId\": \"CUSA45272_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:06:49.460000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:25:30.620000Z\", \"playDuration\": \"PT18M37S\"}, {\"titleId\": \"CUSA45273_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:45:02.450000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:06:47.440000Z\", \"playDuration\": \"PT18M16S\"}, {\"titleId\": \"CUSA45270_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:25:45.300000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:45:00.350000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA45271_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T11:51:44.560000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:25:43.170000Z\", \"playDuration\": \"PT28M27S\"}, {\"titleId\": \"CUSA41266_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"lastPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA05282_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:50:19.000000Z\", \"lastPlayedDateTime\": \"2023-09-24T01:16:29.560000Z\", \"playDuration\": \"PT25M54S\"}, {\"titleId\": \"PPSA05283_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:21:56.940000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:49:45.090000Z\", \"playDuration\": \"PT27M29S\"}, {\"titleId\": \"PPSA05284_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:37:45.710000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:21:54.670000Z\", \"playDuration\": \"PT25M48S\"}, {\"titleId\": \"CUSA30403_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:07:51.580000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:37:31.630000Z\", \"playDuration\": \"PT27M45S\"}, {\"titleId\": \"CUSA30404_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T22:22:49.260000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:07:49.270000Z\", \"playDuration\": \"PT37M31S\"}, {\"titleId\": \"CUSA30402_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:24:24.920000Z\", \"lastPlayedDateTime\": \"2023-09-23T05:11:11.690000Z\", \"playDuration\": \"PT44M16S\"}, {\"titleId\": \"PPSA08825_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:05:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:18:14.920000Z\", \"playDuration\": \"PT12M55S\"}, {\"titleId\": \"CUSA35046_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T03:49:05.630000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:05:11.840000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA35045_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T02:17:12.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T03:19:31.220000Z\", \"playDuration\": \"PT1H1M39S\"}, {\"titleId\": \"PPSA18704_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T01:31:37.000000Z\", \"lastPlayedDateTime\": \"2023-09-23T02:12:24.380000Z\", \"playDuration\": \"PT40M37S\"}, {\"titleId\": \"PPSA18703_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:58:27.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T01:31:35.250000Z\", \"playDuration\": \"PT29M33S\"}, {\"titleId\": \"PPSA18705_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:26:14.510000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:58:24.920000Z\", \"playDuration\": \"PT30M14S\"}, {\"titleId\": \"PPSA18702_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T23:44:37.250000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:26:03.050000Z\", \"playDuration\": \"PT41M17S\"}, {\"titleId\": \"PPSA16992_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:47:17.250000Z\", \"lastPlayedDateTime\": \"2023-09-22T14:14:47.020000Z\", \"playDuration\": \"PT17M48S\"}, {\"titleId\": \"PPSA16991_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:25:46.650000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:44:48.490000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA43856_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T12:59:02.770000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:25:44.680000Z\", \"playDuration\": \"PT19M4S\"}, {\"titleId\": \"CUSA43857_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/fc810c7d2a046b11d103920194684e370950e57e6283a423.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:54:08.800000Z\", \"lastPlayedDateTime\": \"2023-09-22T12:59:00.730000Z\", \"playDuration\": \"PT47M14S\"}, {\"titleId\": \"PPSA17797_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:50:59.310000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:53:42.190000Z\", \"playDuration\": \"PT2M27S\"}, {\"titleId\": \"PPSA17798_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:48:06.950000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:50:57.150000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"PPSA17800_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:45:12.760000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:48:04.720000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17799_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:41:36.610000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:44:34.170000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44504_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:38:10.130000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:41:34.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44505_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:34:57.570000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:38:06.910000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44502_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:17:56.670000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:34:55.370000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44503_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:14:13.120000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:17:54.550000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA12631_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:08:04.520000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:10:20.550000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA12632_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:05:39.530000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:08:02.510000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA39593_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:03:31.820000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:05:37.560000Z\", \"playDuration\": \"PT2M\"}, {\"titleId\": \"CUSA39594_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:01:10.190000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:03:29.520000Z\", \"playDuration\": \"PT2M13S\"}, {\"titleId\": \"CUSA30727_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T14:13:33.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T14:21:16.530000Z\", \"playDuration\": \"PT7M32S\"}, {\"titleId\": \"CUSA45044_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:07:24.850000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:30:33.830000Z\", \"playDuration\": \"PT8M34S\"}, {\"titleId\": \"PPSA15534_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:46:18.000000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:08:39.680000Z\", \"playDuration\": \"PT11M41S\"}, {\"titleId\": \"PPSA15535_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:31:38.390000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:46:16.010000Z\", \"playDuration\": \"PT12M27S\"}, {\"titleId\": \"CUSA42544_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:12:37.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:31:27.520000Z\", \"playDuration\": \"PT14M33S\"}, {\"titleId\": \"CUSA42545_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:51:16.840000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:12:29.600000Z\", \"playDuration\": \"PT18M3S\"}, {\"titleId\": \"PPSA18252_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:20:53.870000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:43:43.160000Z\", \"playDuration\": \"PT19M23S\"}, {\"titleId\": \"PPSA18253_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:00:08.670000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:19:50.880000Z\", \"playDuration\": \"PT19M37S\"}, {\"titleId\": \"CUSA44920_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:31:39.500000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:00:06.780000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA44921_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:09:18.140000Z\", \"lastPlayedDateTime\": \"2023-09-21T10:30:44.750000Z\", \"playDuration\": \"PT21M22S\"}, {\"titleId\": \"CUSA45061_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:00:24.530000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:06:52.310000Z\", \"playDuration\": \"PT6M25S\"}, {\"titleId\": \"CUSA45060_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T13:47:30.550000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:00:23.130000Z\", \"playDuration\": \"PT12M44S\"}, {\"titleId\": \"CUSA45124_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:33:19.650000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:42:28.800000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"CUSA45123_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:19:41.950000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:33:18.070000Z\", \"playDuration\": \"PT8M7S\"}, {\"titleId\": \"CUSA45328_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:09:32.030000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:18:29.960000Z\", \"playDuration\": \"PT2M34S\"}, {\"titleId\": \"CUSA45327_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:04:22.870000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:09:27.940000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA45326_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:02:36.980000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:04:18.610000Z\", \"playDuration\": \"PT1M32S\"}, {\"titleId\": \"CUSA45325_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T12:59:20.940000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:02:32.340000Z\", \"playDuration\": \"PT3M3S\"}, {\"titleId\": \"CUSA27311_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T00:35:04.450000Z\", \"lastPlayedDateTime\": \"2023-09-19T12:59:01.690000Z\", \"playDuration\": \"PT4H51M48S\"}, {\"titleId\": \"CUSA45128_00\", \"name\": \"Only Way Up! Parkour Jump Simulator\", \"localizedName\": \"Only Way Up! Parkour Jump Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009173, \"titleIds\": [\"CUSA45128_00\", \"CUSA45129_00\"], \"name\": \"Only Way Up! Parkour Jump Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PARTY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Only Way Up! Parkour Jump Simulator\", \"uk-UA\": \"Only Way Up! Parkour Jump Simulator\", \"de-DE\": \"Only Way Up! Parkour Jump Simulator\", \"en-US\": \"Only Way Up! Parkour Jump Simulator\", \"ko-KR\": \"Only Way Up! Parkour Jump Simulator\", \"pt-BR\": \"Only Way Up! Parkour Jump Simulator\", \"es-ES\": \"Only Way Up! Parkour Jump Simulator\", \"ar-AE\": \"Only Way Up! Parkour Jump Simulator\", \"no-NO\": \"Only Way Up! Parkour Jump Simulator\", \"fr-CA\": \"Only Way Up! Parkour Jump Simulator\", \"it-IT\": \"Only Way Up! Parkour Jump Simulator\", \"pl-PL\": \"Only Way Up! Parkour Jump Simulator\", \"ru-RU\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hans\": \"Only Way Up! Parkour Jump Simulator\", \"nl-NL\": \"Only Way Up! Parkour Jump Simulator\", \"pt-PT\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hant\": \"Only Way Up! Parkour Jump Simulator\", \"sv-SE\": \"Only Way Up! Parkour Jump Simulator\", \"da-DK\": \"Only Way Up! Parkour Jump Simulator\", \"tr-TR\": \"Only Way Up! Parkour Jump Simulator\", \"fr-FR\": \"Only Way Up! Parkour Jump Simulator\", \"en-GB\": \"Only Way Up! Parkour Jump Simulator\", \"es-419\": \"Only Way Up! Parkour Jump Simulator\", \"ja-JP\": \"Only Way Up! Parkour Jump Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T05:37:31.060000Z\", \"lastPlayedDateTime\": \"2023-09-18T06:59:54.250000Z\", \"playDuration\": \"PT1H19M7S\"}, {\"titleId\": \"PPSA14313_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T13:05:55.100000Z\", \"lastPlayedDateTime\": \"2023-09-18T05:37:28.780000Z\", \"playDuration\": \"PT4H17S\"}, {\"titleId\": \"PPSA17410_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:55:26.290000Z\", \"lastPlayedDateTime\": \"2023-09-16T12:02:11.340000Z\", \"playDuration\": \"PT6M38S\"}, {\"titleId\": \"PPSA17411_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:46:07.720000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:55:23.820000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA12629_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:38:06.180000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:45:46.860000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"PPSA12630_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:36:09.630000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:38:04.150000Z\", \"playDuration\": \"PT1M43S\"}, {\"titleId\": \"CUSA39591_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:24:24.830000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:36:07.890000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA39592_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:21:02.590000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:24:22.820000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA18086_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:13:47.910000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:18:32.390000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA35689_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:14:15.850000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:16:23.540000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA35690_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:28:39.390000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:15:22.900000Z\", \"playDuration\": \"PT51S\"}, {\"titleId\": \"PPSA18085_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:09:17.000000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:13:45.570000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA35896_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:48:35.490000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:54:35.730000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35895_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:43:13.870000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:48:33.500000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA35897_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:40:04.220000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:43:11.720000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA35898_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:31:07.900000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:40:02.310000Z\", \"playDuration\": \"PT8M48S\"}, {\"titleId\": \"PPSA02342_00\", \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"localizedName\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 234689, \"titleIds\": [\"CUSA16746_00\", \"CUSA26351_00\", \"CUSA26350_00\", \"CUSA16742_00\", \"PPSA02424_00\", \"CUSA16743_00\", \"PPSA02342_00\", \"PPSA02343_00\", \"PPSA02423_00\"], \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"uk-UA\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"de-DE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-US\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"ko-KR\": \"It Takes Two PS4\\u2122\\uc640 PS5\\u2122\", \"pt-BR\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"es-ES\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ar-AE\": \"It Takes Two PS4\\u2122\\u200e \\u0648PS5\\u2122\\u200e\", \"no-NO\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"fr-CA\": \"It Takes Two, PS4\\u2122 et PS5\\u2122\", \"it-IT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"pl-PL\": \"It Takes Two na PS4\\u2122 i PS5\\u2122\", \"ru-RU\": \"It Takes Two PS4\\u2122 \\u0438 PS5\\u2122\", \"zh-Hans\": \"\\u53cc\\u4eba\\u6210\\u884c PS4\\u2122 \\u548c PS5\\u2122\", \"nl-NL\": \"It Takes Two PS4\\u2122 en PS5\\u2122\", \"pt-PT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"zh-Hant\": \"\\u300a\\u96d9\\u4eba\\u6210\\u884c\\u300bPS4\\u2122 & PS5\\u2122\", \"sv-SE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"da-DK\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"tr-TR\": \"It Takes Two PS4\\u2122 ve PS5\\u2122\", \"fr-FR\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-GB\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"es-419\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ja-JP\": \"\\u300cIt Takes Two\\u300dPS4\\u2122 & PS5\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-29T10:20:23.300000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:20:23.000000Z\", \"playDuration\": \"PT2H42M52S\"}, {\"titleId\": \"PPSA15565_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T09:58:36.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T10:47:49.320000Z\", \"playDuration\": \"PT48M52S\"}, {\"titleId\": \"PPSA15566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T08:39:02.370000Z\", \"lastPlayedDateTime\": \"2023-09-10T09:09:48.510000Z\", \"playDuration\": \"PT29M43S\"}, {\"titleId\": \"CUSA42567_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:52:25.210000Z\", \"lastPlayedDateTime\": \"2023-09-10T08:38:38.870000Z\", \"playDuration\": \"PT30M44S\"}, {\"titleId\": \"CUSA42566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:04:39.770000Z\", \"lastPlayedDateTime\": \"2023-09-10T07:43:59.580000Z\", \"playDuration\": \"PT38M42S\"}, {\"titleId\": \"CUSA45018_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:23:48.690000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:44:22.550000Z\", \"playDuration\": \"PT20M27S\"}, {\"titleId\": \"CUSA45019_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:11:57.200000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:23:44.820000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"PPSA15588_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:41:02.130000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:07:21.980000Z\", \"playDuration\": \"PT22M54S\"}, {\"titleId\": \"PPSA15589_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:16:47.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:41:00.200000Z\", \"playDuration\": \"PT23M14S\"}, {\"titleId\": \"PPSA15586_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:49:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:12:42.890000Z\", \"playDuration\": \"PT22M59S\"}, {\"titleId\": \"PPSA15587_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:16:41.430000Z\", \"lastPlayedDateTime\": \"2023-09-10T04:49:12.340000Z\", \"playDuration\": \"PT23M29S\"}, {\"titleId\": \"CUSA42600_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T02:19:16.080000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:41:59.070000Z\", \"playDuration\": \"PT22M30S\"}, {\"titleId\": \"CUSA42599_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:55:14.280000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:18:10.940000Z\", \"playDuration\": \"PT22M52S\"}, {\"titleId\": \"CUSA42595_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:29:11.910000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:53:44.290000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"CUSA42601_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T00:21:45.740000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:29:10.200000Z\", \"playDuration\": \"PT1H5M14S\"}, {\"titleId\": \"PPSA17492_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:09:19.700000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:10:04.600000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA17491_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:51.300000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:09:17.240000Z\", \"playDuration\": \"PT15S\"}, {\"titleId\": \"PPSA17493_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:22.000000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:48.810000Z\", \"playDuration\": \"PT20S\"}, {\"titleId\": \"PPSA17490_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:07:59.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:20.730000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"CUSA44265_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:52:08.970000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:07:54.850000Z\", \"playDuration\": \"PT15M41S\"}, {\"titleId\": \"CUSA44264_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:38:05.240000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:52:06.890000Z\", \"playDuration\": \"PT13M17S\"}, {\"titleId\": \"CUSA44266_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:23:34.910000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:38:00.590000Z\", \"playDuration\": \"PT14M17S\"}, {\"titleId\": \"CUSA44263_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:53:37.370000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:14:57.180000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"PPSA17357_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:47:43.660000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:52:38.520000Z\", \"playDuration\": \"PT1M33S\"}, {\"titleId\": \"PPSA17358_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:40:33.480000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:47:41.530000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA17359_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:31:00.980000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:40:31.550000Z\", \"playDuration\": \"PT9M24S\"}, {\"titleId\": \"PPSA17360_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:28:04.140000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:30:58.910000Z\", \"playDuration\": \"PT2M19S\"}, {\"titleId\": \"CUSA44173_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T11:59:31.350000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:25:46.520000Z\", \"playDuration\": \"PT25M52S\"}, {\"titleId\": \"CUSA44174_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T10:33:51.040000Z\", \"lastPlayedDateTime\": \"2023-09-09T11:59:29.370000Z\", \"playDuration\": \"PT31M45S\"}, {\"titleId\": \"CUSA44171_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T23:57:10.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T00:37:08.840000Z\", \"playDuration\": \"PT39M43S\"}, {\"titleId\": \"CUSA44172_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T22:21:02.750000Z\", \"lastPlayedDateTime\": \"2023-09-08T23:25:25.940000Z\", \"playDuration\": \"PT1H3M34S\"}, {\"titleId\": \"PPSA01652_00\", \"name\": \"YouTube\", \"localizedName\": \"YouTube\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"category\": \"ps5_native_media_app\", \"service\": \"other\", \"playCount\": 11, \"concept\": {\"id\": 205453, \"titleIds\": [\"CUSA06021_00\", \"PPSA01650_00\", \"PPSA01651_00\", \"CUSA01065_00\", \"PPSA01652_00\", \"CUSA01015_00\", \"CUSA01034_00\", \"CUSA01116_00\", \"CUSA15375_00\"], \"name\": \"YouTube\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"YouTube\", \"uk-UA\": \"YouTube\", \"de-DE\": \"YouTube\", \"en-US\": \"YouTube\", \"ko-KR\": \"YouTube\", \"pt-BR\": \"YouTube\", \"es-ES\": \"YouTube\", \"ar-AE\": \"YouTube\", \"no-NO\": \"YouTube\", \"fr-CA\": \"YouTube\", \"it-IT\": \"YouTube\", \"pl-PL\": \"YouTube\", \"ru-RU\": \"YouTube\", \"zh-Hans\": \"YouTube\", \"nl-NL\": \"YouTube\", \"pt-PT\": \"YouTube\", \"zh-Hant\": \"YouTube\", \"sv-SE\": \"YouTube\", \"da-DK\": \"YouTube\", \"tr-TR\": \"YouTube\", \"fr-FR\": \"YouTube\", \"en-GB\": \"YouTube\", \"es-419\": \"YouTube\", \"ja-JP\": \"YouTube\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-09-05T15:20:21.410000Z\", \"lastPlayedDateTime\": \"2023-09-08T12:54:55.580000Z\", \"playDuration\": \"PT8H50M25S\"}, {\"titleId\": \"PPSA17316_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:10:39.520000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:23:17.640000Z\", \"playDuration\": \"PT2M36S\"}, {\"titleId\": \"CUSA44132_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:00:47.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:10:35.860000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA17487_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:01:28.430000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:05:39.230000Z\", \"playDuration\": \"PT3M56S\"}, {\"titleId\": \"PPSA17261_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:57:19.390000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:01:25.180000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"CUSA44092_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:52:55.770000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:57:15.440000Z\", \"playDuration\": \"PT4M13S\"}, {\"titleId\": \"CUSA44093_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:44:58.280000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:52:51.740000Z\", \"playDuration\": \"PT6M40S\"}, {\"titleId\": \"PPSA18331_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:34:52.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:44:16.970000Z\", \"playDuration\": \"PT9M11S\"}, {\"titleId\": \"PPSA18330_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:06:07.260000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:34:50.070000Z\", \"playDuration\": \"PT14M28S\"}, {\"titleId\": \"PPSA18332_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:56:54.970000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:06:04.280000Z\", \"playDuration\": \"PT7M17S\"}, {\"titleId\": \"CUSA45021_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:52:04.130000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:56:51.140000Z\", \"playDuration\": \"PT4M26S\"}, {\"titleId\": \"CUSA45020_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:33:47.420000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:52:00.490000Z\", \"playDuration\": \"PT17M5S\"}, {\"titleId\": \"CUSA44885_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:20:34.610000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:33:43.650000Z\", \"playDuration\": \"PT10M23S\"}, {\"titleId\": \"PPSA17830_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:16:20.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:19:44.910000Z\", \"playDuration\": \"PT3M4S\"}, {\"titleId\": \"PPSA17829_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:12:45.240000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:16:18.410000Z\", \"playDuration\": \"PT3M14S\"}, {\"titleId\": \"PPSA17828_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:05:34.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:12:42.580000Z\", \"playDuration\": \"PT6M55S\"}], \"nextOffset\": 200, \"previousOffset\": 0, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"PPSA04873_00\", \"name\": \"Apex Legends\\u2122\", \"localizedName\": \"Apex Legends\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 111, \"concept\": {\"id\": 232352, \"titleIds\": [\"CUSA23296_00\", \"CUSA17256_00\", \"CUSA19626_00\", \"CUSA23295_00\", \"PPSA04873_00\", \"PPSA04874_00\", \"CUSA12540_00\", \"CUSA12552_00\"], \"name\": \"Apex Legends\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Apex Legends\\u2122\", \"uk-UA\": \"Apex Legends\\u2122\", \"de-DE\": \"Apex Legends\\u2122\", \"en-US\": \"Apex Legends\\u2122\", \"ko-KR\": \"Apex \\ub808\\uc804\\ub4dc\\u2122\", \"pt-BR\": \"Apex Legends\\u2122\", \"es-ES\": \"Apex Legends\\u2122\", \"ar-AE\": \"Apex Legends\\u2122\\u200e\", \"no-NO\": \"Apex Legends\\u2122\", \"fr-CA\": \"Apex Legends\\u2122\", \"it-IT\": \"Apex Legends\\u2122\", \"pl-PL\": \"Apex Legends\\u2122\", \"ru-RU\": \"Apex Legends\\u2122\", \"zh-Hans\": \"Apex Legends\\u2122\", \"nl-NL\": \"Apex Legends\\u2122\", \"pt-PT\": \"Apex Legends\\u2122\", \"zh-Hant\": \"\\u300aApex \\u82f1\\u96c4\\u300b\", \"sv-SE\": \"Apex Legends\\u2122\", \"da-DK\": \"Apex Legends\\u2122\", \"tr-TR\": \"Apex Legends\\u2122\", \"fr-FR\": \"Apex Legends\\u2122\", \"en-GB\": \"Apex Legends\\u2122\", \"es-419\": \"Apex Legends\\u2122\", \"ja-JP\": \"\\u30a8\\u30fc\\u30da\\u30c3\\u30af\\u30b9\\u30ec\\u30b8\\u30a7\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/a00a33b337829255e72a66299dad43ea9713b6b031f74af9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/b8f6e5b7dd9f7c8aeaf767d26c91e80aa6e7ca8a90507137.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/89edeb110a01237b986806b42b8d4686ad6586f2c1130954.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2823/0066854bbf03ad58f47f9c1133e5c2b7a5d8acbcc3a64c67.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/d54ddcb966534e4abd173948d6e7ab8b2dcda12ed278d6ca.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/9a689216de9577ce69c91ef37f78a4512e2e93bfa8e4d918.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/87cfd639ebc08ec97d7c7bb14cf14f8d6af22346ac879bc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/583cdd621051a86ddd87134a8dd796e516ce4f5635c423b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/94f14859155f2d92470fc70699e72cab90cbdc8897633fe0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/37c95e47f35c376687cb351622d96c4569fa5a0b24de1a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/436f53aa640748dfb1b800781c03a71f96eb34cd057dcebb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202410/2822/8df9f3fce19959a1041eb05f37447c4c7ba005b490acc523.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-03-29T13:21:34.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T13:45:37.610000Z\", \"playDuration\": \"PT213H54M25S\"}, {\"titleId\": \"CUSA03105_00\", \"name\": \"GOD EATER RESURRECTION\", \"localizedName\": \"GOD EATER RESURRECTION\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 201731, \"titleIds\": [\"CUSA03105_00\", \"CUSA03369_00\", \"CUSA03703_00\", \"CUSA03525_00\", \"CUSA03409_00\", \"CUSA03592_00\", \"PCSB00875_00\"], \"name\": \"GOD EATER RESURRECTION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GOD EATER RESURRECTION\", \"uk-UA\": \"GOD EATER RESURRECTION\", \"de-DE\": \"GOD EATER RESURRECTION\", \"en-US\": \"GOD EATER RESURRECTION\", \"ko-KR\": \"GOD EATER RESURRECTION\", \"pt-BR\": \"GOD EATER RESURRECTION\", \"es-ES\": \"GOD EATER RESURRECTION\", \"ar-AE\": \"GOD EATER RESURRECTION\", \"no-NO\": \"GOD EATER RESURRECTION\", \"fr-CA\": \"GOD EATER RESURRECTION\", \"it-IT\": \"GOD EATER RESURRECTION\", \"pl-PL\": \"GOD EATER RESURRECTION\", \"ru-RU\": \"GOD EATER RESURRECTION\", \"zh-Hans\": \"GOD EATER RESURRECTION\", \"nl-NL\": \"GOD EATER RESURRECTION\", \"pt-PT\": \"GOD EATER RESURRECTION\", \"zh-Hant\": \"GOD EATER RESURRECTION\", \"sv-SE\": \"GOD EATER RESURRECTION\", \"da-DK\": \"GOD EATER RESURRECTION\", \"tr-TR\": \"GOD EATER RESURRECTION\", \"fr-FR\": \"GOD EATER RESURRECTION\", \"en-GB\": \"GOD EATER RESURRECTION\", \"es-419\": \"GOD EATER RESURRECTION\", \"ja-JP\": \"GOD EATER RESURRECTION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA03369_00/3/i_ce68432f48f6bd462dbe9c89b336ffb598d299f2f1606a0ae2d5b1b1e4bc3c9d/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2016-06-23T12:56:47.000000Z\", \"lastPlayedDateTime\": \"2024-10-15T12:27:25.460000Z\", \"playDuration\": \"PT6H27M47S\"}, {\"titleId\": \"PPSA20676_00\", \"name\": \"VALORANT\", \"localizedName\": \"VALORANT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10010048, \"titleIds\": [\"PPSA20676_00\", \"PPSA20711_00\"], \"name\": \"VALORANT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"VALORANT\", \"uk-UA\": \"VALORANT\", \"de-DE\": \"VALORANT\", \"en-US\": \"VALORANT\", \"ko-KR\": \"\\ubc1c\\ub85c\\ub780\\ud2b8\", \"pt-BR\": \"VALORANT\", \"es-ES\": \"VALORANT\", \"ar-AE\": \"VALORANT\", \"no-NO\": \"VALORANT\", \"fr-CA\": \"VALORANT\", \"it-IT\": \"VALORANT\", \"pl-PL\": \"VALORANT\", \"ru-RU\": \"VALORANT\", \"zh-Hans\": \"VALORANT\", \"nl-NL\": \"VALORANT\", \"pt-PT\": \"VALORANT\", \"zh-Hant\": \"\\u300a\\u7279\\u6230\\u82f1\\u8c6a\\u300b\", \"sv-SE\": \"VALORANT\", \"da-DK\": \"VALORANT\", \"tr-TR\": \"VALORANT\", \"fr-FR\": \"VALORANT\", \"en-GB\": \"VALORANT\", \"es-419\": \"VALORANT\", \"ja-JP\": \"VALORANT\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/0af20cd7ac190c35e68c04a27523a9b03cd41c3ef46fcfac.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/a36d2830334d15dd43664861159c364ad8419f6251200514.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0122/fd060acba552e9bba869ea0cf8c629a9a11801bca4eca092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0119/4cd686b66c546925f1f53f87ebf7da4a220a83600627f662.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/47f004cdc22df5458936dc593dfec8ce92dd5bcad05cdcfc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/3184d226f5501c92f1c10c984226740923e5bd64bb2a42cf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/57ba040780f841303f990276a1163357db7ddd4fc73e891e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/2c1e9886a14f934916259b5dc12e95e5d3857aa789cf07b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/31ecfb2e24d112b6a4cd318470b2b1ce80bd340885feac97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/8ca49a8478ab4f4b1093fb6ebca67e0ca5a3adb7d1c037be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/f06839e828c9e03354cd64cf286bae52e88249e3eb2c925b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/e7bdcbe9bb7967dfe64d263d46b7b00f587c0f5ca079455f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202405/2400/9c98fba4828d6739e4c35635f251fb18d81568657a65587f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202406/1120/78a5f78514c754601c3b8a5a8b62350c27fa47c19ce04646.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0100/977387041ffee1b30e7b3870b29aaa3eaf533b2e7031939e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2024-09-10T10:01:08.080000Z\", \"lastPlayedDateTime\": \"2024-09-10T10:27:07.390000Z\", \"playDuration\": \"PT25M34S\"}, {\"titleId\": \"PPSA07952_00\", \"name\": \"Call of Duty\\u00ae\", \"localizedName\": \"Call of Duty\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 21, \"concept\": {\"id\": 10001130, \"titleIds\": [\"CUSA34084_00\", \"PPSA07950_00\", \"PPSA01649_00\", \"PPSA09262_00\", \"CUSA23826_00\", \"CUSA35564_00\", \"CUSA43691_00\", \"CUSA48767_00\", \"CUSA34032_00\", \"PPSA07953_00\", \"CUSA23827_00\", \"CUSA34087_00\", \"CUSA34083_00\", \"CUSA43690_00\", \"CUSA34029_00\", \"PPSA09265_00\", \"CUSA48768_00\", \"CUSA35561_00\", \"CUSA43694_00\", \"CUSA34031_00\", \"CUSA34086_00\", \"CUSA48765_00\", \"PPSA09264_00\", \"CUSA48769_00\", \"CUSA35562_00\", \"CUSA43693_00\", \"PPSA07951_00\", \"CUSA34030_00\", \"CUSA34085_00\", \"CUSA35563_00\", \"CUSA48766_00\", \"PPSA09263_00\", \"CUSA43692_00\", \"PPSA07952_00\"], \"name\": \"Call of Duty\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Call of Duty\\u00ae\", \"uk-UA\": \"Call of Duty\\u00ae\", \"de-DE\": \"Call of Duty\\u00ae\", \"en-US\": \"Call of Duty\\u00ae\", \"ko-KR\": \"\\ucf5c \\uc624\\ube0c \\ub4c0\\ud2f0\\u00ae\", \"pt-BR\": \"Call of Duty\\u00ae\", \"es-ES\": \"Call of Duty\\u00ae\", \"ar-AE\": \"Call of Duty\\u00ae\", \"no-NO\": \"Call of Duty\\u00ae\", \"fr-CA\": \"Call of Duty\\u00ae\", \"it-IT\": \"Call of Duty\\u00ae\", \"pl-PL\": \"Call of Duty\\u00ae\", \"ru-RU\": \"Call of Duty\\u00ae\", \"zh-Hans\": \"\\u300a\\u4f7f\\u547d\\u53ec\\u5524\\u00ae\\u300b\", \"nl-NL\": \"Call of Duty\\u00ae\", \"pt-PT\": \"Call of Duty\\u00ae\", \"zh-Hant\": \"\\u300a\\u6c7a\\u52dd\\u6642\\u523b\\u00ae\\u300b\", \"sv-SE\": \"Call of Duty\\u00ae\", \"da-DK\": \"Call of Duty\\u00ae\", \"tr-TR\": \"Call of Duty\\u00ae\", \"fr-FR\": \"Call of Duty\\u00ae\", \"en-GB\": \"Call of Duty\\u00ae\", \"es-419\": \"Call of Duty\\u00ae\", \"ja-JP\": \"Call of Duty\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/dcb9c594777cb50e0244da31dcb6761643caab9bcaebdc23.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/3affe52fe511246b85bddc444fc64bebd422400afc63d7ac.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/0216dc761ccb1b8726abef73c694c9b8e87babb0db4d6ef1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/8bc5a5eead0fa5d63fa815266184f2e44beff4d34fd167be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/15df30bfbc9a38dd1618f70277b8bbb629e144639dacc1aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/990c9e6a93ec0e3f183ff152c264861aa499639f45f17279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f9f8491ca1e2091bdc0fdce2e3b0908d599e4dac66f60229.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/f132ab8ccc18761d3fd44b753c9dcd02c83c95b785cf1308.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/1db2f01b603f136091db4b05a239c924932481560e94f839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/df909af41955b09946ce72eb32bd6a854881adcfe13e6d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/ebbe4f752ee7d3e15133f7287adea566411db74a83c3a9d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/8af2b834a38645ca3e64a0b5ea3e66c1211906d83a548c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/94e433ed2c019a3bdf4df99d68e95d9db25fa039388938fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1322/d539c70f6d4efcd9414ff469394f25b9c742de4d539ebcd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/1401/91eb8c13e1a2091c0cf4b25f38560836942e38d0d3b535fd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-28T02:30:13.000000Z\", \"lastPlayedDateTime\": \"2024-09-08T14:01:17.230000Z\", \"playDuration\": \"PT14H51M10S\"}, {\"titleId\": \"CUSA08374_00\", \"name\": \"Detroit: Become Human\\u2122\", \"localizedName\": \"Detroit: Become Human\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 222727, \"titleIds\": [\"CUSA12237_00\", \"CUSA11704_00\", \"CUSA00717_00\", \"CUSA12182_00\", \"CUSA08374_00\", \"CUSA12299_00\", \"CUSA10341_00\", \"CUSA10345_00\", \"CUSA12197_00\", \"CUSA12602_00\", \"CUSA12302_00\", \"CUSA12195_00\", \"CUSA12238_00\", \"CUSA12395_00\", \"CUSA12513_00\", \"CUSA10347_00\", \"CUSA09417_00\", \"CUSA12183_00\", \"CUSA08392_00\", \"CUSA10340_00\", \"CUSA08308_00\", \"CUSA12328_00\", \"CUSA12198_00\", \"CUSA08344_00\", \"CUSA12196_00\"], \"name\": \"Detroit: Become Human\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"MUSIC/RHYTHM\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detroit: Become Human\\u2122\", \"uk-UA\": \"Detroit: Become Human\\u2122\", \"de-DE\": \"Detroit: Become Human\\u2122\", \"en-US\": \"Detroit: Become Human\\u2122\", \"ko-KR\": \"Detroit: Become Human\\u2122\", \"pt-BR\": \"Detroit: Become Human\\u2122\", \"es-ES\": \"Detroit: Become Human\\u2122\", \"ar-AE\": \"Detroit: Become Human\\u2122\", \"no-NO\": \"Detroit: Become Human\\u2122\", \"fr-CA\": \"Detroit: Become Human\\u2122\", \"it-IT\": \"Detroit: Become Human\\u2122\", \"pl-PL\": \"Detroit: Become Human\\u2122\", \"ru-RU\": \"Detroit: Become Human\\u2122\", \"zh-Hans\": \"Detroit: Become Human\\u2122\", \"nl-NL\": \"Detroit: Become Human\\u2122\", \"pt-PT\": \"Detroit: Become Human\\u2122\", \"zh-Hant\": \"Detroit: Become Human\\u2122\", \"sv-SE\": \"Detroit: Become Human\\u2122\", \"da-DK\": \"Detroit: Become Human\\u2122\", \"tr-TR\": \"Detroit: Become Human\\u2122\", \"fr-FR\": \"Detroit: Become Human\\u2122\", \"en-GB\": \"Detroit: Become Human\\u2122\", \"es-419\": \"Detroit: Become Human\\u2122\", \"ja-JP\": \"Detroit: Become Human\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VLuds4glrCOPtTnGv8Ht0MLg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/FbLeiDPBLfdbiL6LwFMH3DxC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/VljHbt4vhc3Bmn8s83kFAPVg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/oBE5hGEbFbRO2hbahNyoM8hR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/L8goQzMgY7Y0mbRVs4zOfYPj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/W83G1nGF7wGs2J7Cq3LhpwwI.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202010/2119/wl4DB5QGzlEHAXy1KLUVgOAu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2018-06-02T12:27:03.740000Z\", \"lastPlayedDateTime\": \"2024-04-06T23:37:01.780000Z\", \"playDuration\": \"PT17H3M16S\"}, {\"titleId\": \"CUSA01040_00\", \"name\": \"Joysound.TV Plus\", \"localizedName\": \"Joysound.TV Plus\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 202220, \"titleIds\": [\"CUSA01039_00\", \"CUSA01040_00\"], \"name\": \"Joysound.TV Plus\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Joysound.TV Plus\", \"en-GB\": \"Joysound.TV Plus\", \"ja-JP\": \"JOYSOUND.TV Plus \\u30c0\\u30a6\\u30f3\\u30ed\\u30fc\\u30c9\\u7248\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202009/2923/bv6zyNvtrXGYyIgb7q4sVDtO.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA01040_00/2/i_f2370ad62b627088986e66c4c1a10655065afda4ee9bb1154a31c2f1229bc299/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-20T10:32:18.290000Z\", \"lastPlayedDateTime\": \"2023-11-22T14:24:33.660000Z\", \"playDuration\": \"PT3H17M41S\"}, {\"titleId\": \"PPSA08206_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 19, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-30T12:40:15.610000Z\", \"lastPlayedDateTime\": \"2023-11-06T13:47:55.290000Z\", \"playDuration\": \"PT2H9M50S\"}, {\"titleId\": \"CUSA34284_00\", \"name\": \"Moving Out 2\", \"localizedName\": \"Moving Out 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10005309, \"titleIds\": [\"PPSA08206_00\", \"PPSA08207_00\", \"CUSA34284_00\", \"CUSA34285_00\"], \"name\": \"Moving Out 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moving Out 2\", \"uk-UA\": \"Moving Out 2\", \"de-DE\": \"Moving Out 2\", \"en-US\": \"Moving Out 2\", \"ko-KR\": \"Moving Out 2\", \"pt-BR\": \"Moving Out 2\", \"es-ES\": \"Moving Out 2\", \"ar-AE\": \"Moving Out 2\", \"no-NO\": \"Moving Out 2\", \"fr-CA\": \"Moving Out 2\", \"it-IT\": \"Moving Out 2\", \"pl-PL\": \"Moving Out 2\", \"ru-RU\": \"Moving Out 2\", \"zh-Hans\": \"Moving Out 2\", \"nl-NL\": \"Moving Out 2\", \"pt-PT\": \"Moving Out 2\", \"zh-Hant\": \"Moving Out 2\", \"sv-SE\": \"Moving Out 2\", \"da-DK\": \"Moving Out 2\", \"tr-TR\": \"Moving Out 2\", \"fr-FR\": \"Moving Out 2\", \"en-GB\": \"Moving Out 2\", \"es-419\": \"Moving Out 2\", \"ja-JP\": \"Moving Out 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/0dAAIvBkwmXSXgkcsHMiWCgw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/767315fd1daac41c1ccb1088a51664ba9fbdd39a78369ea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/9a78d8368cfddd29fb078af4a295088c18bf3b52327c1df1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0915/TNKjUaYXXbJJwwWpzVXGY54a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1409/777b349cbb51cde7f4af4b13aa6111e9dc485992ed1e0acd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/827a833ddfacfab06d92f275c211896376e417b6b1fcec60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/7GWCkeeR9O6tQqVzkCemMXAR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/3igVNXzl5oVnBCxk7Pm9c796.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NTJ9yVit4KWNZUBJ6fiGopmD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/gqNP3JnLr5DHqOfg4sjrFq3R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/yGAAnGbXTj8AAfUhyl91kGg4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/NOsWzrp9wFGG5Fy465jBm9T9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1708/szYF4k8ZZENwvm4DKqcbpLqS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1614/43b9aea1c7215ea43e6eca921770ff97a37d21e1dd46957f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-31T12:31:14.310000Z\", \"lastPlayedDateTime\": \"2023-10-31T12:32:32.630000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA08339_00\", \"name\": \"Marvel's Spider-Man 2\", \"localizedName\": \"Marvel's Spider-Man 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 3, \"concept\": {\"id\": 10002456, \"titleIds\": [\"PPSA18582_00\", \"PPSA08338_00\", \"PPSA03016_00\", \"PPSA08339_00\", \"PPSA08340_00\"], \"name\": \"Marvel's Spider-Man 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marvel\\u2019s Spider-Man 2\", \"uk-UA\": \"Marvel's Spider-Man\\u00a02\", \"de-DE\": \"Marvel's Spider-Man 2\", \"en-US\": \"Marvel's Spider-Man 2\", \"ko-KR\": \"\\ub9c8\\ube14 \\uc2a4\\ud30c\\uc774\\ub354\\ub9e8 2\", \"pt-BR\": \"Marvel's Spider-Man 2\", \"es-ES\": \"Marvel's Spider-Man 2\", \"ar-AE\": \"\\u0633\\u0628\\u0627\\u064a\\u062f\\u0631\\u0645\\u0627\\u0646 2 \\u0645\\u0646 \\u0645\\u0627\\u0631\\u0641\\u0644\", \"no-NO\": \"Marvel's Spider-Man 2\", \"fr-CA\": \"Marvel's Spider-Man 2\", \"it-IT\": \"Marvel's Spider-Man 2\", \"pl-PL\": \"Marvel\\u2019s Spider-Man 2\", \"ru-RU\": \"Marvel\\u2019s \\u0427\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a-\\u041f\\u0430\\u0443\\u043a 2\", \"zh-Hans\": \"Marvel's Spider-Man 2\", \"nl-NL\": \"Marvel's Spider-Man 2\", \"pt-PT\": \"Marvel's Spider-Man 2\", \"zh-Hant\": \"Marvel's Spider-Man 2\", \"sv-SE\": \"Marvel's Spider-Man 2\", \"da-DK\": \"Marvel's Spider-Man 2\", \"tr-TR\": \"Marvel's Spider-Man 2\", \"fr-FR\": \"Marvel's Spider-Man\\u00a02\", \"en-GB\": \"Marvel\\u2019s Spider-Man 2\", \"es-419\": \"Marvel's Spider-Man 2\", \"ja-JP\": \"Marvel's Spider-Man 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/SH5KjV5vYiVO2A37EyC6R7Mr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/UC6mZhlE9t70yWbetZcTuqzl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0816/meA3C2fyXd7rH1eFfi5FkeY1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/2028edeaf4c0b60142550a3d6e024b6009853ceb9f51591e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/60eca3ac155247e21850c7d075d01ebf0f3f5dbf19ccd2a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/7efc65605ba3d2fbeb1334beb6ec902121f3e9a6aa509e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/97e9f5fa6e50c185d249956c6f198a2652a9217e69a59ecd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/c9b03454dbf7db5802143951258c17dd040be8508d2468a9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1518/e8f4913ffca62086892053502ae2d7f4b7b05b9c9b2580b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1219/1c7b75d8ed9271516546560d219ad0b22ee0a263b4537bd8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-20T04:18:34.140000Z\", \"lastPlayedDateTime\": \"2023-10-22T02:54:58.510000Z\", \"playDuration\": \"PT2H57M42S\"}, {\"titleId\": \"CUSA32741_00\", \"name\": \"Sonic Superstars\", \"localizedName\": \"Sonic Superstars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004658, \"titleIds\": [\"CUSA32739_00\", \"CUSA32740_00\", \"CUSA43949_00\", \"CUSA43950_00\", \"CUSA43948_00\", \"PPSA17095_00\", \"PPSA06888_00\", \"PPSA17094_00\", \"PPSA17093_00\", \"CUSA32741_00\", \"PPSA06890_00\", \"PPSA06889_00\"], \"name\": \"Sonic Superstars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Superstars\", \"uk-UA\": \"Sonic Superstars\", \"de-DE\": \"Sonic Superstars\", \"en-US\": \"Sonic Superstars\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc288\\ud37c\\uc2a4\\ud0c0\\uc988\", \"pt-BR\": \"Sonic Superstars\", \"es-ES\": \"Sonic Superstars\", \"ar-AE\": \"Sonic Superstars\", \"no-NO\": \"Sonic Superstars\", \"fr-CA\": \"Sonic Superstars\", \"it-IT\": \"Sonic Superstars\", \"pl-PL\": \"Sonic Superstars\", \"ru-RU\": \"Sonic Superstars\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7ea7\\u5de8\\u661f\", \"nl-NL\": \"Sonic Superstars\", \"pt-PT\": \"Sonic Superstars\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d85\\u7d1a\\u5de8\\u661f\", \"sv-SE\": \"Sonic Superstars\", \"da-DK\": \"Sonic Superstars\", \"tr-TR\": \"Sonic Superstars\", \"fr-FR\": \"Sonic Superstars\", \"en-GB\": \"Sonic Superstars\", \"es-419\": \"Sonic Superstars\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30b9\\u30fc\\u30d1\\u30fc\\u30b9\\u30bf\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a2dff20ab6d2e3a4e56c4e4ef6e548f8be6aff918eaebd10.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/83c12a719e7eaf7403955011d2101669b660124a34f7cef6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/7224c066c61e7b760a21a91b6e02d25ba92e867a21db3221.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/fec70275e0c46b9e69fcc130f65cd2abc7af951fab2d42d7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ca7b3adb31c91d54c7911048db5d05673c28615f20d8480f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/66d34862acb309c7aeeb4a66165839fddf3c50d5cc35a581.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/ae80a12a4452926032e03702a444568a8c7734fa3a2271fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9501ee910f86ae364fe2363f13036867f8e551e0ee0824b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/231c7568333c879ac092b4e39b84d57e21e437d16e8eef7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/f2c3d3e010f749f6956de426a4b25cc39094d22a8f62c545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/207a53c626be6dfe1ae96c70afb4578edc3ae6683829a4a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/32327a4cda81262893dde0e28fe8cf6f508df9063f106aae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/c4e44e8d795d86d278ba4d34af1dc53a93c4853eeb8df897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/a249dd0f18c6494d9a68c59857b916f461199d2b49ec2c3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2416/9fb7d209dbb62357ddd5c305f6019a97238fc1bd1b540560.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-17T02:53:12.940000Z\", \"lastPlayedDateTime\": \"2023-10-17T05:29:32.710000Z\", \"playDuration\": \"PT2H29M50S\"}, {\"titleId\": \"CUSA20564_00\", \"name\": \"WE WERE HERE TOGETHER\", \"localizedName\": \"WE WERE HERE TOGETHER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10001202, \"titleIds\": [\"CUSA28546_00\", \"CUSA25209_00\", \"CUSA28545_00\", \"CUSA20564_00\", \"CUSA25073_00\", \"CUSA25208_00\", \"CUSA25837_00\", \"CUSA25838_00\"], \"name\": \"WE WERE HERE TOGETHER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOGETHER\", \"uk-UA\": \"WE WERE HERE TOGETHER\", \"de-DE\": \"WE WERE HERE TOGETHER\", \"en-US\": \"WE WERE HERE TOGETHER\", \"ko-KR\": \"WE WERE HERE TOGETHER\", \"pt-BR\": \"WE WERE HERE TOGETHER\", \"es-ES\": \"WE WERE HERE TOGETHER\", \"ar-AE\": \"WE WERE HERE TOGETHER\", \"no-NO\": \"WE WERE HERE TOGETHER\", \"fr-CA\": \"WE WERE HERE TOGETHER\", \"it-IT\": \"WE WERE HERE TOGETHER\", \"pl-PL\": \"WE WERE HERE TOGETHER\", \"ru-RU\": \"WE WERE HERE TOGETHER\", \"zh-Hans\": \"WE WERE HERE TOGETHER\", \"nl-NL\": \"WE WERE HERE TOGETHER\", \"pt-PT\": \"WE WERE HERE TOGETHER\", \"zh-Hant\": \"WE WERE HERE TOGETHER\", \"sv-SE\": \"WE WERE HERE TOGETHER\", \"da-DK\": \"WE WERE HERE TOGETHER\", \"tr-TR\": \"WE WERE HERE TOGETHER\", \"fr-FR\": \"WE WERE HERE TOGETHER\", \"en-GB\": \"WE WERE HERE TOGETHER\", \"es-419\": \"WE WERE HERE TOGETHER\", \"ja-JP\": \"WE WERE HERE TOGETHER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/IvtNo3OqxvnoFl6MBlrIG7AM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/qRpAAaP1r4pgfVkjp3Am3Iwu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/MH2mECXUkJKkR2zo7D4EVO1t.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/iUQuX666eZPqte0Fyj5Ng9Ls.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/2YJBlfVar2nWGepVNtBSCi2O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/fACjqJ0fRcXjMTpKdEwJboEj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/r4CIxp7y0aW9h3yBDFXcRad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/RMaNvCGnbN2LKBWNve9PrOF0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/PqsoATGJFoA0tuWyDZ1kNWb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/gr8Y6ekSgcm6YDS3SX6jEDf4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/coynI9etiUEObkwbbYsjG3YB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/U2sFcgOKPrOVRjfInaMOFfQc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/LegN4eFCgfzidjQjIapsBbWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/w5N1Hr4e6HWDfnyj1qphxRNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3107/UcmgwVeo1t9owStTTxKY0gAL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T14:20:17.060000Z\", \"lastPlayedDateTime\": \"2023-10-17T02:45:37.970000Z\", \"playDuration\": \"PT2H40M1S\"}, {\"titleId\": \"PPSA02840_00\", \"name\": \"The Crew Motorfest\", \"localizedName\": \"The Crew Motorfest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10002313, \"titleIds\": [\"PPSA13747_00\", \"PPSA14723_00\", \"PPSA02839_00\", \"PPSA02840_00\", \"PPSA02838_00\", \"CUSA40692_00\", \"CUSA41734_00\", \"CUSA26572_00\", \"CUSA26573_00\", \"CUSA40691_00\", \"PPSA13743_00\", \"CUSA26571_00\", \"CUSA40993_00\", \"PPSA13968_00\"], \"name\": \"The Crew Motorfest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Crew Motorfest\", \"uk-UA\": \"The Crew Motorfest\", \"de-DE\": \"The Crew Motorfest\", \"en-US\": \"The Crew Motorfest\", \"ko-KR\": \"The Crew Motorfest\", \"pt-BR\": \"The Crew Motorfest\", \"es-ES\": \"The Crew Motorfest\", \"ar-AE\": \"The Crew Motorfest\", \"no-NO\": \"The Crew Motorfest\", \"fr-CA\": \"The Crew Motorfest\", \"it-IT\": \"The Crew Motorfest\", \"pl-PL\": \"The Crew Motorfest\", \"ru-RU\": \"The Crew Motorfest\", \"zh-Hans\": \"\\u98d9\\u9177\\u8f66\\u795e\\uff1a\\u8f70\\u9e23\\u76db\\u5178\", \"nl-NL\": \"The Crew Motorfest\", \"pt-PT\": \"The Crew Motorfest\", \"zh-Hant\": \"\\u98c6\\u9177\\u8eca\\u795e\\uff1a\\u52d5\\u529b\\u6176\\u5178\", \"sv-SE\": \"The Crew Motorfest\", \"da-DK\": \"The Crew Motorfest\", \"tr-TR\": \"The Crew Motorfest\", \"fr-FR\": \"The Crew Motorfest\", \"en-GB\": \"The Crew Motorfest\", \"es-419\": \"The Crew Motorfest\", \"ja-JP\": \"\\u30b6 \\u30af\\u30eb\\u30fc\\uff1a\\u30e2\\u30fc\\u30bf\\u30fc\\u30d5\\u30a7\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2010/Cf1gNM0lVk5e3uAWoX14o9VS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/5a529d7f46cbc60d1642668290e411523e5108a0b4d50ffe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/b6034169263e4dc8b34ab11690dbd4d72e11501f4066ab8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/dad1086dcb9113fda41fd623b6ea54f1e181190a53fb9d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/67dc433bc70f46a36e97538ad92062d49e09f6c2dcce7458.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/834dce24af57f67eba76fc49aebceee394716a0c6aa21d6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/86510643faf5c270150ccc182d791d7ef0a061dc622ac2cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/b26682e8207109a1f7f15af6064bf1e5bb8de2be54b36853.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0803/faec114f5ef65af0c121053e0426d11d98eb810bc206ae17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2315/607d9ed1ac762c9de33ef73fd09b3431d0b96ef4985ac2fb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-06T11:41:13.910000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:43:33.340000Z\", \"playDuration\": \"PT1H27M17S\"}, {\"titleId\": \"PPSA01762_00\", \"name\": \"DMM.com\", \"localizedName\": \"DMM.com\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"category\": \"ps5_web_based_media_app\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201149, \"titleIds\": [\"CUSA03302_00\", \"PPSA01762_00\"], \"name\": \"DMM.com\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"DMM.com\", \"en-GB\": \"DMM.com\", \"ja-JP\": \"DMM.com\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/OFFcQ6SWx8uhAsRirV0Ou2n8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3004/kx7seXKngaI8MG1CpXZWVOp2.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2907/X1Z6eakrPk4V45XuKT7Houew.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0801/VmOZL5VR4HnUdZYjFyLLQS99.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-12T08:40:04.430000Z\", \"lastPlayedDateTime\": \"2023-10-16T12:00:22.410000Z\", \"playDuration\": \"PT2H20M16S\"}, {\"titleId\": \"CUSA45152_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:54:43.420000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:58:27.450000Z\", \"playDuration\": \"PT3M40S\"}, {\"titleId\": \"CUSA45153_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:48:11.890000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:54:39.250000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA45151_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:42:13.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:48:07.660000Z\", \"playDuration\": \"PT5M31S\"}, {\"titleId\": \"CUSA45150_00\", \"name\": \"Rally Racing: Cars & Drift Mania\", \"localizedName\": \"Rally Racing: Cars & Drift Mania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009192, \"titleIds\": [\"CUSA45150_00\", \"CUSA45153_00\", \"CUSA45151_00\", \"CUSA45152_00\"], \"name\": \"Rally Racing: Cars & Drift Mania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"RACING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rally Racing: Cars & Drift Mania\", \"uk-UA\": \"Rally Racing: Cars & Drift Mania\", \"de-DE\": \"Rally Racing: Cars & Drift Mania\", \"en-US\": \"Rally Racing: Cars & Drift Mania\", \"ko-KR\": \"Rally Racing: Cars & Drift Mania\", \"pt-BR\": \"Rally Racing: Cars & Drift Mania\", \"es-ES\": \"Rally Racing: Cars & Drift Mania\", \"ar-AE\": \"Rally Racing: Cars & Drift Mania\", \"no-NO\": \"Rally Racing: Cars & Drift Mania\", \"fr-CA\": \"Rally Racing: Cars & Drift Mania\", \"it-IT\": \"Rally Racing: Cars & Drift Mania\", \"pl-PL\": \"Rally Racing: Cars & Drift Mania\", \"ru-RU\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hans\": \"Rally Racing: Cars & Drift Mania\", \"nl-NL\": \"Rally Racing: Cars & Drift Mania\", \"pt-PT\": \"Rally Racing: Cars & Drift Mania\", \"zh-Hant\": \"Rally Racing: Cars & Drift Mania\", \"sv-SE\": \"Rally Racing: Cars & Drift Mania\", \"da-DK\": \"Rally Racing: Cars & Drift Mania\", \"tr-TR\": \"Rally Racing: Cars & Drift Mania\", \"fr-FR\": \"Rally Racing: Cars & Drift Mania\", \"en-GB\": \"Rally Racing: Cars & Drift Mania\", \"es-419\": \"Rally Racing: Cars & Drift Mania\", \"ja-JP\": \"\\u30e9\\u30ea\\u30fc\\u30ec\\u30fc\\u30b7\\u30f3\\u30b0\\uff1a\\u30ab\\u30fc\\u30ba\\uff06\\u30c9\\u30ea\\u30d5\\u30c8\\u30de\\u30cb\\u30a2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/1546899851fee6297fd954795121e5120cbe7627af89e28e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/2ac764b603e976a576c4bc6df424b9bc0b0d74fa2de086e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/4b002a4b0fb7ca016d3b66dbf1e8b660ec413f2e4355dd3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/7b73c85712370324de7b607339f099df392d981e74fbc927.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/84ee82bc8fe7904516575543c9ce41d9647722dfe39c3936.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/893041e1e9a10fc32d0430d40a82f05d01d5ba191eab7e66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/8c83fd5067dce879c2177f6d76c345cd0dc68abb86fc7c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ca894e6f2d9f690e24bf03dad8147f197faffe3ccbc321d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/df3113d6b7898e9558bb8109c37aa8c165fb05182a89b897.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/ec4c48960a99dee476cebf2b5b275b2e29f7ad2f0f1d70c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1009/bc4d30cc4d1bb751d44c33358fc47e9218e97097400ff36d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:25:05.410000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:42:03.850000Z\", \"playDuration\": \"PT14M30S\"}, {\"titleId\": \"PPSA16765_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T13:07:31.450000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:22:57.240000Z\", \"playDuration\": \"PT13M53S\"}, {\"titleId\": \"CUSA43664_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T12:15:00.950000Z\", \"lastPlayedDateTime\": \"2023-10-05T13:07:29.390000Z\", \"playDuration\": \"PT50M18S\"}, {\"titleId\": \"PPSA15830_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:55:32.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T12:14:45.710000Z\", \"playDuration\": \"PT19M\"}, {\"titleId\": \"PPSA15831_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:22:36.780000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:55:30.700000Z\", \"playDuration\": \"PT20M8S\"}, {\"titleId\": \"CUSA42782_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T11:01:42.610000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:22:34.580000Z\", \"playDuration\": \"PT20M39S\"}, {\"titleId\": \"CUSA42783_00\", \"name\": \"Garlic\", \"localizedName\": \"Garlic\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008147, \"titleIds\": [\"CUSA42783_00\", \"CUSA42782_00\", \"PPSA15830_00\", \"PPSA15831_00\"], \"name\": \"Garlic\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Garlic\", \"uk-UA\": \"Garlic\", \"de-DE\": \"Garlic\", \"en-US\": \"Garlic\", \"pt-BR\": \"Garlic\", \"es-ES\": \"Garlic\", \"ar-AE\": \"Garlic\", \"no-NO\": \"Garlic\", \"fr-CA\": \"Garlic\", \"it-IT\": \"Garlic\", \"pl-PL\": \"Garlic\", \"ru-RU\": \"Garlic\", \"nl-NL\": \"Garlic\", \"pt-PT\": \"Garlic\", \"sv-SE\": \"Garlic\", \"da-DK\": \"Garlic\", \"tr-TR\": \"Garlic\", \"fr-FR\": \"Garlic\", \"en-GB\": \"Garlic\", \"es-419\": \"Garlic\", \"ja-JP\": \"Garlic\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3ff426f1e0a92a60e9f136e65d305a87fbec4d0141d28ae8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/3c7cdf0888efaa10a7a21d061b89e5223a3d25ada5159c7d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/fa2844085c75b347c139370ff5818d0cb513843262eb4c7f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/a454eceb757e2f0bf2c8b76957a8e47ce410719ce5084d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/bd01d97d90a708893b7193423ead88c4e410436389f0f475.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c6042bc74f1abfff1ae81d97ec13a04939796b10a655793c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/c428a4080fe6c701fda6bd53307648b3188f206ef7f989e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/0d992410cba2e0bf8edfb24de93111ef4c9a434f21be5a42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/8004c2869f6605edc7282459431be992e80c5fe463fea0d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/4b75fb1bddca58e6529dbc2baf422e58d511f270bd361480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/735f9dfea57608839deec27f3c331f21a7be0678aba354a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/6a6fd120129589834ea1e3727bf29c2114773d3394d09d7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1418/eb6fecdbf8e2bca4941e045997bdd66e0213a3eb56a54962.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T10:32:05.580000Z\", \"lastPlayedDateTime\": \"2023-10-05T11:01:40.330000Z\", \"playDuration\": \"PT27M20S\"}, {\"titleId\": \"PPSA12613_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:41:02.220000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:42:05.560000Z\", \"playDuration\": \"PT52S\"}, {\"titleId\": \"PPSA12614_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:40:00.840000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:41:00.100000Z\", \"playDuration\": \"PT55S\"}, {\"titleId\": \"CUSA39570_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:38:40.540000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:39:58.360000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA39571_00\", \"name\": \"Alien Returns\", \"localizedName\": \"Alien Returns\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006952, \"titleIds\": [\"PPSA12614_00\", \"CUSA39572_00\", \"CUSA39573_00\", \"CUSA39571_00\", \"PPSA12613_00\", \"CUSA39570_00\"], \"name\": \"Alien Returns\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alien Returns\", \"uk-UA\": \"Alien Returns\", \"de-DE\": \"Alien Returns\", \"en-US\": \"Alien Returns\", \"ko-KR\": \"Alien Returns\", \"pt-BR\": \"Alien Returns\", \"es-ES\": \"Alien Returns\", \"ar-AE\": \"Alien Returns\", \"no-NO\": \"Alien Returns\", \"fr-CA\": \"Alien Returns\", \"it-IT\": \"Alien Returns\", \"pl-PL\": \"Alien Returns\", \"ru-RU\": \"Alien Returns\", \"zh-Hans\": \"Alien Returns\", \"nl-NL\": \"Alien Returns\", \"pt-PT\": \"Alien Returns\", \"zh-Hant\": \"Alien Returns\", \"sv-SE\": \"Alien Returns\", \"da-DK\": \"Alien Returns\", \"tr-TR\": \"Alien Returns\", \"fr-FR\": \"Alien Returns\", \"en-GB\": \"Alien Returns\", \"es-419\": \"Alien Returns\", \"ja-JP\": \"Alien Returns\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/3009/a4b5ef22d500543571485c5d1f94caf860fc703abd8b3b2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/2p59tsSzy5UhojXensGxQ72s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/eMQRvTD87lh0XLrCZhm7GZpx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/QjWonzOtKiWMECpKUkHMASNj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/M3CZsrHkf0T9V0tSHLPcy4bb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/SyWAV6PBmQA9g9KmrTW9fa12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/edfe3cdb61f540064c509eaec4c60d2bf2b372dda4d70c31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/bbf83cb5324e93f9f180e81d7de790445fa54b0416c35f3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4ca43ecceb0be08adb9dbde4bc17da903a1bf07428e07f4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/73ae83f7cff195eec6a1ab052a902db91a2778cdc203c0ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/f3bf361f88031bed559dae7792a8f0e28576263a75bf2ee9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/b5a597ba9f2bb6f62fa94eb5b5abe2e8ddfd1379ebbe5836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2918/BS9TjJExf5UAOxNixfJq1Ntf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T08:37:25.870000Z\", \"lastPlayedDateTime\": \"2023-10-05T08:38:38.400000Z\", \"playDuration\": \"PT1M8S\"}, {\"titleId\": \"CUSA45034_00\", \"name\": \"The Light in the Darkness\", \"localizedName\": \"The Light in the Darkness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002497, \"titleIds\": [\"PPSA03738_00\", \"CUSA45366_00\", \"CUSA45034_00\", \"PPSA03085_00\", \"CUSA29814_00\"], \"name\": \"The Light in the Darkness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Light in the Darkness\", \"uk-UA\": \"The Light in the Darkness\", \"de-DE\": \"The Light in the Darkness\", \"en-US\": \"The Light in the Darkness\", \"ko-KR\": \"The Light in the Darkness\", \"pt-BR\": \"The Light in the Darkness\", \"es-ES\": \"The Light in the Darkness\", \"ar-AE\": \"The Light in the Darkness\", \"no-NO\": \"The Light in the Darkness\", \"fr-CA\": \"The Light in the Darkness\", \"it-IT\": \"The Light in the Darkness\", \"pl-PL\": \"The Light in the Darkness\", \"ru-RU\": \"The Light in the Darkness\", \"zh-Hans\": \"The Light in the Darkness\", \"nl-NL\": \"The Light in the Darkness\", \"pt-PT\": \"The Light in the Darkness\", \"zh-Hant\": \"The Light in the Darkness\", \"sv-SE\": \"The Light in the Darkness\", \"da-DK\": \"The Light in the Darkness\", \"tr-TR\": \"The Light in the Darkness\", \"fr-FR\": \"The Light in the Darkness\", \"en-GB\": \"The Light in the Darkness\", \"es-419\": \"The Light in the Darkness\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T05:09:26.150000Z\", \"lastPlayedDateTime\": \"2023-10-05T07:10:00.800000Z\", \"playDuration\": \"PT1H5M28S\"}, {\"titleId\": \"PPSA16081_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:50:13.440000Z\", \"lastPlayedDateTime\": \"2023-10-05T05:08:19.190000Z\", \"playDuration\": \"PT17M51S\"}, {\"titleId\": \"PPSA16083_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T04:29:52.000000Z\", \"lastPlayedDateTime\": \"2023-10-05T04:50:11.360000Z\", \"playDuration\": \"PT19M44S\"}, {\"titleId\": \"PPSA16084_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:27:07.930000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:44:43.530000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"PPSA16082_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T02:09:47.200000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:26:59.360000Z\", \"playDuration\": \"PT17M\"}, {\"titleId\": \"CUSA42988_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:38:02.180000Z\", \"lastPlayedDateTime\": \"2023-10-05T02:06:41.280000Z\", \"playDuration\": \"PT28M21S\"}, {\"titleId\": \"CUSA42990_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:19:45.350000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:37:35.780000Z\", \"playDuration\": \"PT17M9S\"}, {\"titleId\": \"CUSA42991_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-05T01:00:11.600000Z\", \"lastPlayedDateTime\": \"2023-10-05T01:19:30.010000Z\", \"playDuration\": \"PT18M29S\"}, {\"titleId\": \"CUSA42989_00\", \"name\": \"Sokolab\", \"localizedName\": \"Sokolab\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008227, \"titleIds\": [\"CUSA42988_00\", \"PPSA16081_00\", \"PPSA16082_00\", \"CUSA42989_00\", \"PPSA16084_00\", \"PPSA16083_00\", \"CUSA42990_00\", \"CUSA42991_00\"], \"name\": \"Sokolab\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokolab\", \"uk-UA\": \"Sokolab\", \"de-DE\": \"Sokolab\", \"en-US\": \"Sokolab\", \"ko-KR\": \"Sokolab\", \"pt-BR\": \"Sokolab\", \"es-ES\": \"Sokolab\", \"ar-AE\": \"Sokolab\", \"no-NO\": \"Sokolab\", \"fr-CA\": \"Sokolab\", \"it-IT\": \"Sokolab\", \"pl-PL\": \"Sokolab\", \"ru-RU\": \"Sokolab\", \"zh-Hans\": \"Sokolab\", \"nl-NL\": \"Sokolab\", \"pt-PT\": \"Sokolab\", \"zh-Hant\": \"Sokolab\", \"sv-SE\": \"Sokolab\", \"da-DK\": \"Sokolab\", \"tr-TR\": \"Sokolab\", \"fr-FR\": \"Sokolab\", \"en-GB\": \"Sokolab\", \"es-419\": \"Sokolab\", \"ja-JP\": \"Sokolab\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/bafb4d498b2e96ea2db9dc72da3b885ee32b726d352c1b48.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/00d44de050ca6af2cac4a8150ff38ae282cc052cc5c8086b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/4bccfbb23803261c7a0170671d52ccb1c761ce59e7bd333d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1215/432c2c56ff3d8c03daf3703df5d0fd3b4d018870bdbc51bc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/5330e892cbddc8c696360448699eaad1feb0157cbc79aaa9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/002599040f953687ae2284d2d7546b7fdc0a7822ae44b13b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/911cdcd442a82aa568db8b2643fcdec1b7f48c1ee34ddaee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/f4dff434e12641e558afb5635f055ecf36134a7fe48ef649.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/6f92096ae354eba43fe96cf66f5b96d76e5867cad667a385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/1252904ba767f278614d6eb66727587ea135a2d60469e2fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/7f3fa8e1be1eb86a053c5aaddf9d7411997b6140e67a0b1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/0c21ae1c41cf99287deb87e277cb088eea7618de7b3ef8e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/9c1933319856ed908a8509e2939a0c22e764fe2ae35c8f10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/af9ff2973d9f046e7077e4cb405d2d12c040312500b7f1f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/c37a23942507aedf92455088fd1368b770367177d94a047c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2721/cfc1bd6983925348e8d329b603ce0036b306aaf3b0ea2839.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0613/3e481a5cf9a5dc878247bb10e151a00dedf69a8557f559e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T06:49:30.790000Z\", \"lastPlayedDateTime\": \"2023-10-04T07:14:37.790000Z\", \"playDuration\": \"PT24M39S\"}, {\"titleId\": \"CUSA45248_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T05:39:23.710000Z\", \"lastPlayedDateTime\": \"2023-10-04T06:24:46.440000Z\", \"playDuration\": \"PT45M9S\"}, {\"titleId\": \"CUSA45249_00\", \"name\": \"Wire Lips\", \"localizedName\": \"Wire Lips\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009243, \"titleIds\": [\"CUSA45248_00\", \"CUSA45249_00\", \"CUSA45250_00\", \"CUSA45251_00\"], \"name\": \"Wire Lips\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wire Lips\", \"uk-UA\": \"Wire Lips\", \"de-DE\": \"Wire Lips\", \"en-US\": \"Wire Lips\", \"ko-KR\": \"Wire Lips\", \"pt-BR\": \"Wire Lips\", \"es-ES\": \"Wire Lips\", \"ar-AE\": \"Wire Lips\", \"no-NO\": \"Wire Lips\", \"fr-CA\": \"Wire Lips\", \"it-IT\": \"Wire Lips\", \"pl-PL\": \"Wire Lips\", \"ru-RU\": \"Wire Lips\", \"zh-Hans\": \"Wire Lips\", \"nl-NL\": \"Wire Lips\", \"pt-PT\": \"Wire Lips\", \"zh-Hant\": \"Wire Lips\", \"sv-SE\": \"Wire Lips\", \"da-DK\": \"Wire Lips\", \"tr-TR\": \"Wire Lips\", \"fr-FR\": \"Wire Lips\", \"en-GB\": \"Wire Lips\", \"es-419\": \"Wire Lips\", \"ja-JP\": \"Wire Lips\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4ce71a8915d6fe5b3e5afd469f66442c68dca99b6a542257.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/4f8de8e2f8ab5a203556bc9ed531fbccf13eb97098e3bb23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/558d1a4fbf6c6cae2e8fc445d86a99f0509370262a6e80be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a377ca261d2f11d9f46703de1c1788be96b16607da04ed01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a406ae2e9ee71bec81019b0823c3a55df93ee8cf597115a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/a8304086d8ba154003abce4b9033bd911966525c6ddfab63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/afab2be86402b4f1656a256d207f2ceeded2480a030837b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/b33fe67e77faa4c783ec19052a0c483df79b2218390d7eac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/bb78d4f8c6cba8ac6f1300613b2ad28ee0e6f4ecca5689a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/e49bbbd31420feefbd3ccdcde1317df9f5b0733542ef44d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1110/ac80fecc7989466d431fdaabd30a0de77ec0b15fe8a405c2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2213/61155704af1a47f7fcd8caeb38ef43abaf6a9d1d19156eec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-04T04:48:48.580000Z\", \"lastPlayedDateTime\": \"2023-10-04T05:39:19.580000Z\", \"playDuration\": \"PT50M14S\"}, {\"titleId\": \"CUSA45500_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-03T10:32:02.740000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:48:22.010000Z\", \"playDuration\": \"PT11M15S\"}, {\"titleId\": \"CUSA33670_00\", \"name\": \"Age of Sokoban\", \"localizedName\": \"Age of Sokoban\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005060, \"titleIds\": [\"CUSA46642_00\", \"CUSA45500_00\", \"CUSA33670_00\", \"CUSA46641_00\"], \"name\": \"Age of Sokoban\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Age of Sokoban\", \"uk-UA\": \"Age of Sokoban\", \"de-DE\": \"Age of Sokoban\", \"en-US\": \"Age of Sokoban\", \"pt-BR\": \"Age of Sokoban\", \"es-ES\": \"Age of Sokoban\", \"ar-AE\": \"Age of Sokoban\", \"no-NO\": \"Age of Sokoban\", \"fr-CA\": \"Age of Sokoban\", \"it-IT\": \"Age of Sokoban\", \"pl-PL\": \"Age of Sokoban\", \"ru-RU\": \"Age of Sokoban\", \"nl-NL\": \"Age of Sokoban\", \"pt-PT\": \"Age of Sokoban\", \"sv-SE\": \"Age of Sokoban\", \"da-DK\": \"Age of Sokoban\", \"tr-TR\": \"Age of Sokoban\", \"fr-FR\": \"Age of Sokoban\", \"en-GB\": \"Age of Sokoban\", \"es-419\": \"Age of Sokoban\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e36be9b7166d45825d20b81de661bb3b01b3d3c7ac26d9fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/8b370819153f56975927ccb45c6f3f747597a969b837d74a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d1e4b6753f46d4a8880336e051291569e8e01eac435c57b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/20c30e66ca5cd4f5056708a9784fd3e240091aaa035d390b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/aa16ead81966c65bc24259a5d30fea87fd2c80b2c1287362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/0d56732ad64b9007663705426468502447dcf4bbcb260268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6f42ca534c25bf6e78bc61c72222cd0996f254079e7e550.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/19d2062f33419c1a7c87e9914bbc20cbbbe5b33fc6eea40d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/11864fcd16872c842d5b4be1a52263dc407a53e5888eb279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/e6654606d19db58497ee2fdc4e7f7ff2d28cbd028648d37b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/50c079f35a01ca03ecf63868ae747e1e6e09995df1762725.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/24b1909794ee4a1f5850952241d7f4732cb2ceffde5b16ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/91901e14ad5b5b51fda7238fd6f67695f7049ac95f8e4217.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0510/79025ed891a5ed5a27e8007b9fb0cabb3729629d5ba7caf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:30:34.850000Z\", \"lastPlayedDateTime\": \"2023-10-03T10:31:58.800000Z\", \"playDuration\": \"PT15M54S\"}, {\"titleId\": \"PPSA05041_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T23:00:44.560000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:29:59.370000Z\", \"playDuration\": \"PT28M42S\"}, {\"titleId\": \"PPSA05040_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:58:23.140000Z\", \"lastPlayedDateTime\": \"2023-10-02T23:00:42.450000Z\", \"playDuration\": \"PT1H7M49S\"}, {\"titleId\": \"CUSA30042_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T11:18:59.220000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:58:21.200000Z\", \"playDuration\": \"PT39M14S\"}, {\"titleId\": \"CUSA30043_00\", \"name\": \"Love Kuesuto\", \"localizedName\": \"Love Kuesuto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003674, \"titleIds\": [\"CUSA30042_00\", \"PPSA05040_00\", \"CUSA30044_00\", \"PPSA05041_00\", \"CUSA30043_00\"], \"name\": \"Love Kuesuto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Love Kuesuto\", \"uk-UA\": \"Love Kuesuto\", \"de-DE\": \"Love Kuesuto\", \"en-US\": \"Love Kuesuto\", \"pt-BR\": \"Love Kuesuto\", \"es-ES\": \"Love Kuesuto\", \"ar-AE\": \"Love Kuesuto\", \"no-NO\": \"Love Kuesuto\", \"fr-CA\": \"Love Kuesuto\", \"it-IT\": \"Love Kuesuto\", \"pl-PL\": \"Love Kuesuto\", \"ru-RU\": \"Love Kuesuto\", \"nl-NL\": \"Love Kuesuto\", \"pt-PT\": \"Love Kuesuto\", \"sv-SE\": \"Love Kuesuto\", \"da-DK\": \"Love Kuesuto\", \"tr-TR\": \"Love Kuesuto\", \"fr-FR\": \"Love Kuesuto\", \"en-GB\": \"Love Kuesuto\", \"es-419\": \"Love Kuesuto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/fdde36cf3354127499833a5594b8f85dcf1940041464fb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a371de0bbd0797318c6a09b42e7a24c568a380f001c56530.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e9205e36711d5914f4ba8f7412a21b4105360347a6c3890f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/3c6714bfb029a09b1e3e647d7d4a332ffa5e48dbb66cdedd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/45b917244087a92185cf37c8210473ad03cecf994bc8c047.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/de1486bfd10a430dee21d146d6ecc19d13925829ee111594.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/099d013ca29bab87641fc2578c1c594f03613c1196699336.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/e7e6cfd2740cc4cfa76beedcf8ee1c362a5c9cf69afcfb62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a417b227f2ba67f71df2089b7879c6cf6713319b9a075787.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/cecc783e75cfb1d649fac3b67d6373a89651bff5b047c129.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/243c8f23e0b7aeb3ba369f9efc7f82e2637cdc87a7309785.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/a22a9ab9188268b8b8f49ebf9f9d599fd2f6a71ebab45332.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0915/274744628f40ec0eff7cdd7af26ec1de82b1e233c218e59c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:44:40.950000Z\", \"lastPlayedDateTime\": \"2023-10-02T11:18:57.260000Z\", \"playDuration\": \"PT28M55S\"}, {\"titleId\": \"PPSA15843_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:36:33.780000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:40:25.390000Z\", \"playDuration\": \"PT3M30S\"}, {\"titleId\": \"PPSA15844_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:33:02.240000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:36:31.740000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA42790_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:28:11.160000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:33:00.140000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA42791_00\", \"name\": \"Sakura MMO Extra\", \"localizedName\": \"Sakura MMO Extra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008154, \"titleIds\": [\"CUSA42790_00\", \"CUSA42791_00\", \"PPSA15844_00\", \"PPSA15843_00\"], \"name\": \"Sakura MMO Extra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sakura MMO Extra\", \"uk-UA\": \"Sakura MMO Extra\", \"de-DE\": \"Sakura MMO Extra\", \"en-US\": \"Sakura MMO Extra\", \"pt-BR\": \"Sakura MMO Extra\", \"es-ES\": \"Sakura MMO Extra\", \"ar-AE\": \"Sakura MMO Extra\", \"no-NO\": \"Sakura MMO Extra\", \"fr-CA\": \"Sakura MMO Extra\", \"it-IT\": \"Sakura MMO Extra\", \"pl-PL\": \"Sakura MMO Extra\", \"ru-RU\": \"Sakura MMO Extra\", \"nl-NL\": \"Sakura MMO Extra\", \"pt-PT\": \"Sakura MMO Extra\", \"sv-SE\": \"Sakura MMO Extra\", \"da-DK\": \"Sakura MMO Extra\", \"tr-TR\": \"Sakura MMO Extra\", \"fr-FR\": \"Sakura MMO Extra\", \"en-GB\": \"Sakura MMO Extra\", \"es-419\": \"Sakura MMO Extra\", \"ja-JP\": \"\\u30b5\\u30af\\u30e9\\u30fbMMO \\u30a8\\u30af\\u30b9\\u30c8\\u30e9 \\uff5e\\u65b0\\u305f\\u306a\\u308b\\u6311\\u6226\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/70aa27a63442692020771cee1bd0e2c62c1747a84150c02b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/bdcb72a535ffb4d886d944a4719eabe0da1b142ec2026c4a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/73359fb33756b5cc0c4c74b1ea446baf72f8703e6f8eab94.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/89090a38b640e87f6103bad67225401c81b5541698442642.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/1d9bf719287f748cf010593bfbd84ed193520857ee3be2bf.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/45e4adf2a99299a86a4726d199a3bb70ebefb03611224ad0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/34e729b7d8bfb69bc921897894fee89bc931ac5d884e98f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/3a4c81b6d7e9ae549bda11927b87dc0aae73727f7336aab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/ace2d9b06e7ae678aa4e4f638a7f2bcf745ac8c007e33090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/58e995b1171b25faf843737f7f76ed0d582d5dfe7d449b4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/f8382138eaafec129952b196a42886ed84101dccb386c92a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/c7030da7581b291e3bc1c9ed4f9724c9a40f1bbcc87a5fb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3117/8e860483ed27943ec2691e92b402521f0f008dce11aa63dc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-02T10:24:08.320000Z\", \"lastPlayedDateTime\": \"2023-10-02T10:28:09.170000Z\", \"playDuration\": \"PT3M53S\"}, {\"titleId\": \"PPSA18663_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:32:52.720000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:35:16.550000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA18661_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:29:59.390000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:32:50.260000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA18662_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:26:39.430000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:29:56.900000Z\", \"playDuration\": \"PT1M54S\"}, {\"titleId\": \"CUSA45280_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:21:54.210000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:26:35.920000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA45190_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:15:27.790000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:21:50.590000Z\", \"playDuration\": \"PT5M56S\"}, {\"titleId\": \"CUSA45279_00\", \"name\": \"Zombiezz\", \"localizedName\": \"Zombiezz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009211, \"titleIds\": [\"CUSA45190_00\", \"CUSA45279_00\", \"CUSA45280_00\", \"PPSA18663_00\", \"PPSA18662_00\", \"PPSA18661_00\"], \"name\": \"Zombiezz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zombiezz\", \"uk-UA\": \"Zombiezz\", \"de-DE\": \"Zombiezz\", \"en-US\": \"Zombiezz\", \"pt-BR\": \"Zombiezz\", \"es-ES\": \"Zombiezz\", \"ar-AE\": \"Zombiezz\", \"no-NO\": \"Zombiezz\", \"fr-CA\": \"Zombiezz\", \"it-IT\": \"Zombiezz\", \"pl-PL\": \"Zombiezz\", \"ru-RU\": \"Zombiezz\", \"nl-NL\": \"Zombiezz\", \"pt-PT\": \"Zombiezz\", \"sv-SE\": \"Zombiezz\", \"da-DK\": \"Zombiezz\", \"tr-TR\": \"Zombiezz\", \"fr-FR\": \"Zombiezz\", \"en-GB\": \"Zombiezz\", \"es-419\": \"Zombiezz\", \"ja-JP\": \"Zombiezz\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/432bcfed28172184b258c723ef26f3173db1c5b4c33bfe19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/7c1b47669d310e7c16fe43d8664c48ebe37d456e7302dda8.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/59b0e18b0e012147e802b4aaa4f565f7d3cc64a9004c13e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/1c51c2f793298389171bf6ac4b9fd18fb5d660de6879587c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/19251f74784d0c576568d11c00b0ece6a6c3b37134880b1e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/ddf0977ef6e2a376ea4063512a0e9fe67437e184870ec99f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/095dda70e77dd8cff38f1b49369f9e1bd36d1737589e960b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/bb971e436bfbf0c18592b614bc07b227737d073fec2eec44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/10c0c1d835ceeb3f3590f7d2cd96223fe038e184974bc2b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/26a3e41cc292e5f7747ce08ef02bf904f3a48a4c9efcc5f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/031e22838f850ee087b71549156eb64fe602741b34d12419.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/9ae48295498b72875611301218c88566a95e970f6dd95ed3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5a87987b967f9cc361d7bc92c70fb8250004cc7544d2a505.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/ce5acdce189ccfc5e3f83f4d8fb98bc34fac88e86f94bf24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/2ed2cb2bde179922d9cdc53f577246c65a3a5c5ca45c5f22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1320/5be3bd6e4fbcbcd2c53644ccfead0b69a7de78e045ab7580.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2821/8488d841d75ff69dcd14cdb96baa6c22ff363f8d77280ab0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:06:43.700000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:15:24.150000Z\", \"playDuration\": \"PT6M26S\"}, {\"titleId\": \"PPSA11421_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T12:01:49.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:05:36.960000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"PPSA11420_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:57:54.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T12:01:47.810000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"CUSA38190_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:54:06.480000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:57:52.840000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA38189_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-10-01T11:36:36.180000Z\", \"lastPlayedDateTime\": \"2023-10-01T11:54:03.640000Z\", \"playDuration\": \"PT4M8S\"}, {\"titleId\": \"PPSA01475_00\", \"name\": \"Ratchet & Clank: Rift Apart\", \"localizedName\": \"Ratchet & Clank: Rift Apart\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 11, \"concept\": {\"id\": 10000669, \"titleIds\": [\"PPSA01476_00\", \"PPSA03144_00\", \"PPSA01474_00\", \"PPSA01475_00\", \"PPSA01473_00\", \"PPSA03141_00\", \"PPSA05968_00\", \"PPSA03142_00\", \"PPSA03143_00\"], \"name\": \"Ratchet & Clank: Rift Apart\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ratchet & Clank: Rift Apart\", \"uk-UA\": \"Ratchet & Clank: Rift Apart\", \"de-DE\": \"Ratchet & Clank: Rift Apart\", \"en-US\": \"Ratchet & Clank: Rift Apart\", \"ko-KR\": \"Ratchet & Clank: Rift Apart\", \"pt-BR\": \"Ratchet & Clank: Em Uma Outra Dimens\\u00e3o\", \"es-ES\": \"RATCHET & CLANK: UNA DIMENSI\\u00d3N APARTE\", \"ar-AE\": \"Ratchet & Clank \\u0634\\u0642 \\u0637\\u0631\\u064a\\u0642\\u0643\", \"no-NO\": \"Ratchet & Clank: Rift Apart\", \"fr-CA\": \"Ratchet & Clank: Rift Apart\", \"it-IT\": \"Ratchet & Clank: Rift Apart\", \"pl-PL\": \"Ratchet & Clank: Rift Apart\", \"ru-RU\": \"Ratchet & Clank: \\u0421\\u043a\\u0432\\u043e\\u0437\\u044c \\u043c\\u0438\\u0440\\u044b\", \"zh-Hans\": \"\\u745e\\u5947\\u4e0e\\u53ee\\u5f53 \\u65f6\\u7a7a\\u8df3\\u8f6c\\u2122\", \"nl-NL\": \"Ratchet & Clank: Rift Apart\", \"pt-PT\": \"RATCHET & CLANK: UMA DIMENS\\u00c3O \\u00c0 PARTE\", \"zh-Hant\": \"Ratchet & Clank: Rift Apart\", \"sv-SE\": \"Ratchet & Clank: Rift Apart\", \"da-DK\": \"Ratchet & Clank: Rift Apart\", \"tr-TR\": \"Ratchet & Clank: Ayr\\u0131 D\\u00fcnyalar\", \"fr-FR\": \"Ratchet & Clank: Rift Apart\", \"en-GB\": \"Ratchet & Clank: Rift Apart\", \"es-419\": \"Ratchet & Clank: Una dimensi\\u00f3n aparte\", \"ja-JP\": \"\\u30e9\\u30c1\\u30a7\\u30c3\\u30c8\\uff06\\u30af\\u30e9\\u30f3\\u30af \\u30d1\\u30e9\\u30ec\\u30eb\\u30fb\\u30c8\\u30e9\\u30d6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/OAXU4RdNBgekAdHsSNRhrsNJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/x64hEmgvhgxpXc9z9hpyLAyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202105/2419/6sdeqIB0ZU2bSEhevpUiW0eY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/CrGbGyUFNdkZKbg9DM2qPTE1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/ClnHKlWvqhcJvHd3OsiXHuRc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/w6kvRtcc2994kgRrUq4QAcrz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/nQp80lBnu7ahcwCiz2sHUh9n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202006/1217/uhyIltavTLwMyE42Ge3ZAJci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/WBdPT11quxcV5HfttcyM1MO7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/8slnxYfSABeBgcPBjzlvnojN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/U2udpCcGzrmQNLK9sGmeUVjc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/euz2VOCvOYEDR8I7EyhOQ7j5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/S2n6qegFTrJEmutXWwL10gni.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1103/QSx37GhfFwBhW4neunmiQlee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/2921/DwVjpbKOsFOyPdNzmSTSWuxG.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-06-10T07:49:06.000000Z\", \"lastPlayedDateTime\": \"2023-10-01T08:15:48.470000Z\", \"playDuration\": \"PT11H35M31S\"}, {\"titleId\": \"PPSA01325_00\", \"name\": \"ASTRO's PLAYROOM\", \"localizedName\": \"ASTRO's PLAYROOM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 20, \"concept\": {\"id\": 10000229, \"titleIds\": [\"PPSA01325_00\"], \"name\": \"ASTRO's PLAYROOM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ASTRO's PLAYROOM\", \"uk-UA\": \"ASTRO\\u2019s PLAYROOM\", \"de-DE\": \"ASTRO'S PLAYROOM\", \"en-US\": \"ASTRO's PLAYROOM\", \"ko-KR\": \"ASTRO's PLAYROOM\", \"pt-BR\": \"ASTRO's PLAYROOM\", \"es-ES\": \"ASTRO's PLAYROOM\", \"ar-AE\": \"ASTRO's PLAYROOM\", \"no-NO\": \"ASTRO's PLAYROOM\", \"fr-CA\": \"ASTRO'S PLAYROOM\", \"it-IT\": \"ASTRO's PLAYROOM\", \"pl-PL\": \"ASTRO\\u2019s PLAYROOM\", \"ru-RU\": \"ASTRO's PLAYROOM\", \"zh-Hans\": \"\\u5b87\\u5b99\\u673a\\u5668\\u4eba\\u65e0\\u7ebf\\u63a7\\u5236\\u5668\\u4f7f\\u7528\\u6307\\u5357\", \"nl-NL\": \"ASTRO's PLAYROOM\", \"pt-PT\": \"SALA DE JOGOS DO ASTRO\", \"zh-Hant\": \"ASTRO's PLAYROOM\", \"sv-SE\": \"ASTRO's PLAYROOM\", \"da-DK\": \"ASTRO's PLAYROOM\", \"tr-TR\": \"ASTRO's PLAYROOM\", \"fr-FR\": \"ASTRO'S PLAYROOM\", \"en-GB\": \"ASTRO's PLAYROOM\", \"es-419\": \"ASTRO's PLAYROOM\", \"ja-JP\": \"ASTRO's PLAYROOM\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/WC0Ml5uiH6QfjrE8I0XOjszd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0215/B0R5d3NrlnFN1FCiALoNVXZl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0213/fP7R9LPG1NIVToSTT3YVPtlg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0313/4vZcopV24Cnej5xtK8Tjivdn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0413/CIu6sAuzTyEJaV78iM8JdaXB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0504/5PvLw0zv7VmGlHjBH4mhWZne.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/DHpWWraMhBveiTcEJceOnmJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/M6bheZDaxpbtj8FiDW0UEQx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/VsRqhWKqQF0oFJeL4SUe1age.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/ObWahrXK8mYNGBvB5f5reFnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1220/6i8lMjqpLDKc5Gq91WLegvP8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2012/T3h5aafdjR8k7GJAG82832De.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-12-20T03:36:27.680000Z\", \"lastPlayedDateTime\": \"2023-10-01T07:49:01.050000Z\", \"playDuration\": \"PT21H32M40S\"}, {\"titleId\": \"PPSA18803_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:56:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T13:12:27.470000Z\", \"playDuration\": \"PT14M24S\"}, {\"titleId\": \"PPSA18802_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:40:27.350000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:56:24.890000Z\", \"playDuration\": \"PT15M33S\"}, {\"titleId\": \"PPSA18804_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:24:17.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:40:24.330000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA18805_00\", \"name\": \"Broken Pipe\", \"localizedName\": \"Broken Pipe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004332, \"titleIds\": [\"CUSA31871_00\", \"CUSA31870_00\", \"PPSA18804_00\", \"PPSA18802_00\", \"PPSA18803_00\", \"PPSA18805_00\", \"CUSA34688_00\", \"CUSA37320_00\"], \"name\": \"Broken Pipe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Broken Pipe\", \"uk-UA\": \"Broken Pipe\", \"de-DE\": \"Broken Pipe\", \"en-US\": \"Broken Pipe\", \"ko-KR\": \"Broken Pipe\", \"pt-BR\": \"Broken Pipe\", \"es-ES\": \"Broken Pipe\", \"ar-AE\": \"Broken Pipe\", \"no-NO\": \"Broken Pipe\", \"fr-CA\": \"Broken Pipe\", \"it-IT\": \"Broken Pipe\", \"pl-PL\": \"Broken Pipe\", \"ru-RU\": \"Broken Pipe\", \"zh-Hans\": \"Broken Pipe\", \"nl-NL\": \"Broken Pipe\", \"pt-PT\": \"Broken Pipe\", \"zh-Hant\": \"Broken Pipe\", \"sv-SE\": \"Broken Pipe\", \"da-DK\": \"Broken Pipe\", \"tr-TR\": \"Broken Pipe\", \"fr-FR\": \"Broken Pipe\", \"en-GB\": \"Broken Pipe\", \"es-419\": \"Broken Pipe\", \"ja-JP\": \"Broken Pipe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/bHJfKLXKBK9T3av6dQwmsFXz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/lpWjwftT3CYmKCrkdAO7vU8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/uqYlGIIEZq5DY6dNKXWvZdP6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/HjGVNb81s4oEhBQUj3x7wHDz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/MNljns6PF9lFoO2KK1eBhajB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2222/ejsfblZibsbQVRD4KWen51nc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/RPlvfq1r5AKCLwiTMZaYxxBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/wQ0SVWKp3i8qJ19jyXBtxdE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/sD7sGsZebvktENJwlYBpeajp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1814/f9SpUSCtQxqsYlgitafIRwrX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2223/F8H4hAvmT94CpVOFkG8OwcGM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T12:02:34.360000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:24:14.460000Z\", \"playDuration\": \"PT17M7S\"}, {\"titleId\": \"PPSA16368_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:51:27.180000Z\", \"lastPlayedDateTime\": \"2023-09-29T12:02:01.690000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"PPSA16369_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:43:02.000000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:51:25.040000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"PPSA16370_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:34:40.210000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:42:45.530000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA16371_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:26:30.840000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:34:38.180000Z\", \"playDuration\": \"PT7M46S\"}, {\"titleId\": \"CUSA43317_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:17:21.290000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:26:23.050000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"CUSA43319_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:08:42.140000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:17:03.640000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA43318_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T11:00:18.740000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:08:28.270000Z\", \"playDuration\": \"PT8M2S\"}, {\"titleId\": \"CUSA43316_00\", \"name\": \"Mimi the cat: Mimi's Scratcher\", \"localizedName\": \"Mimi the cat: Mimi's Scratcher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008352, \"titleIds\": [\"CUSA43318_00\", \"CUSA43317_00\", \"CUSA43316_00\", \"PPSA16369_00\", \"PPSA16370_00\", \"PPSA16368_00\", \"CUSA43319_00\", \"PPSA16371_00\"], \"name\": \"Mimi the cat: Mimi's Scratcher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mimi the cat: Mimi's Scratcher\", \"uk-UA\": \"Mimi the cat: Mimi's Scratcher\", \"de-DE\": \"Mimi the cat: Mimi's Scratcher\", \"en-US\": \"Mimi the cat: Mimi's Scratcher\", \"ko-KR\": \"Mimi the cat: Mimi's Scratcher\", \"pt-BR\": \"Mimi the cat: Mimi's Scratcher\", \"es-ES\": \"Mimi the cat: Mimi's Scratcher\", \"ar-AE\": \"Mimi the cat: Mimi's Scratcher\", \"no-NO\": \"Mimi the cat: Mimi's Scratcher\", \"fr-CA\": \"Mimi the cat: Mimi's Scratcher\", \"it-IT\": \"Mimi the cat: Mimi's Scratcher\", \"pl-PL\": \"Mimi the cat: Mimi's Scratcher\", \"ru-RU\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hans\": \"Mimi the cat: Mimi's Scratcher\", \"nl-NL\": \"Mimi the cat: Mimi's Scratcher\", \"pt-PT\": \"Mimi the cat: Mimi's Scratcher\", \"zh-Hant\": \"Mimi the cat: Mimi's Scratcher\", \"sv-SE\": \"Mimi the cat: Mimi's Scratcher\", \"da-DK\": \"Mimi the cat: Mimi's Scratcher\", \"tr-TR\": \"Mimi the cat: Mimi's Scratcher\", \"fr-FR\": \"Mimi the cat: Mimi's Scratcher\", \"en-GB\": \"Mimi the cat: Mimi's Scratcher\", \"es-419\": \"Mimi the cat: Mimi's Scratcher\", \"ja-JP\": \"Mimi the cat: Mimi's Scratcher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/f85847ddb2576ebe387ddc110dd1e3a00603fd79d344e1bd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/36a94cde47dc462a992b77c31d2a12c3f6441246f4e7abf4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1022/cc4e28ae1bbcdef8f3a6466bd422bc4fd73d30463660f624.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2213/302402802a9a32ed9f8b28366aa3659cfb36607bf5a31ea8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2220/a31b41cd13bdda03308cb65ae81cec74cc1643eeccc59e99.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/3850724fbdbf53fd6cd0db704303c505cd1ac5c320149567.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/99caa6968f47d2c27e50617b9b930f6a915607d040a853f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/e1bb7e757c0c5438d002fe6c015822032d9f4bef3ca5f8ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/5dbc923f70b4eac33ecbbbb13ed8d5f1d10b86109c6b9065.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2721/14fab9f6e0b8fbfecbd346847c84dc1c946b43bb99f47245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2321/8eb90c965946f9e9c139631f9abc02078ebf04e9bd6f451e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-29T10:46:23.150000Z\", \"lastPlayedDateTime\": \"2023-09-29T11:00:16.420000Z\", \"playDuration\": \"PT11M52S\"}, {\"titleId\": \"PPSA09453_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T03:10:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:31:14.520000Z\", \"playDuration\": \"PT2M59S\"}, {\"titleId\": \"CUSA35744_00\", \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"localizedName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10005547, \"titleIds\": [\"PPSA09453_00\", \"PPSA09452_00\", \"PPSA09454_00\", \"CUSA35743_00\", \"CUSA35780_00\", \"CUSA36917_00\", \"CUSA35745_00\", \"CUSA35744_00\", \"CUSA36916_00\", \"CUSA35742_00\", \"CUSA36915_00\", \"PPSA08752_00\"], \"name\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"uk-UA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"de-DE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-US\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ko-KR\": \"\\uc778\\ud53c\\ub2c8\\ud2f0 \\uc2a4\\ud2b8\\ub78f\\uc288 \\ub4dc\\ub798\\uace4 \\ud018\\uc2a4\\ud2b8 \\ub2e4\\uc774\\uc758 \\ub300\\ubaa8\\ud5d8 PS4 & PS5\", \"pt-BR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-ES\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ar-AE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"no-NO\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-CA\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"it-IT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pl-PL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"ru-RU\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hans\": \"\\u65e0\\u9650\\u795e\\u901f\\u65a9\\u3000\\u52c7\\u8005\\u6597\\u6076\\u9f99 \\u8fbe\\u4f0a\\u7684\\u5927\\u5192\\u9669 PS4 & PS5\", \"nl-NL\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"pt-PT\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"zh-Hant\": \"\\u7121\\u9650\\u795e\\u901f\\u65ac\\u3000\\u52c7\\u8005\\u9b25\\u60e1\\u9f8d \\u9054\\u4f0a\\u7684\\u5927\\u5192\\u96aa PS4 & PS5\", \"sv-SE\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"da-DK\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"tr-TR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"fr-FR\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"en-GB\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai PS4 & PS5\", \"es-419\": \"Infinity Strash: DRAGON QUEST: The Adventure of Dai PS4 & PS5\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\\u30c6\\u30a3 \\u30b9\\u30c8\\u30e9\\u30c3\\u30b7\\u30e5\\u3000\\u30c9\\u30e9\\u30b4\\u30f3\\u30af\\u30a8\\u30b9\\u30c8 \\u30c0\\u30a4\\u306e\\u5927\\u5192\\u967a PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/1938ef952fb017440a688705c90c6b6322a474e00f17a2df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2407/4f1578af7bbed5aa4bb5343ce253b2115302cfc9dfe91f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/f8304b127c9daddc37106f90a95984b7506d30eede0a022a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/952e3e167975a772e32ae00831429acb5ae5f70fee26407b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1711/3f33d803124d61c8499300a62143ce52a6a9b721395657a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T02:54:12.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T10:27:40.350000Z\", \"playDuration\": \"PT6H15M51S\"}, {\"titleId\": \"PPSA15533_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:23:30.350000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:32:29.160000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"PPSA15532_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:15:58.510000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:23:27.410000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA42542_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-28T00:05:20.950000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:15:54.740000Z\", \"playDuration\": \"PT9M46S\"}, {\"titleId\": \"CUSA42543_00\", \"name\": \"Betomis\", \"localizedName\": \"Betomis\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008041, \"titleIds\": [\"CUSA42543_00\", \"PPSA15532_00\", \"PPSA15533_00\", \"CUSA42542_00\"], \"name\": \"Betomis\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Betomis\", \"uk-UA\": \"Betomis\", \"de-DE\": \"Betomis\", \"en-US\": \"Betomis\", \"ko-KR\": \"Betomis\", \"pt-BR\": \"Betomis\", \"es-ES\": \"Betomis\", \"ar-AE\": \"Betomis\", \"no-NO\": \"Betomis\", \"fr-CA\": \"Betomis\", \"it-IT\": \"Betomis\", \"pl-PL\": \"Betomis\", \"ru-RU\": \"Betomis\", \"zh-Hans\": \"Betomis\", \"nl-NL\": \"Betomis\", \"pt-PT\": \"Betomis\", \"zh-Hant\": \"Betomis\", \"sv-SE\": \"Betomis\", \"da-DK\": \"Betomis\", \"tr-TR\": \"Betomis\", \"fr-FR\": \"Betomis\", \"en-GB\": \"Betomis\", \"es-419\": \"Betomis\", \"ja-JP\": \"Betomis\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2203/3143a2267146daf2c043d67d11101132a614b0a063eb78c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/8d8124be75de452b4f295398377f8e9f27807cb08f268fae.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/fe738ee96c5fadcaed3043af1e0afa615dd98027a41afa03.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/52dce6a89a63f681a1a7184f4081e5b66bd49ef44c25c761.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/d77bd6be72ba06cee43e8e9eb25baa87b05359a03cc953c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a34ba85b578f3bdf215adefd84f981d541a7b6e2efb7fadb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/b5ad730ab00ea6e5ce1a6189d5e3b2a7fbcbc9207feae8b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/72995f6832d2277c618faaeefb2aa79124b99a4e774a13af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/36061150236a5782c84501b83288631ebe78b06875929817.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/6e204ed607b87bd74c118d1f941ac716ea6f1d7f20b109e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a8adb17c7966ada7f3cba250348b5c5d819014adc3671c10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/a407bac733443320ceb38f92c64abf5ca7df3b584d823991.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/3708a4ccc44f6418920f0cd3c241b9f1eedd3c037b7f148b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/96ffcb58e12aea6f4527ec1781dd8a736ec4d9886302a325.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2f322472c9bc01e5829f3e690f59b0c53e585ccb79911765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3005/cddec9dbe101fec9445373962fd28f1cd40c6e8e1ab45bc1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:54:58.020000Z\", \"lastPlayedDateTime\": \"2023-09-28T00:06:10.860000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"CUSA45025_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:39:30.770000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:48:24.480000Z\", \"playDuration\": \"PT8M36S\"}, {\"titleId\": \"CUSA45027_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:35:21.510000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:39:28.850000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"CUSA45028_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:31:21.140000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:35:19.740000Z\", \"playDuration\": \"PT3M52S\"}, {\"titleId\": \"CUSA45026_00\", \"name\": \"Lord of the Click: Interstellar Wars\", \"localizedName\": \"Lord of the Click: Interstellar Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009137, \"titleIds\": [\"CUSA45028_00\", \"PPSA19879_00\", \"CUSA45027_00\", \"PPSA19949_00\", \"CUSA45026_00\", \"CUSA45025_00\", \"PPSA19948_00\", \"PPSA19950_00\"], \"name\": \"Lord of the Click: Interstellar Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lord of the Click: Interstellar Wars\", \"uk-UA\": \"Lord of the Click: Interstellar Wars\", \"de-DE\": \"Lord of the Click: Interstellar Wars\", \"en-US\": \"Lord of the Click: Interstellar Wars\", \"ko-KR\": \"Lord of the Click: Interstellar Wars\", \"pt-BR\": \"Lord of the Click: Interstellar Wars\", \"es-ES\": \"Lord of the Click: Interstellar Wars\", \"ar-AE\": \"Lord of the Click: Interstellar Wars\", \"no-NO\": \"Lord of the Click: Interstellar Wars\", \"fr-CA\": \"Lord of the Click: Interstellar Wars\", \"it-IT\": \"Lord of the Click: Interstellar Wars\", \"pl-PL\": \"Lord of the Click: Interstellar Wars\", \"ru-RU\": \"Lord of the Click: Interstellar Wars\", \"zh-Hans\": \"Lord of the Click: Interstellar Wars\", \"nl-NL\": \"Lord of the Click: Interstellar Wars\", \"pt-PT\": \"Lord of the Click: Interstellar Wars\", \"zh-Hant\": \"Lord of the Click: Interstellar Wars\", \"sv-SE\": \"Lord of the Click: Interstellar Wars\", \"da-DK\": \"Lord of the Click: Interstellar Wars\", \"tr-TR\": \"Lord of the Click: Interstellar Wars\", \"fr-FR\": \"Lord of the Click: Interstellar Wars\", \"en-GB\": \"Lord of the Click: Interstellar Wars\", \"es-419\": \"Lord of the Click: Interstellar Wars\", \"ja-JP\": \"Lord of the Click: Interstellar Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/2884cc8b7e54948053e2ab338e059bdf035d688ddf81c435.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/bae1e8465bedc1d54de4565d245cd0e329a1afdb4ce7471e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/0707f9add376a55d9bdab228f509a8c32e406fabd2460efc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6418a3d7d5adc28a722d9618f1f8a73b7354dd66ddbded6d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/99b3e12efba98526ed0f7f2d4671d0fa2248b405399ae0de.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/cf2e760e629c597c5dbe7f2ea701eaf4db6f350827a33af0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/c59ad8cfc07a06243501072755b8728bd9acb163dc34c8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/9feb33fbd763b6cda808ea1a3faffd53d2f8f73dc5d82e39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5a8ff28355e5c020d123d525917d3fc0b74957bcd9d3b908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/7183746f0deb7bf38bd3756e528fd393aba98b344ca62d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/ba7f513e9e450b29719f49a561623942232ee07ab1ce853e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/6419ab27fc624e3587bceaee591ca5a41deeaac2afe2680c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0711/5683d22e75f721af6a39be216ec6a9d8df6c00794fb574f3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-27T23:25:58.530000Z\", \"lastPlayedDateTime\": \"2023-09-27T23:31:19.310000Z\", \"playDuration\": \"PT5M2S\"}, {\"titleId\": \"PPSA18648_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:39.760000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:59.640000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18649_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:28:15.820000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:37.220000Z\", \"playDuration\": \"PT17S\"}, {\"titleId\": \"PPSA18646_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:50.750000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:28:13.460000Z\", \"playDuration\": \"PT18S\"}, {\"titleId\": \"PPSA18647_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:27:27.510000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:27:48.750000Z\", \"playDuration\": \"PT16S\"}, {\"titleId\": \"CUSA45272_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T13:06:49.460000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:25:30.620000Z\", \"playDuration\": \"PT18M37S\"}, {\"titleId\": \"CUSA45273_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:45:02.450000Z\", \"lastPlayedDateTime\": \"2023-09-25T13:06:47.440000Z\", \"playDuration\": \"PT18M16S\"}, {\"titleId\": \"CUSA45270_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T12:25:45.300000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:45:00.350000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA45271_00\", \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"localizedName\": \"The Jumping Food Memory - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009259, \"titleIds\": [\"CUSA45270_00\", \"PPSA19342_00\", \"CUSA45271_00\", \"PPSA18646_00\", \"CUSA45273_00\", \"CUSA45272_00\", \"PPSA18647_00\", \"PPSA18648_00\", \"PPSA19340_00\", \"PPSA18649_00\", \"PPSA19341_00\", \"PPSA19343_00\", \"CUSA45803_00\", \"CUSA45804_00\", \"CUSA45802_00\", \"CUSA45801_00\"], \"name\": \"The Jumping Food Memory - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Jumping Food Memory - PS4 & PS5\", \"uk-UA\": \"The Jumping Food Memory - PS4 & PS5\", \"de-DE\": \"The Jumping Food Memory - PS4 & PS5\", \"en-US\": \"The Jumping Food Memory - PS4 & PS5\", \"ko-KR\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-BR\": \"The Jumping Food Memory - PS4 & PS5\", \"es-ES\": \"The Jumping Food Memory - PS4 & PS5\", \"ar-AE\": \"The Jumping Food Memory - PS4 & PS5\", \"no-NO\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-CA\": \"The Jumping Food Memory - PS4 & PS5\", \"it-IT\": \"The Jumping Food Memory - PS4 & PS5\", \"pl-PL\": \"The Jumping Food Memory - PS4 & PS5\", \"ru-RU\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hans\": \"The Jumping Food Memory - PS4 & PS5\", \"nl-NL\": \"The Jumping Food Memory - PS4 & PS5\", \"pt-PT\": \"The Jumping Food Memory - PS4 & PS5\", \"zh-Hant\": \"The Jumping Food Memory - PS4 & PS5\", \"sv-SE\": \"The Jumping Food Memory - PS4 & PS5\", \"da-DK\": \"The Jumping Food Memory - PS4 & PS5\", \"tr-TR\": \"The Jumping Food Memory - PS4 & PS5\", \"fr-FR\": \"The Jumping Food Memory - PS4 & PS5\", \"en-GB\": \"The Jumping Food Memory - PS4 & PS5\", \"es-419\": \"The Jumping Food Memory - PS4 & PS5\", \"ja-JP\": \"The Jumping Food Memory - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/c41377aa20fc75c69d497021179b74bd80b88915f54ae371.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/99c85bbffd1cc4b30e1b041e9b7a0240368d714438a08b08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/ac483cbe98bd096c86d2bd642ffeb77b678044d4a46566b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/aa4768dcd8a47a9f76841534a000ff1f1e083df18bfe10c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bd529ebf2787a67b0e14180d319bdbae34e93c3291267193.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/93ffad037ad2eb35dc7a78d395df22b167918005fb84c59a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/accab93bfc025684b01649bad0620d08f35a1be0ba021c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/f1d995529a18dbff3ffffcb22444e2e31221d367757e972e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/731ecd2afb8d9251580528753729831b18fa07c552280090.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/b506b793aca9e03de448e12bf3ff297f9b6a59de3e2d547d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/6bf76a6e66b415d80e2b78758dc2be00dcef2b1724881f7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/310a445ecb31cfaa7223993a004d684a9e17e952cd6d31e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0517/bfb6a612007f8d3f0da5ccb5af1072e360f1d4619789ae0c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-25T11:51:44.560000Z\", \"lastPlayedDateTime\": \"2023-09-25T12:25:43.170000Z\", \"playDuration\": \"PT28M27S\"}, {\"titleId\": \"CUSA41266_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"lastPlayedDateTime\": \"2023-09-24T12:27:34.620000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA05282_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:50:19.000000Z\", \"lastPlayedDateTime\": \"2023-09-24T01:16:29.560000Z\", \"playDuration\": \"PT25M54S\"}, {\"titleId\": \"PPSA05283_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-24T00:21:56.940000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:49:45.090000Z\", \"playDuration\": \"PT27M29S\"}, {\"titleId\": \"PPSA05284_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:37:45.710000Z\", \"lastPlayedDateTime\": \"2023-09-24T00:21:54.670000Z\", \"playDuration\": \"PT25M48S\"}, {\"titleId\": \"CUSA30403_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T23:07:51.580000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:37:31.630000Z\", \"playDuration\": \"PT27M45S\"}, {\"titleId\": \"CUSA30404_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T22:22:49.260000Z\", \"lastPlayedDateTime\": \"2023-09-23T23:07:49.270000Z\", \"playDuration\": \"PT37M31S\"}, {\"titleId\": \"CUSA30402_00\", \"name\": \"Escape from Terror City\", \"localizedName\": \"Escape from Terror City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003802, \"titleIds\": [\"CUSA30403_00\", \"CUSA30404_00\", \"PPSA05284_00\", \"CUSA30402_00\", \"PPSA05282_00\", \"PPSA05283_00\"], \"name\": \"Escape from Terror City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Escape from Terror City\", \"uk-UA\": \"Escape from Terror City\", \"de-DE\": \"Escape from Terror City\", \"en-US\": \"Escape from Terror City\", \"ko-KR\": \"Escape from Terror City\", \"pt-BR\": \"Escape from Terror City\", \"es-ES\": \"Escape from Terror City\", \"ar-AE\": \"Escape from Terror City\", \"no-NO\": \"Escape from Terror City\", \"fr-CA\": \"Escape from Terror City\", \"it-IT\": \"Escape from Terror City\", \"pl-PL\": \"Escape from Terror City\", \"ru-RU\": \"Escape from Terror City\", \"zh-Hans\": \"Escape from Terror City\", \"nl-NL\": \"Escape from Terror City\", \"pt-PT\": \"Escape from Terror City\", \"zh-Hant\": \"Escape from Terror City\", \"sv-SE\": \"Escape from Terror City\", \"da-DK\": \"Escape from Terror City\", \"tr-TR\": \"Escape from Terror City\", \"fr-FR\": \"Escape from Terror City\", \"en-GB\": \"Escape from Terror City\", \"es-419\": \"Escape from Terror City\", \"ja-JP\": \"Escape from Terror City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2eb45cf5a875a148fc2376b85d73052b991cf40608e6f076.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/b1ee2e5c26c3e821716960d1c4edc1f6bedfd3e01d5d81c3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/434e4163b40028920b674274f02cd4d083cb1e04ea1cd968.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1c641544b51aeff957b0b61da77b6b81534447aa68e3aaf1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/c370d7cf5cb7108b5bbed0152b7e5ea6b1aa45d8496c9a1c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/1800038543aae7f1132dd95e8ba011004a87f12cc08d49ec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/bf602746e28d4d54d91aa8ccc39aea521cbae9deb20d5a3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/ff7f3d012d6b3a525ce0feac2bfdd3f1b9654fbff95e999a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d119b8ca6559e1cab2c87d23f1558613f6c6fecac5d269f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/da80ab130df108ab1ef2643bb8248d82f4909da05bf6d4c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/9d92d917fe4534d8a974509546bbf6bc896121bd55d6f230.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/e0ac383d6e83e99e41ef0d10988c91121458d9cdc8cd8dfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/4467c60ddf63e6b1c21ccae0f7b0d4f8f175f07452a3e9ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/050a3cbadcdcb2465128a4b96b90a42757110260da3abde8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/7461b630d3420f7d897371d43eaa116685a94194f59d1433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1304/2cf123ad18eb1bb4e29672f4cfefdb54072bce5c24641f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1103/bd1e0a560821760c407eb149f69d92a20380bcebbd88bc96.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:24:24.920000Z\", \"lastPlayedDateTime\": \"2023-09-23T05:11:11.690000Z\", \"playDuration\": \"PT44M16S\"}, {\"titleId\": \"PPSA08825_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T04:05:14.780000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:18:14.920000Z\", \"playDuration\": \"PT12M55S\"}, {\"titleId\": \"CUSA35046_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T03:49:05.630000Z\", \"lastPlayedDateTime\": \"2023-09-23T04:05:11.840000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA35045_00\", \"name\": \"EchoBlade\", \"localizedName\": \"EchoBlade\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005577, \"titleIds\": [\"PPSA08825_00\", \"CUSA35045_00\", \"PPSA08824_00\", \"CUSA35046_00\"], \"name\": \"EchoBlade\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EchoBlade\", \"uk-UA\": \"EchoBlade\", \"de-DE\": \"EchoBlade\", \"en-US\": \"EchoBlade\", \"ko-KR\": \"EchoBlade\", \"pt-BR\": \"EchoBlade\", \"es-ES\": \"EchoBlade\", \"ar-AE\": \"EchoBlade\", \"no-NO\": \"EchoBlade\", \"fr-CA\": \"EchoBlade\", \"it-IT\": \"EchoBlade\", \"pl-PL\": \"EchoBlade\", \"ru-RU\": \"EchoBlade\", \"zh-Hans\": \"EchoBlade\", \"nl-NL\": \"EchoBlade\", \"pt-PT\": \"EchoBlade\", \"zh-Hant\": \"EchoBlade\", \"sv-SE\": \"EchoBlade\", \"da-DK\": \"EchoBlade\", \"tr-TR\": \"EchoBlade\", \"fr-FR\": \"EchoBlade\", \"en-GB\": \"EchoBlade\", \"es-419\": \"EchoBlade\", \"ja-JP\": \"EchoBlade\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/a88ccb18c2685f054a25b7d7b73eb40739ddaf0c37fd7152.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/b6d586e55bf30688e436dc24a6a0c48bd52ec7a9d01df836.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/18459ada3328d7e341d949defc880d5b59e8021a3af11ed2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/17ebd2d78ac170f99d74a20a3441b4bf837498e26f88ccb4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fa65e60ecef41a4d6a770383d7a5d8bfcfa6ace41d6885df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d17c5b2ba3ba8d1c3d1f601ff0d42c24854a7f3d2ea9008f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/96345bba05af846c3a3c928cad943feb89b005aa00cc81e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/3edb04f8742b0d53655f3b5fbae53691af8b3e6784a5fd02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/36413a0cd99c3048c4eb4782cf14370efa1e3fec9333f480.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/81123e129c0d4b3386af525e53a3e0a830c22747f8701e3f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f7869ad6ca90dd6d450bdc1e6a4a00fbd3c760a42a05de28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/fcc8e1abf8fb852ce51ce8d7cfc22b31ca68e6bfc77a0af6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/f8362672d53e52e5c954e0cd61f58b0ce02bfbc0e29c615f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/98c4750a383f54d3c510026030e78dafd6c5c63f8d287b75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/e0735282a5fc6bf105600c0d28eb0c837d64dfbefd4396d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3108/d96c9946ce3b406afd613756cd582fe7bf228791768ffbe1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d0c9515a675472b2754696b0db9272540995ba6112a21642.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T02:17:12.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T03:19:31.220000Z\", \"playDuration\": \"PT1H1M39S\"}, {\"titleId\": \"PPSA18704_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T01:31:37.000000Z\", \"lastPlayedDateTime\": \"2023-09-23T02:12:24.380000Z\", \"playDuration\": \"PT40M37S\"}, {\"titleId\": \"PPSA18703_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:58:27.800000Z\", \"lastPlayedDateTime\": \"2023-09-23T01:31:35.250000Z\", \"playDuration\": \"PT29M33S\"}, {\"titleId\": \"PPSA18705_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-23T00:26:14.510000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:58:24.920000Z\", \"playDuration\": \"PT30M14S\"}, {\"titleId\": \"PPSA18702_00\", \"name\": \"Blind Postman\", \"localizedName\": \"Blind Postman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003471, \"titleIds\": [\"PPSA18704_00\", \"PPSA18702_00\", \"PPSA18705_00\", \"PPSA18703_00\", \"CUSA37242_00\", \"CUSA29536_00\", \"CUSA34662_00\", \"CUSA29535_00\"], \"name\": \"Blind Postman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blind Postman\", \"uk-UA\": \"Blind Postman\", \"de-DE\": \"Blind Postman\", \"en-US\": \"Blind Postman\", \"ko-KR\": \"Blind Postman\", \"pt-BR\": \"Blind Postman\", \"es-ES\": \"Blind Postman\", \"ar-AE\": \"Blind Postman\", \"no-NO\": \"Blind Postman\", \"fr-CA\": \"Blind Postman\", \"it-IT\": \"Blind Postman\", \"pl-PL\": \"Blind Postman\", \"ru-RU\": \"Blind Postman\", \"zh-Hans\": \"Blind Postman\", \"nl-NL\": \"Blind Postman\", \"pt-PT\": \"Blind Postman\", \"zh-Hant\": \"Blind Postman\", \"sv-SE\": \"Blind Postman\", \"da-DK\": \"Blind Postman\", \"tr-TR\": \"Blind Postman\", \"fr-FR\": \"Blind Postman\", \"en-GB\": \"Blind Postman\", \"es-419\": \"Blind Postman\", \"ja-JP\": \"Blind Postman\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/1110/240c0f54b7295ec41654825f7caa65ec70fea52a966ccb6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2917/G7mOsZIrZXCKuSiAFZBRK6Jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/sO4ya7pVMkDhfPVAPwj1G1zb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/lsF3itk7YkxisYLt8Y0cdH7U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/uVSrKbe4aPQIN1hcFPL3DwE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/r9iGoxfs0cyOyfJPJZ2T4GHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/FdAVVs8nS9YHs6BRQSjVxUhm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/bJ3fwreDWVJzdzMLeKuwneo3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0719/PygTvjlzlfnGVDlr31FFZscT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/0818/rUoEDHE2tTTD7SzRP8OSDE9D.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T23:44:37.250000Z\", \"lastPlayedDateTime\": \"2023-09-23T00:26:03.050000Z\", \"playDuration\": \"PT41M17S\"}, {\"titleId\": \"PPSA16992_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:47:17.250000Z\", \"lastPlayedDateTime\": \"2023-09-22T14:14:47.020000Z\", \"playDuration\": \"PT17M48S\"}, {\"titleId\": \"PPSA16991_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T13:25:46.650000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:44:48.490000Z\", \"playDuration\": \"PT18M58S\"}, {\"titleId\": \"CUSA43856_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T12:59:02.770000Z\", \"lastPlayedDateTime\": \"2023-09-22T13:25:44.680000Z\", \"playDuration\": \"PT19M4S\"}, {\"titleId\": \"CUSA43857_00\", \"name\": \"Kalinur\", \"localizedName\": \"Kalinur\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008604, \"titleIds\": [\"PPSA16991_00\", \"PPSA16992_00\", \"CUSA43856_00\", \"CUSA43857_00\"], \"name\": \"Kalinur\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kalinur\", \"uk-UA\": \"Kalinur\", \"de-DE\": \"Kalinur\", \"en-US\": \"Kalinur\", \"ko-KR\": \"Kalinur\", \"pt-BR\": \"Kalinur\", \"es-ES\": \"Kalinur\", \"ar-AE\": \"Kalinur\", \"no-NO\": \"Kalinur\", \"fr-CA\": \"Kalinur\", \"it-IT\": \"Kalinur\", \"pl-PL\": \"Kalinur\", \"ru-RU\": \"Kalinur\", \"nl-NL\": \"Kalinur\", \"pt-PT\": \"Kalinur\", \"sv-SE\": \"Kalinur\", \"da-DK\": \"Kalinur\", \"tr-TR\": \"Kalinur\", \"fr-FR\": \"Kalinur\", \"en-GB\": \"Kalinur\", \"es-419\": \"Kalinur\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f53c6ede71807e98f94f97752faca06f512db5bfc1e87f00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/bb5cf7e92f5464e10a6ae8de81a6ce5f98e4ac9c349c9b97.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d74b3bf285da134a69de6435853e1a8cfc0f6adb1e902fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/29f82507b3b4f867a4acc1575b879b2ce937eebe9da6302f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2420/1f2c7396b1a74a75eaec0d3ed649c7d6ab3ffa108996007e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/7281ac3ad13faecc41ddfd7a7811cc0e4a9934c3d3cf5006.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/d10ac427eda0f735804d3b04e25e12c09a6f5321b13558e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/f37ec9f09ed0b68add9b0d6da3c20268e463cf00fde87a06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/6432690a17dfa75a0affbc0d2abb3bb90fff950c6cac2c2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/248a173d00156005c3559bc70da38a6cbaa4c90e9dc2edec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/5b32235787a82591e5cff1080981fcf1c66c0a406d935c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/aae66115aef28346e0de1427db8749e19221b5a51ac0d05d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/e23d3ee74aa6b38e242598b27a923bdd810546c14b974d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/c8083012ce6f79a1c2d04840ab87151a3acb26ea8de4da14.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/eb69d79c89d3200eef904cf73f1d59148328ef2a92e42cdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/452f1c8c57d7750c844d62266dde8351513374c52a45bf7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2703/b0a1abc006a840bcdb43f560cf62b6307d59077034e556b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:54:08.800000Z\", \"lastPlayedDateTime\": \"2023-09-22T12:59:00.730000Z\", \"playDuration\": \"PT47M14S\"}, {\"titleId\": \"PPSA17797_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:50:59.310000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:53:42.190000Z\", \"playDuration\": \"PT2M27S\"}, {\"titleId\": \"PPSA17798_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:48:06.950000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:50:57.150000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"PPSA17800_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:45:12.760000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:48:04.720000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17799_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:41:36.610000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:44:34.170000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44504_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:38:10.130000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:41:34.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44505_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:34:57.570000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:38:06.910000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"CUSA44502_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:17:56.670000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:34:55.370000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA44503_00\", \"name\": \"Earthshine\", \"localizedName\": \"Earthshine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008929, \"titleIds\": [\"CUSA44502_00\", \"CUSA44505_00\", \"PPSA17799_00\", \"PPSA17798_00\", \"CUSA44504_00\", \"CUSA44503_00\", \"PPSA17797_00\", \"PPSA17800_00\"], \"name\": \"Earthshine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Earthshine\", \"uk-UA\": \"Earthshine\", \"de-DE\": \"Earthshine\", \"en-US\": \"Earthshine\", \"ko-KR\": \"Earthshine\", \"pt-BR\": \"Earthshine\", \"es-ES\": \"Earthshine\", \"ar-AE\": \"Earthshine\", \"no-NO\": \"Earthshine\", \"fr-CA\": \"Earthshine\", \"it-IT\": \"Earthshine\", \"pl-PL\": \"Earthshine\", \"ru-RU\": \"Earthshine\", \"zh-Hans\": \"Earthshine\", \"nl-NL\": \"Earthshine\", \"pt-PT\": \"Earthshine\", \"zh-Hant\": \"Earthshine\", \"sv-SE\": \"Earthshine\", \"da-DK\": \"Earthshine\", \"tr-TR\": \"Earthshine\", \"fr-FR\": \"Earthshine\", \"en-GB\": \"Earthshine\", \"es-419\": \"Earthshine\", \"ja-JP\": \"Earthshine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/692e3a88da34c49634b1ff069b8e3b2ae3c310b9c4b04aa2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/ef0b411c8f28fddbe2f5f37e19b7e90543204c7e33981b4b.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1523/b43f871ffc950d491c867c6d6833057da4142f8c51e448a2.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4feb6e337818f7deecd24809cc207bcc6a0efb6673334aea.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/4106848141d62e26cc0ed7de060b4524eea95b4003676f89.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/5d157a49072cb6598ca596c1b88997b42322ef5d48b44e42.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/21c0133c860e0093a69dd4eff16b5da796a087c1cc0d5884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/8e328fdf3efde5b28c8879e683695f1548a28aa83b88ab4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/2bc4ab8a2eaba75e3d16400b67f81ac1812ba4b1dc0d80c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/728ea096846b48a434dd5c12adf091ac6e6f413d2a0cca2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/61bfb5443809e2c10efb32e0a4c360348d48ab942d12731d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/3f9f1468308bc7ee5b728bfb2a417ff78631eaacc41e63f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/6244135c12ff4a457b59772841987174929a7e8dd3a8a5f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2720/e4f523ceb4dc31e3cb0dc716db87fdb4e371acbbbab6c28e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:14:13.120000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:17:54.550000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA12631_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:08:04.520000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:10:20.550000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA12632_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:05:39.530000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:08:02.510000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA39593_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:03:31.820000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:05:37.560000Z\", \"playDuration\": \"PT2M\"}, {\"titleId\": \"CUSA39594_00\", \"name\": \"Circle Dodge\", \"localizedName\": \"Circle Dodge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006956, \"titleIds\": [\"PPSA12632_00\", \"PPSA12633_00\", \"PPSA12631_00\", \"CUSA39596_00\", \"CUSA39594_00\", \"CUSA39595_00\", \"PPSA12634_00\", \"CUSA39593_00\"], \"name\": \"Circle Dodge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Circle Dodge\", \"uk-UA\": \"Circle Dodge\", \"de-DE\": \"Circle Dodge\", \"en-US\": \"Circle Dodge\", \"ko-KR\": \"Circle Dodge\", \"pt-BR\": \"Circle Dodge\", \"es-ES\": \"Circle Dodge\", \"ar-AE\": \"Circle Dodge\", \"no-NO\": \"Circle Dodge\", \"fr-CA\": \"Circle Dodge\", \"it-IT\": \"Circle Dodge\", \"pl-PL\": \"Circle Dodge\", \"ru-RU\": \"Circle Dodge\", \"zh-Hans\": \"Circle Dodge\", \"nl-NL\": \"Circle Dodge\", \"pt-PT\": \"Circle Dodge\", \"zh-Hant\": \"Circle Dodge\", \"sv-SE\": \"Circle Dodge\", \"da-DK\": \"Circle Dodge\", \"tr-TR\": \"Circle Dodge\", \"fr-FR\": \"Circle Dodge\", \"en-GB\": \"Circle Dodge\", \"es-419\": \"Circle Dodge\", \"ja-JP\": \"Circle Dodge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/YnhPiHqz8wHyhRcO8400ZLlT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nev720X8i3naBcOUNhahgbOu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/oSmU6fHT1iL0VZtxZweVsUMS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/HUU17VJHAqmb7XTfqtt4lxi3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/zvvrmKuYmgk452qzKSrnSsvj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/ACH01TKW3zX2QXodsIol2fbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9786250c74cfeebb2964e8d19acbe73cc8c05e5236d741ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/d115f4bd5037cb636f7b2c9c909190f67480925a19190cd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/602d60d6a5ac9423c737a22e684d2ed4c690c12de2d3cacd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9f7208d2e3cc25aaf47221c87b9ce08dd3fd3c0760b12f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/78dd93c7c564ac15cbb664e3f5d3c1ced15ce061761789f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ab945f115fc9103514eedff9362b1cc5212e7b4092e0195f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/51f915ef9b8264e3c468d7c72538a7b0e151e7e2f1afe9ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/yR5aedLcRYAfJ4cdd6dwY6Kf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-22T11:01:10.190000Z\", \"lastPlayedDateTime\": \"2023-09-22T11:03:29.520000Z\", \"playDuration\": \"PT2M13S\"}, {\"titleId\": \"CUSA30727_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T14:13:33.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T14:21:16.530000Z\", \"playDuration\": \"PT7M32S\"}, {\"titleId\": \"CUSA45044_00\", \"name\": \"SoulFrost\", \"localizedName\": \"SoulFrost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003724, \"titleIds\": [\"CUSA45044_00\", \"CUSA30189_00\", \"CUSA30190_00\", \"CUSA30188_00\", \"CUSA30727_00\"], \"name\": \"SoulFrost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SoulFrost\", \"uk-UA\": \"SoulFrost\", \"de-DE\": \"SoulFrost\", \"en-US\": \"SoulFrost\", \"ko-KR\": \"SoulFrost\", \"pt-BR\": \"SoulFrost\", \"es-ES\": \"SoulFrost\", \"ar-AE\": \"SoulFrost\", \"no-NO\": \"SoulFrost\", \"fr-CA\": \"SoulFrost\", \"it-IT\": \"SoulFrost\", \"pl-PL\": \"SoulFrost\", \"ru-RU\": \"SoulFrost\", \"zh-Hans\": \"SoulFrost\", \"nl-NL\": \"SoulFrost\", \"pt-PT\": \"SoulFrost\", \"zh-Hant\": \"SoulFrost\", \"sv-SE\": \"SoulFrost\", \"da-DK\": \"SoulFrost\", \"tr-TR\": \"SoulFrost\", \"fr-FR\": \"SoulFrost\", \"en-GB\": \"SoulFrost\", \"es-419\": \"SoulFrost\", \"ja-JP\": \"SoulFrost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/Akqn6iWOQDYQPlzwBuGkA4yF.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/pFwONf9YlH8LngxexEMoIJok.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/XBAlejhrv0MufRbL90L6zlRp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/oYNxeSE9R1aD7VQs9OEZoyjV.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/0915/DsRuYQndflBSAZNM5JVatCQj.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:07:24.850000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:30:33.830000Z\", \"playDuration\": \"PT8M34S\"}, {\"titleId\": \"PPSA15534_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:46:18.000000Z\", \"lastPlayedDateTime\": \"2023-09-21T13:08:39.680000Z\", \"playDuration\": \"PT11M41S\"}, {\"titleId\": \"PPSA15535_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:31:38.390000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:46:16.010000Z\", \"playDuration\": \"PT12M27S\"}, {\"titleId\": \"CUSA42544_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T12:12:37.780000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:31:27.520000Z\", \"playDuration\": \"PT14M33S\"}, {\"titleId\": \"CUSA42545_00\", \"name\": \"Rayland 2\", \"localizedName\": \"Rayland 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008042, \"titleIds\": [\"CUSA42544_00\", \"PPSA15535_00\", \"PPSA15534_00\", \"CUSA42545_00\"], \"name\": \"Rayland 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rayland 2\", \"uk-UA\": \"Rayland 2\", \"de-DE\": \"Rayland 2\", \"en-US\": \"Rayland 2\", \"ko-KR\": \"Rayland 2\", \"pt-BR\": \"Rayland 2\", \"es-ES\": \"Rayland 2\", \"ar-AE\": \"Rayland 2\", \"no-NO\": \"Rayland 2\", \"fr-CA\": \"Rayland 2\", \"it-IT\": \"Rayland 2\", \"pl-PL\": \"Rayland 2\", \"ru-RU\": \"Rayland 2\", \"zh-Hans\": \"Rayland 2\", \"nl-NL\": \"Rayland 2\", \"pt-PT\": \"Rayland 2\", \"zh-Hant\": \"Rayland 2\", \"sv-SE\": \"Rayland 2\", \"da-DK\": \"Rayland 2\", \"tr-TR\": \"Rayland 2\", \"fr-FR\": \"Rayland 2\", \"en-GB\": \"Rayland 2\", \"es-419\": \"Rayland 2\", \"ja-JP\": \"Rayland 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/c8e09cad0545bf2d3f1766dc657c119796eb4b30eb514fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/eb0a518c836c3607909d7662784603726a67795add570bc0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cb8b2f8abfc9683654a630974e3c80b30e81d2b58c6a22e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/717dd7ec65bed32d9282ec3678604edb1947c77be2cbb83f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/2aaf16181dfca9d5d96629a227082e865db0fc252b2ce2b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/cd0524fa8fff22ffdced1813d60ff41acc21f5316632c8b0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/1547cbd2beb277ee09d29e4003964a9df3d274fc6b6d6726.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/86e938e8050c6193dbbc7a8fd4fd417f6f1a1cb5ac326941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/5c5c7c00e18d3d1970cbf14986c06e790e85540c7923908f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/504f0b745a2f3dd64f7ab2688c9488dcfdb8112881e7877d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/548837c5cf582c3f228e6bbc164272c78792df0791769a51.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/e3cc507cc5c9740ee4f45b339c3627fcfbca0871abfa4cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ecc9de0745ef53771d1b31f6a6d08b33d602d12ec0f6f7f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/232999d666ea48d53647b184daebd41d630016ae8c480b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/ba46278a1ada5996ad3bb043d0795c8409984d56d175651d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2204/279f701e3810d770dc7ef32ea0f9f8a98326295a64df62f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1306/c69a0200d3aa804e5540d604e660f54b8883b9f1a394d4a0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:51:16.840000Z\", \"lastPlayedDateTime\": \"2023-09-21T12:12:29.600000Z\", \"playDuration\": \"PT18M3S\"}, {\"titleId\": \"PPSA18252_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:20:53.870000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:43:43.160000Z\", \"playDuration\": \"PT19M23S\"}, {\"titleId\": \"PPSA18253_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T11:00:08.670000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:19:50.880000Z\", \"playDuration\": \"PT19M37S\"}, {\"titleId\": \"CUSA44920_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:31:39.500000Z\", \"lastPlayedDateTime\": \"2023-09-21T11:00:06.780000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA44921_00\", \"name\": \"Super Brawl Rush\", \"localizedName\": \"Super Brawl Rush\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009102, \"titleIds\": [\"CUSA44920_00\", \"PPSA18252_00\", \"PPSA18253_00\", \"CUSA44921_00\"], \"name\": \"Super Brawl Rush\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Brawl Rush\", \"uk-UA\": \"Super Brawl Rush\", \"de-DE\": \"Super Brawl Rush\", \"en-US\": \"Super Brawl Rush\", \"pt-BR\": \"Super Brawl Rush\", \"es-ES\": \"Super Brawl Rush\", \"ar-AE\": \"Super Brawl Rush\", \"no-NO\": \"Super Brawl Rush\", \"fr-CA\": \"Super Brawl Rush\", \"it-IT\": \"Super Brawl Rush\", \"pl-PL\": \"Super Brawl Rush\", \"ru-RU\": \"Super Brawl Rush\", \"nl-NL\": \"Super Brawl Rush\", \"pt-PT\": \"Super Brawl Rush\", \"sv-SE\": \"Super Brawl Rush\", \"da-DK\": \"Super Brawl Rush\", \"tr-TR\": \"Super Brawl Rush\", \"fr-FR\": \"Super Brawl Rush\", \"en-GB\": \"Super Brawl Rush\", \"es-419\": \"Super Brawl Rush\", \"ja-JP\": \"Super Brawl Rush\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/79306ff28a76fbc0ab891bdb80b311c04ba011f7d57add15.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d5de18285bd0cb760e0c6be07e8cc219170dc77a2a9ec097.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/54222da01043962eeb43d23c02e416783bab9d35379df6c7.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/8fa2459b96c03770a60ea79e6cbc1d14a973b66b84ea5538.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e28eda624efd2dfa36a51c5c3cd869c62d75237f1b1243d9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/914ccce2ba867739c5477e8d57f87d5f316bd4a7c4057e5d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/d1c893ae10e1dbcaa505addcd15acd4c183d5f10c03215f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/dadace480efe556f47333c446d6f0f96356e5b12c3326092.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/1acfa28529ecd4dbf5474fbd06e7aaba3bb536318348b378.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/5c8ade27d87723481e2ea846c12517398b8022b99d8f240b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/0b18e09af2d40e6a9f6435ffc494f92515ec0e17ec7c31c5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/e0e5c7b6f1a5a40196370cd828d07ea8f2c40b2e43db7483.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2815/b374b44d31c25003f4734bd6ce276d0b05fe3a4e33720651.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-21T10:09:18.140000Z\", \"lastPlayedDateTime\": \"2023-09-21T10:30:44.750000Z\", \"playDuration\": \"PT21M22S\"}, {\"titleId\": \"CUSA45061_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T14:00:24.530000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:06:52.310000Z\", \"playDuration\": \"PT6M25S\"}, {\"titleId\": \"CUSA45060_00\", \"name\": \"Flupp The Fish\", \"localizedName\": \"Flupp The Fish\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009146, \"titleIds\": [\"CUSA45060_00\", \"CUSA45061_00\"], \"name\": \"Flupp The Fish\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Flupp The Fish\", \"uk-UA\": \"Flupp The Fish\", \"de-DE\": \"Flupp The Fish\", \"en-US\": \"Flupp The Fish\", \"pt-BR\": \"Flupp The Fish\", \"es-ES\": \"Flupp The Fish\", \"ar-AE\": \"Flupp The Fish\", \"no-NO\": \"Flupp The Fish\", \"fr-CA\": \"Flupp The Fish\", \"it-IT\": \"Flupp The Fish\", \"pl-PL\": \"Flupp The Fish\", \"ru-RU\": \"Flupp The Fish\", \"nl-NL\": \"Flupp The Fish\", \"pt-PT\": \"Flupp The Fish\", \"sv-SE\": \"Flupp The Fish\", \"da-DK\": \"Flupp The Fish\", \"tr-TR\": \"Flupp The Fish\", \"fr-FR\": \"Flupp The Fish\", \"en-GB\": \"Flupp The Fish\", \"es-419\": \"Flupp The Fish\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/cbff8b9cfc239bd613df1163a12a33529a82195cd9571354.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/474724fd3646d1c133194af183302198f19f00c6b0e023f9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/82b357fd96306a0a7ad2476c21e61e2ff24c4784ff509b51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/2063b1026655176642133b0f8c66c928ae02313c844515f1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/462c1e0b89ad0a202b184d4fcf64b09ede393fbeaeae8013.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/129e98001beec120f483622de9289f08d4e7d243cb03f7fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/0d9f91fbeac39217dec51c94ce5561e3a61f3ee56e401334.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1508/17bfb8bb930fbc9ffcd216a9014945c04dae17f3331780b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-20T13:47:30.550000Z\", \"lastPlayedDateTime\": \"2023-09-20T14:00:23.130000Z\", \"playDuration\": \"PT12M44S\"}, {\"titleId\": \"CUSA45124_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:33:19.650000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:42:28.800000Z\", \"playDuration\": \"PT7M48S\"}, {\"titleId\": \"CUSA45123_00\", \"name\": \"Perry Pig Jump\", \"localizedName\": \"Perry Pig Jump\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10009171, \"titleIds\": [\"CUSA45123_00\", \"CUSA45124_00\"], \"name\": \"Perry Pig Jump\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Perry Pig Jump\", \"uk-UA\": \"Perry Pig Jump\", \"de-DE\": \"Perry Pig Jump\", \"en-US\": \"Perry Pig Jump\", \"pt-BR\": \"Perry Pig Jump\", \"es-ES\": \"Perry Pig Jump\", \"ar-AE\": \"Perry Pig Jump\", \"no-NO\": \"Perry Pig Jump\", \"fr-CA\": \"Perry Pig Jump\", \"it-IT\": \"Perry Pig Jump\", \"pl-PL\": \"Perry Pig Jump\", \"ru-RU\": \"Perry Pig Jump\", \"nl-NL\": \"Perry Pig Jump\", \"pt-PT\": \"Perry Pig Jump\", \"sv-SE\": \"Perry Pig Jump\", \"da-DK\": \"Perry Pig Jump\", \"tr-TR\": \"Perry Pig Jump\", \"fr-FR\": \"Perry Pig Jump\", \"en-GB\": \"Perry Pig Jump\", \"es-419\": \"Perry Pig Jump\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/150ce75cf4300012872e7f6e383e9a29ececf562e24f73a6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/1fc45b338a12bde1774a66e6a1aa4f5b69a7f9c6c82a57f3.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/118b38b250361584d7ed70b6c68f02161bdbc15a7addfb73.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/742391bd353b5e235aa4a414ab9e1a04aebbd3a1111f98ab.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/cbe656061d727eddc1dfd812ed5cbe2aac35bb0be6e4f7a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/50a17819c49ba2b28af938178119dfc527ddbb364da2519e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/9185b55eba11e4d81892a45d4aa2c9bf47078e6a7396bd17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/b5c192deac9032076911ee0ab9cb15b83e472460ca250a00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/dafd08b3d7d0617272dd21e464e70110da1e21ffa46403cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1509/afe30587cbf128ba8b371db475ead66a5be6f0112939ef17.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:19:41.950000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:33:18.070000Z\", \"playDuration\": \"PT8M7S\"}, {\"titleId\": \"CUSA45328_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:09:32.030000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:18:29.960000Z\", \"playDuration\": \"PT2M34S\"}, {\"titleId\": \"CUSA45327_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:04:22.870000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:09:27.940000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA45326_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T13:02:36.980000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:04:18.610000Z\", \"playDuration\": \"PT1M32S\"}, {\"titleId\": \"CUSA45325_00\", \"name\": \"Tetropunk\", \"localizedName\": \"Tetropunk\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009285, \"titleIds\": [\"CUSA45328_00\", \"CUSA45325_00\", \"CUSA45326_00\", \"CUSA45327_00\"], \"name\": \"Tetropunk\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"SIMULATION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tetropunk\", \"uk-UA\": \"Tetropunk\", \"de-DE\": \"Tetropunk\", \"en-US\": \"Tetropunk\", \"ko-KR\": \"Tetropunk\", \"pt-BR\": \"Tetropunk\", \"es-ES\": \"Tetropunk\", \"ar-AE\": \"Tetropunk\", \"no-NO\": \"Tetropunk\", \"fr-CA\": \"Tetropunk\", \"it-IT\": \"Tetropunk\", \"pl-PL\": \"Tetropunk\", \"ru-RU\": \"Tetropunk\", \"zh-Hans\": \"Tetropunk\", \"nl-NL\": \"Tetropunk\", \"pt-PT\": \"Tetropunk\", \"zh-Hant\": \"Tetropunk\", \"sv-SE\": \"Tetropunk\", \"da-DK\": \"Tetropunk\", \"tr-TR\": \"Tetropunk\", \"fr-FR\": \"Tetropunk\", \"en-GB\": \"Tetropunk\", \"es-419\": \"Tetropunk\", \"ja-JP\": \"Tetropunk\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/038f1f7d6041e59bf63d0e00385e2b4db1ee731ac57609ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/3bf65ab180368b6e8fc5fe0957b37149b48045605a97dd8e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/5e679a20a855826752d34d9362b816e9e02efe789d117051.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/912bf08778ad2654d20ce1513ccd9ef4f55fbab50379e1fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/991c64c545fdc74f5bc95cf2a44c370d6518d5f98a7edfa8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/b598af8776f54183cd9e347c7514fdfbff57056e94db44ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bc28d9dc2799c234b62c45a4f010b18b2311e89b55d031e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/bfa3066f4540e589de1b0d965043198b9bf1f496d3d4902a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2508/ca1e18ca3863837f05f36d467592424e3945c1909a5f2e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1206/a1e6871fd91b4be420902495543643026bc401c6419f57a4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-19T12:59:20.940000Z\", \"lastPlayedDateTime\": \"2023-09-19T13:02:32.340000Z\", \"playDuration\": \"PT3M3S\"}, {\"titleId\": \"CUSA27311_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T00:35:04.450000Z\", \"lastPlayedDateTime\": \"2023-09-19T12:59:01.690000Z\", \"playDuration\": \"PT4H51M48S\"}, {\"titleId\": \"CUSA45128_00\", \"name\": \"Only Way Up! Parkour Jump Simulator\", \"localizedName\": \"Only Way Up! Parkour Jump Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009173, \"titleIds\": [\"CUSA45128_00\", \"CUSA45129_00\"], \"name\": \"Only Way Up! Parkour Jump Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"PARTY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Only Way Up! Parkour Jump Simulator\", \"uk-UA\": \"Only Way Up! Parkour Jump Simulator\", \"de-DE\": \"Only Way Up! Parkour Jump Simulator\", \"en-US\": \"Only Way Up! Parkour Jump Simulator\", \"ko-KR\": \"Only Way Up! Parkour Jump Simulator\", \"pt-BR\": \"Only Way Up! Parkour Jump Simulator\", \"es-ES\": \"Only Way Up! Parkour Jump Simulator\", \"ar-AE\": \"Only Way Up! Parkour Jump Simulator\", \"no-NO\": \"Only Way Up! Parkour Jump Simulator\", \"fr-CA\": \"Only Way Up! Parkour Jump Simulator\", \"it-IT\": \"Only Way Up! Parkour Jump Simulator\", \"pl-PL\": \"Only Way Up! Parkour Jump Simulator\", \"ru-RU\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hans\": \"Only Way Up! Parkour Jump Simulator\", \"nl-NL\": \"Only Way Up! Parkour Jump Simulator\", \"pt-PT\": \"Only Way Up! Parkour Jump Simulator\", \"zh-Hant\": \"Only Way Up! Parkour Jump Simulator\", \"sv-SE\": \"Only Way Up! Parkour Jump Simulator\", \"da-DK\": \"Only Way Up! Parkour Jump Simulator\", \"tr-TR\": \"Only Way Up! Parkour Jump Simulator\", \"fr-FR\": \"Only Way Up! Parkour Jump Simulator\", \"en-GB\": \"Only Way Up! Parkour Jump Simulator\", \"es-419\": \"Only Way Up! Parkour Jump Simulator\", \"ja-JP\": \"Only Way Up! Parkour Jump Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/19e19ff34217c7d6cbeb4192df11d4ece0617630cbdf914c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/d2663832d1d644e5daa3fe2e90592e7ac1ff91a0b4d9af79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/3014/d753e0a72e5e0a50296f7e4d5e7a13c0bd7aa7805811ad3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2610/414c1bdaf15e166250c5b5e296152ff8c418f96f897bfed2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/17ee0f07234b23143a17f52c78c1c83aae2085841f9b185d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3111a67211495b1c082c0e956a9b92b886e018030db7ea2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/a31c643856adeac9ade2fef53381401b8b1e77dcca660a12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b91cc473d5b304fcb7f3ec7b16c5bd5aa8fbffb654e0f58e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/c1b0e01480451dd2fbefa9082cb55f60cc960b736b91e237.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0e77e736a26249d5d9ca82570e1e22944351a5f51ca0e45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/e7d4cbc097851e19100faa07f2c79d56dbef302d552b21b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/8e5afd541933dd374faafa13cfc08b0bf423b3fb4e048fb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/b3cc129f35a11db8283bcb7ea2acde0659fca44b5a541ede.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/0af57a511cb7e9484b995ac9b8a1b7f987a8e92366f20b4e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0611/173c5c09e564397f3e479e3d7590752c38a88167877ba5ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2915/e3326440cb554ae6c6917d94d271f14b011ea7ec0231b576.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-18T05:37:31.060000Z\", \"lastPlayedDateTime\": \"2023-09-18T06:59:54.250000Z\", \"playDuration\": \"PT1H19M7S\"}, {\"titleId\": \"PPSA14313_00\", \"name\": \"We Were Here Expeditions: The FriendShip\", \"localizedName\": \"We Were Here Expeditions: The FriendShip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007597, \"titleIds\": [\"PPSA14313_00\", \"PPSA14315_00\", \"CUSA41265_00\", \"CUSA41266_00\", \"CUSA45466_00\", \"CUSA45467_00\"], \"name\": \"We Were Here Expeditions: The FriendShip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"We Were Here Expeditions: The FriendShip\", \"uk-UA\": \"We Were Here Expeditions: The FriendShip\", \"de-DE\": \"We Were Here Expeditions: The FriendShip\", \"en-US\": \"We Were Here Expeditions: The FriendShip\", \"ko-KR\": \"We Were Here Expeditions: The FriendShip\", \"pt-BR\": \"We Were Here Expeditions: The FriendShip\", \"es-ES\": \"We Were Here Expeditions: The FriendShip\", \"ar-AE\": \"We Were Here Expeditions: The FriendShip\", \"no-NO\": \"We Were Here Expeditions: The FriendShip\", \"fr-CA\": \"We Were Here Expeditions: The FriendShip\", \"it-IT\": \"We Were Here Expeditions: The FriendShip\", \"pl-PL\": \"We Were Here Expeditions: The FriendShip\", \"ru-RU\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hans\": \"We Were Here Expeditions: The FriendShip\", \"nl-NL\": \"We Were Here Expeditions: The FriendShip\", \"pt-PT\": \"We Were Here Expeditions: The FriendShip\", \"zh-Hant\": \"We Were Here Expeditions: The FriendShip\", \"sv-SE\": \"We Were Here Expeditions: The FriendShip\", \"da-DK\": \"We Were Here Expeditions: The FriendShip\", \"tr-TR\": \"We Were Here Expeditions: The FriendShip\", \"fr-FR\": \"We Were Here Expeditions: The FriendShip\", \"en-GB\": \"We Were Here Expeditions: The FriendShip\", \"es-419\": \"We Were Here Expeditions: The FriendShip\", \"ja-JP\": \"We Were Here \\u2018Expedition\\u2019 \\u30b7\\u30ea\\u30fc\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0ef6a1b490e97178a5510c87f95ccff50c619636b4727d45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/8e705f7ed3c3ff7819219b9338f8476213e6d65f42c644ad.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1208/cf2422b87ff2a063d511d1dfa757ba6c90cb5a95983a6fdb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1810/0851e67825bc090c5726a791437b93df8abe89e17fb26f69.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/6b597519cee7809435338392e7d367c3dc7aa425f403f2c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/1209/0376cf646666bea657700a78426b0a4604d485dcd1e4b1e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/42450326c355d7a335e6da2ad169eedcf34abc7ee6016fab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/bb21576202ce98351c6013907927dee340374e1c1e97308d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/881d8219057982cfbe1aa7e905d93af29058bbbd9f87c33d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/1ef24860ca8881444f6f4d22716b9058eb0f4bba014c796c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/d8bcb3bfbbd882e636d0f4150a03e2fcf8e081d11ed7f9b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/640017d35e0ee95bfa4c54477f7ff8e51931fcbc3c717d41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/59b9d8f58877b8abfc9eea6f380089c9178f307866e85b07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/10b11909775419345e46a0d5869354f4b0434ab9112a3c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0711/21a60df9bd40e9956fcbdcedf28124892d83a5a569a90c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0809/1f8c4fac195455331fe40e0ea7e7f2c97e4f3ee4e9984398.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T13:05:55.100000Z\", \"lastPlayedDateTime\": \"2023-09-18T05:37:28.780000Z\", \"playDuration\": \"PT4H17S\"}, {\"titleId\": \"PPSA17410_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:55:26.290000Z\", \"lastPlayedDateTime\": \"2023-09-16T12:02:11.340000Z\", \"playDuration\": \"PT6M38S\"}, {\"titleId\": \"PPSA17411_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:46:07.720000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:55:23.820000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA12629_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:38:06.180000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:45:46.860000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"PPSA12630_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:36:09.630000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:38:04.150000Z\", \"playDuration\": \"PT1M43S\"}, {\"titleId\": \"CUSA39591_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:24:24.830000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:36:07.890000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA39592_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:21:02.590000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:24:22.820000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA18086_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:13:47.910000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:18:32.390000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA35689_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:14:15.850000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:16:23.540000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA35690_00\", \"name\": \"Hermit's Tic-Tac-Toe\", \"localizedName\": \"Hermit's Tic-Tac-Toe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005373, \"titleIds\": [\"CUSA35688_00\", \"CUSA35689_00\", \"CUSA35690_00\", \"CUSA34434_00\"], \"name\": \"Hermit's Tic-Tac-Toe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hermit's Tic-Tac-Toe\", \"uk-UA\": \"Hermit's Tic-Tac-Toe\", \"de-DE\": \"Hermit's Tic-Tac-Toe\", \"en-US\": \"Hermit's Tic-Tac-Toe\", \"ko-KR\": \"Hermit's Tic-Tac-Toe\", \"pt-BR\": \"Hermit's Tic-Tac-Toe\", \"es-ES\": \"Hermit's Tic-Tac-Toe\", \"ar-AE\": \"Hermit's Tic-Tac-Toe\", \"no-NO\": \"Hermit's Tic-Tac-Toe\", \"fr-CA\": \"Hermit's Tic-Tac-Toe\", \"it-IT\": \"Hermit's Tic-Tac-Toe\", \"pl-PL\": \"Hermit's Tic-Tac-Toe\", \"ru-RU\": \"Hermit's Tic-Tac-Toe\", \"zh-Hans\": \"Hermit's Tic-Tac-Toe\", \"nl-NL\": \"Hermit's Tic-Tac-Toe\", \"pt-PT\": \"Hermit's Tic-Tac-Toe\", \"zh-Hant\": \"Hermit's Tic-Tac-Toe\", \"sv-SE\": \"Hermit's Tic-Tac-Toe\", \"da-DK\": \"Hermit's Tic-Tac-Toe\", \"tr-TR\": \"Hermit's Tic-Tac-Toe\", \"fr-FR\": \"Hermit's Tic-Tac-Toe\", \"en-GB\": \"Hermit's Tic-Tac-Toe\", \"es-419\": \"Hermit's Tic-Tac-Toe\", \"ja-JP\": \"Hermit's Tic-Tac-Toe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2912/7a4ddc97af717dd594bdad3c123adb45e35a3537bfd1171d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/4389e227fe2cf5671471273cce5cbd9224ee6a60bcca9e86.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2206/dc5284ea482c53beef073932c30e020e0eac31b579372d0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:28:39.390000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:15:22.900000Z\", \"playDuration\": \"PT51S\"}, {\"titleId\": \"PPSA18085_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T11:09:17.000000Z\", \"lastPlayedDateTime\": \"2023-09-16T11:13:45.570000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA35896_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:48:35.490000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:54:35.730000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35895_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:43:13.870000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:48:33.500000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA35897_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:40:04.220000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:43:11.720000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA35898_00\", \"name\": \"TWIN P\", \"localizedName\": \"TWIN P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005874, \"titleIds\": [\"CUSA35895_00\", \"CUSA35897_00\", \"CUSA35898_00\", \"CUSA35896_00\"], \"name\": \"TWIN P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TWIN P\", \"uk-UA\": \"TWIN P\", \"de-DE\": \"TWIN P\", \"en-US\": \"TWIN P\", \"ko-KR\": \"TWIN P\", \"pt-BR\": \"TWIN P\", \"es-ES\": \"TWIN P\", \"ar-AE\": \"TWIN P\", \"no-NO\": \"TWIN P\", \"fr-CA\": \"TWIN P\", \"it-IT\": \"TWIN P\", \"pl-PL\": \"TWIN P\", \"ru-RU\": \"TWIN P\", \"zh-Hans\": \"TWIN P\", \"nl-NL\": \"TWIN P\", \"pt-PT\": \"TWIN P\", \"zh-Hant\": \"TWIN P\", \"sv-SE\": \"TWIN P\", \"da-DK\": \"TWIN P\", \"tr-TR\": \"TWIN P\", \"fr-FR\": \"TWIN P\", \"en-GB\": \"TWIN P\", \"es-419\": \"TWIN P\", \"ja-JP\": \"TWIN P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0409/d9bb996e0e718d35bf79033e63b430cebbdacf572fe0cfc8.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/2q11LL9VEIsl8ztmSAI5wIp9.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/aUunmLzuAj1lQ000oQujNT66.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/WGnCXgKwSX9eSuD6v6Irt30U.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/hzGrjmluaaw68KUu3XvPWHHH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-16T10:31:07.900000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:40:02.310000Z\", \"playDuration\": \"PT8M48S\"}, {\"titleId\": \"PPSA02342_00\", \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"localizedName\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 234689, \"titleIds\": [\"CUSA16746_00\", \"CUSA26351_00\", \"CUSA26350_00\", \"CUSA16742_00\", \"PPSA02424_00\", \"CUSA16743_00\", \"PPSA02342_00\", \"PPSA02343_00\", \"PPSA02423_00\"], \"name\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"uk-UA\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"de-DE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-US\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"ko-KR\": \"It Takes Two PS4\\u2122\\uc640 PS5\\u2122\", \"pt-BR\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"es-ES\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ar-AE\": \"It Takes Two PS4\\u2122\\u200e \\u0648PS5\\u2122\\u200e\", \"no-NO\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"fr-CA\": \"It Takes Two, PS4\\u2122 et PS5\\u2122\", \"it-IT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"pl-PL\": \"It Takes Two na PS4\\u2122 i PS5\\u2122\", \"ru-RU\": \"It Takes Two PS4\\u2122 \\u0438 PS5\\u2122\", \"zh-Hans\": \"\\u53cc\\u4eba\\u6210\\u884c PS4\\u2122 \\u548c PS5\\u2122\", \"nl-NL\": \"It Takes Two PS4\\u2122 en PS5\\u2122\", \"pt-PT\": \"It Takes Two PS4\\u2122 e PS5\\u2122\", \"zh-Hant\": \"\\u300a\\u96d9\\u4eba\\u6210\\u884c\\u300bPS4\\u2122 & PS5\\u2122\", \"sv-SE\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"da-DK\": \"It Takes Two PS4\\u2122 og PS5\\u2122\", \"tr-TR\": \"It Takes Two PS4\\u2122 ve PS5\\u2122\", \"fr-FR\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"en-GB\": \"It Takes Two PS4\\u2122 & PS5\\u2122\", \"es-419\": \"It Takes Two para PS4\\u2122 y PS5\\u2122\", \"ja-JP\": \"\\u300cIt Takes Two\\u300dPS4\\u2122 & PS5\\u2122\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/BNL7cT9pdkCgAKzSfraQYs42.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/4m1rvQBmI5p2hal8fPqUyPHy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/UkFiVyReEoiV28rXgyHYKhfS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0817/ZUm36AQSkjp6IymyoOxwOjzb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0g1BUdIW0P90xMdkkboi3fGw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/IjqyQi0J2PL7GdEo3K8jKWMh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/Q6W62ByZHloG5rN5YvHTpRgO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/dEmE7YV8EtFui9oHQJWOiVTa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/gKHJyNgpI4lCRAAEtESWB6V9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/0815/0Xqi1LgRoEtJ5zlFprpd54Vu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-29T10:20:23.300000Z\", \"lastPlayedDateTime\": \"2023-09-16T10:20:23.000000Z\", \"playDuration\": \"PT2H42M52S\"}, {\"titleId\": \"PPSA15565_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T09:58:36.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T10:47:49.320000Z\", \"playDuration\": \"PT48M52S\"}, {\"titleId\": \"PPSA15566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T08:39:02.370000Z\", \"lastPlayedDateTime\": \"2023-09-10T09:09:48.510000Z\", \"playDuration\": \"PT29M43S\"}, {\"titleId\": \"CUSA42567_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:52:25.210000Z\", \"lastPlayedDateTime\": \"2023-09-10T08:38:38.870000Z\", \"playDuration\": \"PT30M44S\"}, {\"titleId\": \"CUSA42566_00\", \"name\": \"Acceptance\", \"localizedName\": \"Acceptance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008052, \"titleIds\": [\"CUSA42567_00\", \"CUSA42566_00\", \"PPSA15565_00\", \"PPSA15566_00\"], \"name\": \"Acceptance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"HORROR\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Acceptance\", \"uk-UA\": \"Acceptance\", \"de-DE\": \"Acceptance\", \"en-US\": \"Acceptance\", \"pt-BR\": \"Acceptance\", \"es-ES\": \"Acceptance\", \"ar-AE\": \"Acceptance\", \"no-NO\": \"Acceptance\", \"fr-CA\": \"Acceptance\", \"it-IT\": \"Acceptance\", \"pl-PL\": \"Acceptance\", \"ru-RU\": \"Acceptance\", \"nl-NL\": \"Acceptance\", \"pt-PT\": \"Acceptance\", \"sv-SE\": \"Acceptance\", \"da-DK\": \"Acceptance\", \"tr-TR\": \"Acceptance\", \"fr-FR\": \"Acceptance\", \"en-GB\": \"Acceptance\", \"es-419\": \"Acceptance\", \"ja-JP\": \"Acceptance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/921252e2360cab028fa2387ea62bcfb2a69c3353c549b063.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/66b4b1dada8f23eb7990d74b77868c262e123417ceb7f38c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/b12755456fb835ed78dc694d5cf8f0f33507379bf72141c5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/5c5ae9e9a1b0110fe6c6cac77944908e21357a8ab026003f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/250ccfd16c5bab9b6082047b1bf3f44c9d862e8517f14e0d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ad70d01c913c57e68b80bb332ed3e45e837908592223343a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/08cd62f37a77ac02ffcbc8ae3a12e0b8c734a07692ae38ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/f900cf14757ce0dcfb8927f11aa29373f44295b93a874297.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c9fab1fde7726b99c96fe3ef313f15e783bc3105ec0757f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ea8ce89aea3956017180162277677638e85475e49fc64a50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/45d8a921c0d0e88f9e6e890b9633595f8ee1144aba208e65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/c3b752e1a1af9653b0865570cce38976d29e449e4e417c09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2109/ee4318a59f6524c7b88bb7f41c006c06b5ebd2297b1ef808.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T07:04:39.770000Z\", \"lastPlayedDateTime\": \"2023-09-10T07:43:59.580000Z\", \"playDuration\": \"PT38M42S\"}, {\"titleId\": \"CUSA45018_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:23:48.690000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:44:22.550000Z\", \"playDuration\": \"PT20M27S\"}, {\"titleId\": \"CUSA45019_00\", \"name\": \"Puzzle Journey\", \"localizedName\": \"Puzzle Journey\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009131, \"titleIds\": [\"CUSA45018_00\", \"CUSA45019_00\", \"CUSA46788_00\", \"CUSA46789_00\"], \"name\": \"Puzzle Journey\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Journey\", \"uk-UA\": \"Puzzle Journey\", \"de-DE\": \"Puzzle Journey\", \"en-US\": \"Puzzle Journey\", \"pt-BR\": \"Puzzle Journey\", \"es-ES\": \"Puzzle Journey\", \"ar-AE\": \"Puzzle Journey\", \"no-NO\": \"Puzzle Journey\", \"fr-CA\": \"Puzzle Journey\", \"it-IT\": \"Puzzle Journey\", \"pl-PL\": \"Puzzle Journey\", \"ru-RU\": \"Puzzle Journey\", \"nl-NL\": \"Puzzle Journey\", \"pt-PT\": \"Puzzle Journey\", \"sv-SE\": \"Puzzle Journey\", \"da-DK\": \"Puzzle Journey\", \"tr-TR\": \"Puzzle Journey\", \"fr-FR\": \"Puzzle Journey\", \"en-GB\": \"Puzzle Journey\", \"es-419\": \"Puzzle Journey\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f8d69494eb83af6f4e37468761fc2e1a7aba0aa1ecd7ff17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/9215ef9f921d61b9cd4652f8ffbd9a964c94f4d089286f41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/68278d5d22fc6319a707bbc6f29b3eb3288c02c09b296d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/a04c80fe19db77d1909c1b9801e83b942798ecdd95d84f4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/bdb864cfbe61b352153cbb56ae13f5acbeffabc14c503ad3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2da89b39dec7487883b652aefa8d72a00eac7d008a73eaa2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/3257c86cc2a3a181d6394a2475a717d05a59d49b330640d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/2cf7a2ee307ce8902620c825611c30b88110a438e85e0f38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/f3f5909a7ce7b2ee434c93f525ce21662dadb20f71c5a832.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/25202fe951c6ad46ebc481516a8133df5ef8594493ad1fe7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/e9f55628225f73c0abc8537006a498aac447905df9fe8bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1510/4e525ced8a416cd8f012a8a0cccc1f83843b7f29d299220d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T06:11:57.200000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:23:44.820000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"PPSA15588_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:41:02.130000Z\", \"lastPlayedDateTime\": \"2023-09-10T06:07:21.980000Z\", \"playDuration\": \"PT22M54S\"}, {\"titleId\": \"PPSA15589_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T05:16:47.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:41:00.200000Z\", \"playDuration\": \"PT23M14S\"}, {\"titleId\": \"PPSA15586_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:49:27.000000Z\", \"lastPlayedDateTime\": \"2023-09-10T05:12:42.890000Z\", \"playDuration\": \"PT22M59S\"}, {\"titleId\": \"PPSA15587_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T04:16:41.430000Z\", \"lastPlayedDateTime\": \"2023-09-10T04:49:12.340000Z\", \"playDuration\": \"PT23M29S\"}, {\"titleId\": \"CUSA42600_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T02:19:16.080000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:41:59.070000Z\", \"playDuration\": \"PT22M30S\"}, {\"titleId\": \"CUSA42599_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:55:14.280000Z\", \"lastPlayedDateTime\": \"2023-09-10T02:18:10.940000Z\", \"playDuration\": \"PT22M52S\"}, {\"titleId\": \"CUSA42595_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T01:29:11.910000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:53:44.290000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"CUSA42601_00\", \"name\": \"Wild Seas\", \"localizedName\": \"Wild Seas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008053, \"titleIds\": [\"PPSA15586_00\", \"PPSA15587_00\", \"CUSA42595_00\", \"CUSA42600_00\", \"CUSA42601_00\", \"CUSA42599_00\", \"PPSA15589_00\", \"PPSA15588_00\"], \"name\": \"Wild Seas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Wild Seas\", \"uk-UA\": \"Wild Seas\", \"de-DE\": \"Wild Seas\", \"en-US\": \"Wild Seas\", \"ko-KR\": \"Wild Seas\", \"pt-BR\": \"Wild Seas\", \"es-ES\": \"Wild Seas\", \"ar-AE\": \"Wild Seas\", \"no-NO\": \"Wild Seas\", \"fr-CA\": \"Wild Seas\", \"it-IT\": \"Wild Seas\", \"pl-PL\": \"Wild Seas\", \"ru-RU\": \"Wild Seas\", \"zh-Hans\": \"Wild Seas\", \"nl-NL\": \"Wild Seas\", \"pt-PT\": \"Wild Seas\", \"zh-Hant\": \"Wild Seas\", \"sv-SE\": \"Wild Seas\", \"da-DK\": \"Wild Seas\", \"tr-TR\": \"Wild Seas\", \"fr-FR\": \"Wild Seas\", \"en-GB\": \"Wild Seas\", \"es-419\": \"Wild Seas\", \"ja-JP\": \"Wild Seas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/268cd434d2b6e62809e4ff3846ce50c69e936dc62c2e0a91.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/a389ee145bfa2d4665142709465b71f31e524a8b84b57f9a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1021/d5dd3b0be8fb822ceb7f9aebb74e73c6aada9bfccaabac8e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0815/23cc9d16e8ae8110c4fb852c26be165e36b37402402417e7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/3cf11afcb69d8b4b5b8738dc1fde6a315a8e7d2197a16b77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/fe6af7aa4f60bf568812322d1035c3c0e1c686dea8539cfa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5da586e7cb312fb63c8e3d308578ce69e4639d1e0ac4a6a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/5a7a05f05c144d1bb331c9a2e7bc2ee64065507a6ff4ebcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/435c91bf50399acac90c02513cf221cd9cfd8e564ece8747.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ab18f4a50078a992a6d0f28a9a973f45eaa99c43e7b2718c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/967fb5b423ed6997ca5f253095e563f3bf526c2673aa3298.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/c54148771ab436ca81435b66440872ad86f8553178b3af50.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/fc00a1cf9a7c04a635cb07e469273a5b88234bb7e876989d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/ec6bed517f0f1d44a32e611c542282e28462bb0c63255094.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/006725d32db1ab45ed23295120a2aa415f18ac63aab7c806.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2514/bd4bb29c461f356ecd36ac815e29b6171049aa4deede7bd1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0221/c2b371e97dd1b3dd64b74314c5c9a9d67c9208dbc216d1db.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-10T00:21:45.740000Z\", \"lastPlayedDateTime\": \"2023-09-10T01:29:10.200000Z\", \"playDuration\": \"PT1H5M14S\"}, {\"titleId\": \"PPSA17492_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:09:19.700000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:10:04.600000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA17491_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:51.300000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:09:17.240000Z\", \"playDuration\": \"PT15S\"}, {\"titleId\": \"PPSA17493_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:08:22.000000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:48.810000Z\", \"playDuration\": \"PT20S\"}, {\"titleId\": \"PPSA17490_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T14:07:59.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:08:20.730000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"CUSA44265_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:52:08.970000Z\", \"lastPlayedDateTime\": \"2023-09-09T14:07:54.850000Z\", \"playDuration\": \"PT15M41S\"}, {\"titleId\": \"CUSA44264_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:38:05.240000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:52:06.890000Z\", \"playDuration\": \"PT13M17S\"}, {\"titleId\": \"CUSA44266_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T13:23:34.910000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:38:00.590000Z\", \"playDuration\": \"PT14M17S\"}, {\"titleId\": \"CUSA44263_00\", \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"localizedName\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008814, \"titleIds\": [\"PPSA19283_00\", \"PPSA19286_00\", \"CUSA44264_00\", \"CUSA44265_00\", \"CUSA44266_00\", \"PPSA19284_00\", \"PPSA19285_00\", \"CUSA45747_00\", \"CUSA45746_00\", \"CUSA44263_00\", \"CUSA45748_00\", \"PPSA17491_00\", \"PPSA17492_00\", \"PPSA17493_00\", \"PPSA17490_00\", \"CUSA45745_00\"], \"name\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"uk-UA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"de-DE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-US\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ko-KR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-BR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-ES\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ar-AE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"no-NO\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-CA\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"it-IT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pl-PL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ru-RU\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hans\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"nl-NL\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"pt-PT\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"zh-Hant\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"sv-SE\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"da-DK\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"tr-TR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"fr-FR\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"en-GB\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"es-419\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\", \"ja-JP\": \"Mr. Hibbl: The Lost Levels - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/45fa9bce53e6fc96747a6451f876a09721b17959f652f603.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/16fd2ac2143ea32b571da4baefa813cde20c24ad1fe8e907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/fc51abd420c5637488b6dadb00e97933c21dc9d4528e1f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a4d9fa3ba20667a0eb3b8ea968a49aa546f672729213cfcb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/7eeb766a0cf5a5b8215ca1d9c3bba7c1134833b507758977.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/52d1b1a881e3b377baff6b9d4bd69b0a879cedd7adeeffa3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/63370ed0a50e6afe92a43b015bfa6dc02712961acf72f10f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/48da0ce9ba93ec0779ed6b86cf3ca839da3e5fc4dedb7ef3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/4148cb2714fee8a0b02b5b8c017ff50d104274014ebb5d99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/ee15410533be0c5122a1053c04c62b899c3cc567910ff45f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/c188c3239c28eace8f384a492768ee6f8f5c6e890f635514.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/a7a139e2e4ec5e22d48ea0ebbd8bed1d77fdc6c7a66360c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/056205b5479e4cbf9be1c137c9ff2109f47ec28efd705a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0811/832bfc3086a6674ef038c722efcd150bf34fb94ee8afcee4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:53:37.370000Z\", \"lastPlayedDateTime\": \"2023-09-09T13:14:57.180000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"PPSA17357_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:47:43.660000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:52:38.520000Z\", \"playDuration\": \"PT1M33S\"}, {\"titleId\": \"PPSA17358_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:40:33.480000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:47:41.530000Z\", \"playDuration\": \"PT1M9S\"}, {\"titleId\": \"PPSA17359_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:31:00.980000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:40:31.550000Z\", \"playDuration\": \"PT9M24S\"}, {\"titleId\": \"PPSA17360_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T12:28:04.140000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:30:58.910000Z\", \"playDuration\": \"PT2M19S\"}, {\"titleId\": \"CUSA44173_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T11:59:31.350000Z\", \"lastPlayedDateTime\": \"2023-09-09T12:25:46.520000Z\", \"playDuration\": \"PT25M52S\"}, {\"titleId\": \"CUSA44174_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-09T10:33:51.040000Z\", \"lastPlayedDateTime\": \"2023-09-09T11:59:29.370000Z\", \"playDuration\": \"PT31M45S\"}, {\"titleId\": \"CUSA44171_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T23:57:10.940000Z\", \"lastPlayedDateTime\": \"2023-09-09T00:37:08.840000Z\", \"playDuration\": \"PT39M43S\"}, {\"titleId\": \"CUSA44172_00\", \"name\": \"Colorful Boi\", \"localizedName\": \"Colorful Boi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008764, \"titleIds\": [\"CUSA44172_00\", \"CUSA44399_00\", \"CUSA44173_00\", \"CUSA44174_00\", \"CUSA44171_00\", \"CUSA44398_00\", \"PPSA17358_00\", \"PPSA17359_00\", \"PPSA17360_00\", \"PPSA17357_00\", \"PPSA17655_00\", \"PPSA17656_00\", \"PPSA17653_00\", \"PPSA17654_00\", \"CUSA44401_00\", \"CUSA44400_00\"], \"name\": \"Colorful Boi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Colorful Boi\", \"uk-UA\": \"Colorful Boi\", \"de-DE\": \"Colorful Boi\", \"en-US\": \"Colorful Boi\", \"ko-KR\": \"Colorful Boi\", \"pt-BR\": \"Colorful Boi\", \"es-ES\": \"Colorful Boi\", \"ar-AE\": \"Colorful Boi\", \"no-NO\": \"Colorful Boi\", \"fr-CA\": \"Colorful Boi\", \"it-IT\": \"Colorful Boi\", \"pl-PL\": \"Colorful Boi\", \"ru-RU\": \"Colorful Boi\", \"zh-Hans\": \"Colorful Boi\", \"nl-NL\": \"Colorful Boi\", \"pt-PT\": \"Colorful Boi\", \"zh-Hant\": \"Colorful Boi\", \"sv-SE\": \"Colorful Boi\", \"da-DK\": \"Colorful Boi\", \"tr-TR\": \"Colorful Boi\", \"fr-FR\": \"Colorful Boi\", \"en-GB\": \"Colorful Boi\", \"es-419\": \"Colorful Boi\", \"ja-JP\": \"Colorful Boi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/c64745935266423321f798cbd35aeb8f1ab4058811afd315.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/47d781783bb05ae283d9ee12919b0f6d6bceea8cffb357d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/ffe42f8cf40b86afb17bb61679d14d1917b04ca1b25f6449.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/0c2541fd35c5a1db7fd09fffc0439b05c9afceb9641d84e3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/558bada462caafba7b42024187edd9fa50905186706a9797.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/7dddb0d4add9a68aa29b63904d80a2e3623a002a15831243.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/424ebf201dba2464f82b26e87be9dda1547f4797f95450c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/6459253c43956ed43603c06a95ee645c0b062070d48b20dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/bd031873010e1bc363721f4eabb5770878ae64a429cbb698.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/05b633d4ba9fdd0109c2fcbe9f10a27c4d2dad0abef83ae3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/ba603413b774ec1c6c85233f910323b81d81fe9dce483954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/d5c280a6950b30308cdcda85f81d42ac6f22f595b67d53c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/47a3d647543234e586c3ee640cb0806dbbc0a4833bbb8844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/1741b925f3c664eefc4fc53a710fcb4d7434d80bcf7f688b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/07ae96175d5c2f6a876866511ea48568ff983e99102da62f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/14ed4c38905af8281743c30620b9061e371de51aba99f9f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2308/a3885340b16c4e379e29a6e886d779f14ec913f92bb9a8b3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-08T22:21:02.750000Z\", \"lastPlayedDateTime\": \"2023-09-08T23:25:25.940000Z\", \"playDuration\": \"PT1H3M34S\"}, {\"titleId\": \"PPSA01652_00\", \"name\": \"YouTube\", \"localizedName\": \"YouTube\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"category\": \"ps5_native_media_app\", \"service\": \"other\", \"playCount\": 11, \"concept\": {\"id\": 205453, \"titleIds\": [\"CUSA06021_00\", \"PPSA01650_00\", \"PPSA01651_00\", \"CUSA01065_00\", \"PPSA01652_00\", \"CUSA01015_00\", \"CUSA01034_00\", \"CUSA01116_00\", \"CUSA15375_00\"], \"name\": \"YouTube\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"YouTube\", \"uk-UA\": \"YouTube\", \"de-DE\": \"YouTube\", \"en-US\": \"YouTube\", \"ko-KR\": \"YouTube\", \"pt-BR\": \"YouTube\", \"es-ES\": \"YouTube\", \"ar-AE\": \"YouTube\", \"no-NO\": \"YouTube\", \"fr-CA\": \"YouTube\", \"it-IT\": \"YouTube\", \"pl-PL\": \"YouTube\", \"ru-RU\": \"YouTube\", \"zh-Hans\": \"YouTube\", \"nl-NL\": \"YouTube\", \"pt-PT\": \"YouTube\", \"zh-Hant\": \"YouTube\", \"sv-SE\": \"YouTube\", \"da-DK\": \"YouTube\", \"tr-TR\": \"YouTube\", \"fr-FR\": \"YouTube\", \"en-GB\": \"YouTube\", \"es-419\": \"YouTube\", \"ja-JP\": \"YouTube\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/cHzFB052QxmXBChp2mKmgpgI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/OaXbQCKbHBQ0I1WpJHVEfiXh.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/1jcyMH0O0caci7DbPc4vTxDm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/KiFaop4Wbh51jiSrh76w3kmW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/8c36JzczSB9KODlFmLYOeVMt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/pU75FwS2V3UK7mA5mYlDLGAN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/MozEeaDICgZrr5kxr6GYO64o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/h4GFOsEGNie7eCf6M2gTi1C4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3017/wYAvR9akyRjDjy75S4zCLAGi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-09-05T15:20:21.410000Z\", \"lastPlayedDateTime\": \"2023-09-08T12:54:55.580000Z\", \"playDuration\": \"PT8H50M25S\"}, {\"titleId\": \"PPSA17316_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:10:39.520000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:23:17.640000Z\", \"playDuration\": \"PT2M36S\"}, {\"titleId\": \"CUSA44132_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:00:47.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:10:35.860000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"PPSA17487_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T13:01:28.430000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:05:39.230000Z\", \"playDuration\": \"PT3M56S\"}, {\"titleId\": \"PPSA17261_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:57:19.390000Z\", \"lastPlayedDateTime\": \"2023-09-07T13:01:25.180000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"CUSA44092_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:52:55.770000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:57:15.440000Z\", \"playDuration\": \"PT4M13S\"}, {\"titleId\": \"CUSA44093_00\", \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"localizedName\": \"Otoko Cross: Pretty Boys Dropout!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008727, \"titleIds\": [\"CUSA44092_00\", \"CUSA44093_00\", \"PPSA17487_00\", \"PPSA17261_00\"], \"name\": \"Otoko Cross: Pretty Boys Dropout!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Dropout!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Dropout!\", \"de-DE\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-US\": \"Otoko Cross: Pretty Boys Dropout!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-ES\": \"Otoko Cross: Pretty Boys Dropout!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Dropout!\", \"no-NO\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Dropout!\", \"it-IT\": \"Otoko Cross: Pretty Boys Dropout!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Dropout!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Dropout!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Dropout!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Dropout!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Dropout!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Dropout!\", \"da-DK\": \"Otoko Cross: Pretty Boys Dropout!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Dropout!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Dropout!\", \"en-GB\": \"Otoko Cross: Pretty Boys Dropout!\", \"es-419\": \"Otoko Cross: Pretty Boys Dropout!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30c9\\u30ed\\u30c3\\u30d7\\u30a2\\u30a6\\u30c8\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/34ac1cd09516a6cefbbbcedaba738f1e56f303b8d9c77a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/774ee5d26101016487286e8720991e552d2a3172e8208b7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/47345012f71ca66fc75ee6220c1df5b994f1e588359dd50c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/064059de4159d9e063fd7977757d8a9724c78f6520159312.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/760ee9c1a7a1c4c29a1dd3732e0d855413cbff13e70d06fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/a6c3b5dab996b5a124846eb4da968fb33e128033f8483979.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/0f9b0a7b3d462e9029bf07160a61f4cbfea94ef290d2312b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/78d0f73b5cee20fe644f8e27417ae2dbafd2a3ea015d3144.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/41bce228cb6ef685371401b48a908459c5e062d81050a568.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/5153e95539285ee39d19e1123a4a44e72890f03b6d5c0208.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6db0df0383b3e9679bcb96d57452d795bde0af5c4c9b583d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/6ed16828fc7710fc2acce6a71820e80aeeef1a4146ea89e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/2622ac474bbe2ee7ed1a99c597d7f0a6bba1279977c50824.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/3e84c38301c94087f2f2d65f690242ee379e27402ed9ebb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/b351c68dc13b86f9f868498b343716cd948c4844ff11da8f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1209/237e9fffb99af32289414cac2c92837cbfc299368dae42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1203/dbd90d7c81eb06331e28e53a0d497b1243978c326baec5c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:44:58.280000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:52:51.740000Z\", \"playDuration\": \"PT6M40S\"}, {\"titleId\": \"PPSA18331_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:34:52.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:44:16.970000Z\", \"playDuration\": \"PT9M11S\"}, {\"titleId\": \"PPSA18330_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T12:06:07.260000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:34:50.070000Z\", \"playDuration\": \"PT14M28S\"}, {\"titleId\": \"PPSA18332_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:56:54.970000Z\", \"lastPlayedDateTime\": \"2023-09-07T12:06:04.280000Z\", \"playDuration\": \"PT7M17S\"}, {\"titleId\": \"CUSA45021_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:52:04.130000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:56:51.140000Z\", \"playDuration\": \"PT4M26S\"}, {\"titleId\": \"CUSA45020_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:33:47.420000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:52:00.490000Z\", \"playDuration\": \"PT17M5S\"}, {\"titleId\": \"CUSA44885_00\", \"name\": \"Legions\", \"localizedName\": \"Legions\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009079, \"titleIds\": [\"CUSA45021_00\", \"CUSA44885_00\", \"CUSA45020_00\", \"PPSA18330_00\", \"PPSA18331_00\", \"PPSA18332_00\"], \"name\": \"Legions\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Legions\", \"uk-UA\": \"Legions\", \"de-DE\": \"Legions\", \"en-US\": \"Legions\", \"pt-BR\": \"Legions\", \"es-ES\": \"Legions\", \"ar-AE\": \"Legions\", \"no-NO\": \"Legions\", \"fr-CA\": \"Legions\", \"it-IT\": \"Legions\", \"pl-PL\": \"Legions\", \"ru-RU\": \"Legions\", \"nl-NL\": \"Legions\", \"pt-PT\": \"Legions\", \"sv-SE\": \"Legions\", \"da-DK\": \"Legions\", \"tr-TR\": \"Legions\", \"fr-FR\": \"Legions\", \"en-GB\": \"Legions\", \"es-419\": \"Legions\", \"ja-JP\": \"Legions\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/73eb398fb8e9eb6708bc8e95aca2e414d06f1dd09bfc6723.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2718c0ddf313804f4198c01282b743782187f040d0d4dec2.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/0cf4864eadc8a114f10d59c1a1652fb075f19c28ed9d20db.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/027481c52d932340426ede74008b82ae8e3c3ebf8c250d5e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/5ae0a2b24a3a6fb313426d9e0db7718c5d417ada16ad1e60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/9364801bfe14bc247e34808481bb20b15e0590945e0d1676.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/414439ecd6981c88480a5905e308a5677461a73d0ed3a73c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/bee9f7705446a675b7417b905f3afbcb74f81c822c68d387.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/2ea6eed15ef9d8d89e916afa247237c4514644e72a6f34fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/1b93eb758ec785d07dc6475ce4baa7bcd50cebb76b2bfae7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/4a289a7d4b27ab6f512421c999e67a9b732c4de425386aed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/45fcc531befa928612ce873b5a23865bbc2c510a7e6f39d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/d4061469a51ec1bae4fe998bf8a0bdecdb6d067aa82f144b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/7d14fcbf9fe3035381789abe1fbad79e857b2e1fbb6f6693.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/a9096f78336ea673321819df4324327150a3f1a44168c920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/91973f3246c00b43b51cacbba6f4f5ed0dca3e0818e52d40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1423/35ab3ed1d01f441c30a63309e58319ebbd304ec830456fa9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:20:34.610000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:33:43.650000Z\", \"playDuration\": \"PT10M23S\"}, {\"titleId\": \"PPSA17830_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:16:20.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:19:44.910000Z\", \"playDuration\": \"PT3M4S\"}], \"nextOffset\": 200, \"previousOffset\": 0, \"totalItemCount\": 13572}" } } }, @@ -190,56 +187,56 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:11 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive", "Transfer-Encoding" ], "X-Psn-Request-Id": [ - "0b8c6230-83f6-1031-9280-1976f53387d1" + "90e89b70-94a9-1031-ac1d-9cb4314d8580" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "0b8c6230-83f6-1031-927f-1976f53387d1" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "90e89b70-94a9-1031-ac1c-9cb4314d8580" ], "Transfer-Encoding": [ "chunked" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Expires": [ + "Sun, 12 Jan 2025 03:19:11 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Max-Age": [ + "3600" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:01 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:01 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"CUSA44539_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:03:09.850000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:05:31.350000Z\", \"playDuration\": \"PT2M12S\"}, {\"titleId\": \"CUSA44469_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:00:59.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:03:06.830000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44538_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:53:54.460000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:00:56.580000Z\", \"playDuration\": \"PT6M39S\"}, {\"titleId\": \"PPSA17826_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:48:20.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:53:51.980000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"PPSA17824_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:41:29.220000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:48:18.010000Z\", \"playDuration\": \"PT6M32S\"}, {\"titleId\": \"PPSA17827_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:37:48.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:41:26.360000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA44537_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:13:40.480000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:21:06.490000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA44536_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:07:29.100000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:13:36.380000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA44289_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:02:51.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:07:25.530000Z\", \"playDuration\": \"PT4M10S\"}, {\"titleId\": \"PPSA12636_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:52:09.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:59:57.160000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"PPSA12635_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:45:09.310000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:52:07.730000Z\", \"playDuration\": \"PT5M39S\"}, {\"titleId\": \"CUSA39597_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:36:15.930000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:45:07.210000Z\", \"playDuration\": \"PT8M28S\"}, {\"titleId\": \"CUSA39598_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:28:20.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:34:07.560000Z\", \"playDuration\": \"PT5M44S\"}, {\"titleId\": \"CUSA35929_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:06:51.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:10:48.650000Z\", \"playDuration\": \"PT2M51S\"}, {\"titleId\": \"CUSA35927_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:55:27.660000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:06:49.680000Z\", \"playDuration\": \"PT2M42S\"}, {\"titleId\": \"CUSA35928_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:50:20.670000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:55:25.890000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA35930_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:42:47.530000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:50:18.370000Z\", \"playDuration\": \"PT4M47S\"}, {\"titleId\": \"CUSA43300_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T02:30:56.320000Z\", \"lastPlayedDateTime\": \"2023-09-05T12:01:45.120000Z\", \"playDuration\": \"PT1H18M24S\"}, {\"titleId\": \"PPSA15659_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T07:16:15.080000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:34:43.490000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA15658_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:58:04.480000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:16:13.040000Z\", \"playDuration\": \"PT14M42S\"}, {\"titleId\": \"PPSA15660_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:42:06.700000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:57:13.930000Z\", \"playDuration\": \"PT14M59S\"}, {\"titleId\": \"PPSA15661_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:23:46.630000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:39:42.680000Z\", \"playDuration\": \"PT15M48S\"}, {\"titleId\": \"CUSA42655_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:02:28.370000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:21:42.960000Z\", \"playDuration\": \"PT18M57S\"}, {\"titleId\": \"CUSA42654_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:33:40.110000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:02:26.770000Z\", \"playDuration\": \"PT19M33S\"}, {\"titleId\": \"CUSA42653_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:10:28.250000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:33:38.520000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA42656_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T04:50:00.290000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:10:26.670000Z\", \"playDuration\": \"PT19M59S\"}, {\"titleId\": \"CUSA43299_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 15, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:45:12.060000Z\", \"lastPlayedDateTime\": \"2023-09-05T02:30:53.330000Z\", \"playDuration\": \"PT1H51M35S\"}, {\"titleId\": \"PPSA18524_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:21:31.340000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:38:46.100000Z\", \"playDuration\": \"PT16M46S\"}, {\"titleId\": \"PPSA18522_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:05:43.450000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:21:28.090000Z\", \"playDuration\": \"PT13M51S\"}, {\"titleId\": \"PPSA18523_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:43:57.260000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:05:36.640000Z\", \"playDuration\": \"PT19M45S\"}, {\"titleId\": \"PPSA18525_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:10:10.680000Z\", \"lastPlayedDateTime\": \"2023-09-04T10:43:54.110000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA35878_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-31T01:28:02.340000Z\", \"lastPlayedDateTime\": \"2023-08-31T01:31:12.420000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA35880_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:27:49.620000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:31:16.680000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA35879_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:06:50.540000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:27:47.970000Z\", \"playDuration\": \"PT8M52S\"}, {\"titleId\": \"CUSA35882_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:10:00.880000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:18:38.520000Z\", \"playDuration\": \"PT7M11S\"}, {\"titleId\": \"CUSA43655_00\", \"name\": \"A Castle Full of Cats\", \"localizedName\": \"A Castle Full of Cats\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008505, \"titleIds\": [\"CUSA43656_00\", \"CUSA43657_00\", \"CUSA43655_00\", \"CUSA43654_00\", \"PPSA16751_00\", \"PPSA16752_00\", \"PPSA16753_00\", \"PPSA16754_00\"], \"name\": \"A Castle Full of Cats\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Castle Full of Cats\", \"uk-UA\": \"A Castle Full of Cats\", \"de-DE\": \"A Castle Full of Cats\", \"en-US\": \"A Castle Full of Cats\", \"ko-KR\": \"A Castle Full of Cats\", \"pt-BR\": \"A Castle Full of Cats\", \"es-ES\": \"A Castle Full of Cats\", \"ar-AE\": \"A Castle Full of Cats\", \"no-NO\": \"A Castle Full of Cats\", \"fr-CA\": \"A Castle Full of Cats\", \"it-IT\": \"A Castle Full of Cats\", \"pl-PL\": \"A Castle Full of Cats\", \"ru-RU\": \"A Castle Full of Cats\", \"zh-Hans\": \"A Castle Full of Cats\", \"nl-NL\": \"A Castle Full of Cats\", \"pt-PT\": \"A Castle Full of Cats\", \"zh-Hant\": \"A Castle Full of Cats\", \"sv-SE\": \"A Castle Full of Cats\", \"da-DK\": \"A Castle Full of Cats\", \"tr-TR\": \"A Castle Full of Cats\", \"fr-FR\": \"A Castle Full of Cats\", \"en-GB\": \"A Castle Full of Cats\", \"es-419\": \"A Castle Full of Cats\", \"ja-JP\": \"A Castle Full of Cats\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-29T12:04:23.090000Z\", \"lastPlayedDateTime\": \"2023-08-29T13:18:14.760000Z\", \"playDuration\": \"PT1H11M24S\"}, {\"titleId\": \"PPSA15088_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:31:57.150000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:37:59.920000Z\", \"playDuration\": \"PT5M59S\"}, {\"titleId\": \"PPSA15089_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:25:54.390000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:31:54.710000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA42087_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:20:15.450000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:25:52.050000Z\", \"playDuration\": \"PT5M32S\"}, {\"titleId\": \"CUSA42086_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:14:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:20:13.540000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"PPSA17259_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:48:13.240000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:11:28.300000Z\", \"playDuration\": \"PT17M46S\"}, {\"titleId\": \"PPSA17260_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:30:44.730000Z\", \"lastPlayedDateTime\": \"2023-08-28T10:48:10.290000Z\", \"playDuration\": \"PT16M33S\"}, {\"titleId\": \"CUSA44090_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-27T06:10:38.830000Z\", \"lastPlayedDateTime\": \"2023-08-27T06:28:14.960000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"CUSA44091_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-26T12:03:36.400000Z\", \"lastPlayedDateTime\": \"2023-08-26T12:22:40.890000Z\", \"playDuration\": \"PT18M50S\"}, {\"titleId\": \"PPSA11404_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:58:14.080000Z\", \"lastPlayedDateTime\": \"2023-08-25T13:07:38.210000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA11405_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:47:14.550000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:58:11.550000Z\", \"playDuration\": \"PT8M5S\"}, {\"titleId\": \"CUSA38142_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:39:20.260000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:46:57.570000Z\", \"playDuration\": \"PT7M12S\"}, {\"titleId\": \"CUSA38143_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:31:21.820000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:39:18.200000Z\", \"playDuration\": \"PT7M43S\"}, {\"titleId\": \"PPSA15850_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:47:25.670000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:56:18.360000Z\", \"playDuration\": \"PT8M40S\"}, {\"titleId\": \"PPSA15849_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:39:36.990000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:47:23.220000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA42797_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:29:21.880000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:39:34.340000Z\", \"playDuration\": \"PT10M7S\"}, {\"titleId\": \"CUSA42796_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:23:45.720000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:29:19.570000Z\", \"playDuration\": \"PT5M27S\"}, {\"titleId\": \"PPSA17939_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:13:05.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:22:58.540000Z\", \"playDuration\": \"PT9M42S\"}, {\"titleId\": \"PPSA17940_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:05:09.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:13:03.130000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA17938_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:55:22.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:05:06.940000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA17937_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:47:13.510000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:55:19.950000Z\", \"playDuration\": \"PT7M55S\"}, {\"titleId\": \"CUSA44667_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:35:27.810000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:47:04.990000Z\", \"playDuration\": \"PT11M20S\"}, {\"titleId\": \"CUSA44668_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:22:31.130000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:32:25.510000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"CUSA44665_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:08:02.040000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:21:54.000000Z\", \"playDuration\": \"PT12M5S\"}, {\"titleId\": \"CUSA44666_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:36:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-25T09:00:09.990000Z\", \"playDuration\": \"PT23M15S\"}, {\"titleId\": \"PPSA12608_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:34:26.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:35:40.150000Z\", \"playDuration\": \"PT59S\"}, {\"titleId\": \"PPSA12609_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:32:59.440000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:34:24.610000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA39566_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:31:01.750000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:32:56.970000Z\", \"playDuration\": \"PT1M41S\"}, {\"titleId\": \"CUSA39567_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:28:47.310000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:30:59.660000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA15845_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:22:20.830000Z\", \"playDuration\": \"PT11M1S\"}, {\"titleId\": \"PPSA15846_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:03:55.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:10:53.940000Z\", \"playDuration\": \"PT6M35S\"}, {\"titleId\": \"CUSA42793_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-24T13:32:06.290000Z\", \"lastPlayedDateTime\": \"2023-08-24T13:40:18.520000Z\", \"playDuration\": \"PT7M53S\"}, {\"titleId\": \"CUSA42792_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T12:51:09.180000Z\", \"lastPlayedDateTime\": \"2023-08-23T13:09:19.960000Z\", \"playDuration\": \"PT6M41S\"}, {\"titleId\": \"PPSA14371_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:39:30.130000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:51:00.380000Z\", \"playDuration\": \"PT11M4S\"}, {\"titleId\": \"PPSA14372_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:23:56.210000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:39:26.940000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA41333_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:13:10.850000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:23:40.820000Z\", \"playDuration\": \"PT9M4S\"}, {\"titleId\": \"CUSA41334_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:55:27.400000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:13:07.660000Z\", \"playDuration\": \"PT16M44S\"}, {\"titleId\": \"CUSA35905_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:42:52.720000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:50:13.920000Z\", \"playDuration\": \"PT6M52S\"}, {\"titleId\": \"CUSA35906_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:37:11.610000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:42:50.930000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"CUSA35904_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:34:42.690000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:37:09.650000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35903_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:26:02.800000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:33:57.870000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA15372_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T15:32:45.100000Z\", \"lastPlayedDateTime\": \"2023-08-22T16:13:43.660000Z\", \"playDuration\": \"PT40M46S\"}, {\"titleId\": \"PPSA15373_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T13:23:37.780000Z\", \"lastPlayedDateTime\": \"2023-08-22T15:32:42.370000Z\", \"playDuration\": \"PT51M24S\"}, {\"titleId\": \"CUSA42384_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T12:40:59.320000Z\", \"lastPlayedDateTime\": \"2023-08-22T13:23:35.230000Z\", \"playDuration\": \"PT42M1S\"}, {\"titleId\": \"CUSA42385_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-21T12:45:47.890000Z\", \"lastPlayedDateTime\": \"2023-08-21T14:02:59.610000Z\", \"playDuration\": \"PT1H16M21S\"}, {\"titleId\": \"PPSA08893_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T06:18:57.230000Z\", \"lastPlayedDateTime\": \"2023-08-20T07:11:39.690000Z\", \"playDuration\": \"PT46M25S\"}, {\"titleId\": \"CUSA33956_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T05:03:12.240000Z\", \"lastPlayedDateTime\": \"2023-08-20T06:18:54.140000Z\", \"playDuration\": \"PT1H12M38S\"}, {\"titleId\": \"CUSA44220_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:33:35.270000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:45:11.520000Z\", \"playDuration\": \"PT11M32S\"}, {\"titleId\": \"CUSA44219_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:22:43.700000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:33:32.880000Z\", \"playDuration\": \"PT8M24S\"}, {\"titleId\": \"CUSA44789_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:09:20.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:13:13.140000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44788_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:05:27.280000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:09:18.250000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA37318_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:47:21.840000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:02:36.990000Z\", \"playDuration\": \"PT12M53S\"}, {\"titleId\": \"PPSA14317_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:43:00.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T03:47:19.800000Z\", \"playDuration\": \"PT3M18S\"}, {\"titleId\": \"PPSA14055_00\", \"name\": \"I'm in Love With Your Dead Grandmother\", \"localizedName\": \"I'm in Love With Your Dead Grandmother\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005437, \"titleIds\": [\"PPSA13939_00\", \"PPSA17890_00\", \"CUSA34839_00\", \"CUSA34623_00\", \"CUSA34838_00\", \"PPSA14055_00\", \"PPSA14056_00\", \"CUSA35035_00\", \"CUSA34815_00\"], \"name\": \"I'm in Love With Your Dead Grandmother\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'm in Love With Your Dead Grandmother\", \"uk-UA\": \"I'm in Love With Your Dead Grandmother\", \"de-DE\": \"I'm in Love With Your Dead Grandmother\", \"en-US\": \"I'm in Love With Your Dead Grandmother\", \"ko-KR\": \"I'm in Love With Your Dead Grandmother\", \"pt-BR\": \"I'm in Love With Your Dead Grandmother\", \"es-ES\": \"I'm in Love With Your Dead Grandmother\", \"ar-AE\": \"I'm in Love With Your Dead Grandmother\", \"no-NO\": \"I'm in Love With Your Dead Grandmother\", \"fr-CA\": \"I'm in Love With Your Dead Grandmother\", \"it-IT\": \"I'm in Love With Your Dead Grandmother\", \"pl-PL\": \"I'm in Love With Your Dead Grandmother\", \"ru-RU\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hans\": \"I'm in Love With Your Dead Grandmother\", \"nl-NL\": \"I'm in Love With Your Dead Grandmother\", \"pt-PT\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hant\": \"I'm in Love With Your Dead Grandmother\", \"sv-SE\": \"I'm in Love With Your Dead Grandmother\", \"da-DK\": \"I'm in Love With Your Dead Grandmother\", \"tr-TR\": \"I'm in Love With Your Dead Grandmother\", \"fr-FR\": \"I'm in Love With Your Dead Grandmother\", \"en-GB\": \"I'm in Love With Your Dead Grandmother\", \"es-419\": \"I'm in Love With Your Dead Grandmother\", \"ja-JP\": \"I'm in Love With Your Dead Grandmother\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:16:06.920000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:38:47.520000Z\", \"playDuration\": \"PT22M37S\"}, {\"titleId\": \"PPSA15232_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:06:22.290000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:15:26.560000Z\", \"playDuration\": \"PT9M\"}, {\"titleId\": \"CUSA42237_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:22:56.750000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:05:37.690000Z\", \"playDuration\": \"PT42M23S\"}, {\"titleId\": \"PPSA18061_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:16:58.600000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:22:06.190000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA09029_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:10:00.580000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:16:56.650000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"PPSA18357_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:57:07.370000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:07:25.300000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"PPSA17960_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:18:09.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:27:02.710000Z\", \"playDuration\": \"PT8M35S\"}, {\"titleId\": \"CUSA44686_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:07:34.230000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:17:50.940000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"CUSA44387_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T04:43:12.150000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:07:32.490000Z\", \"playDuration\": \"PT21M38S\"}, {\"titleId\": \"PPSA15767_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:34:34.760000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:40:32.440000Z\", \"playDuration\": \"PT5M21S\"}, {\"titleId\": \"PPSA18162_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:28:51.650000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:34:31.140000Z\", \"playDuration\": \"PT5M20S\"}, {\"titleId\": \"PPSA18163_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:23:17.000000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:28:47.960000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA15766_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:17:19.520000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:23:13.460000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"CUSA35869_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:05:34.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:09:28.510000Z\", \"playDuration\": \"PT3M36S\"}, {\"titleId\": \"CUSA35868_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:01:09.210000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:05:33.160000Z\", \"playDuration\": \"PT3M47S\"}, {\"titleId\": \"CUSA35867_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:54:07.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:01:07.550000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"CUSA35870_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:40:08.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:54:05.380000Z\", \"playDuration\": \"PT12M23S\"}, {\"titleId\": \"CUSA40973_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:55:50.550000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:39:40.120000Z\", \"playDuration\": \"PT8H52S\"}, {\"titleId\": \"CUSA40974_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:58:43.080000Z\", \"lastPlayedDateTime\": \"2023-08-18T17:20:32.980000Z\", \"playDuration\": \"PT1H4M6S\"}, {\"titleId\": \"PPSA12593_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:45:21.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:49:37.940000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA12594_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:36:37.880000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:45:18.940000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA39550_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:32:59.950000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:36:35.420000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA39551_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:26:00.590000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:32:58.080000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"PPSA16089_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T14:20:08.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T14:57:51.110000Z\", \"playDuration\": \"PT36M57S\"}, {\"titleId\": \"PPSA16088_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-17T10:28:15.000000Z\", \"lastPlayedDateTime\": \"2023-08-17T11:00:59.050000Z\", \"playDuration\": \"PT32M30S\"}, {\"titleId\": \"PPSA15396_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-16T10:40:30.670000Z\", \"lastPlayedDateTime\": \"2023-08-16T11:45:31.110000Z\", \"playDuration\": \"PT1H4M44S\"}, {\"titleId\": \"PPSA15397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-15T13:32:57.780000Z\", \"lastPlayedDateTime\": \"2023-08-15T14:08:19.350000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA42397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-14T10:15:44.800000Z\", \"lastPlayedDateTime\": \"2023-08-14T10:51:14.840000Z\", \"playDuration\": \"PT35M13S\"}, {\"titleId\": \"CUSA42993_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-13T10:10:46.540000Z\", \"lastPlayedDateTime\": \"2023-08-13T11:03:07.160000Z\", \"playDuration\": \"PT52M15S\"}, {\"titleId\": \"CUSA42994_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-12T10:59:35.600000Z\", \"lastPlayedDateTime\": \"2023-08-12T12:22:50.090000Z\", \"playDuration\": \"PT1H15M51S\"}, {\"titleId\": \"CUSA42398_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-11T11:04:30.400000Z\", \"lastPlayedDateTime\": \"2023-08-11T11:50:21.400000Z\", \"playDuration\": \"PT44M50S\"}, {\"titleId\": \"PPSA11451_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:57:20.610000Z\", \"lastPlayedDateTime\": \"2023-08-10T13:02:34.590000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA11450_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:39:28.910000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:57:04.960000Z\", \"playDuration\": \"PT16M40S\"}, {\"titleId\": \"CUSA38234_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:23:06.780000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:39:26.640000Z\", \"playDuration\": \"PT7M2S\"}, {\"titleId\": \"CUSA38235_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:15:59.540000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:23:04.700000Z\", \"playDuration\": \"PT6M43S\"}, {\"titleId\": \"CUSA35907_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:20:05.260000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:22:37.150000Z\", \"playDuration\": \"PT2M16S\"}, {\"titleId\": \"CUSA35909_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:11:22.620000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:19:47.760000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA35910_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:08:56.590000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:11:20.490000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA35908_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:06:02.130000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:08:54.480000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA43563_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:00:51.550000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:02:44.750000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA43564_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:57:59.280000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:00:49.780000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"PPSA10282_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:09:57.540000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:42:17.790000Z\", \"playDuration\": \"PT31M25S\"}, {\"titleId\": \"PPSA10283_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T11:31:38.240000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:04:45.790000Z\", \"playDuration\": \"PT33M3S\"}, {\"titleId\": \"CUSA36879_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T10:56:42.350000Z\", \"lastPlayedDateTime\": \"2023-08-09T11:30:07.390000Z\", \"playDuration\": \"PT33M20S\"}, {\"titleId\": \"CUSA36880_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:22:42.960000Z\", \"lastPlayedDateTime\": \"2023-08-08T13:40:58.060000Z\", \"playDuration\": \"PT1H16M43S\"}, {\"titleId\": \"CUSA14532_00\", \"name\": \"Human Fall Flat\", \"localizedName\": \"Human Fall Flat\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 227139, \"titleIds\": [\"PPSA02431_00\", \"CUSA43839_00\", \"CUSA07208_00\", \"PPSA02429_00\", \"CUSA07215_00\", \"CUSA14532_00\", \"PPSA02764_00\"], \"name\": \"Human Fall Flat\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Human Fall Flat\", \"uk-UA\": \"Human Fall Flat\", \"de-DE\": \"Human Fall Flat\", \"en-US\": \"Human Fall Flat\", \"ko-KR\": \"\\ud734\\uba3c: \\ud3f4 \\ud50c\\ub7ab\", \"pt-BR\": \"Human Fall Flat\", \"es-ES\": \"Human Fall Flat\", \"ar-AE\": \"Human Fall Flat\", \"no-NO\": \"Human Fall Flat\", \"fr-CA\": \"Human Fall Flat\", \"it-IT\": \"Human Fall Flat\", \"pl-PL\": \"Human Fall Flat\", \"ru-RU\": \"Human Fall Flat\", \"zh-Hans\": \"Human Fall Flat\", \"nl-NL\": \"Human Fall Flat\", \"pt-PT\": \"Human Fall Flat\", \"zh-Hant\": \"Human Fall Flat\", \"sv-SE\": \"Human Fall Flat\", \"da-DK\": \"Human Fall Flat\", \"tr-TR\": \"Human Fall Flat\", \"fr-FR\": \"Human Fall Flat\", \"en-GB\": \"Human Fall Flat\", \"es-419\": \"Human Fall Flat\", \"ja-JP\": \"\\u30d2\\u30e5\\u30fc\\u30de\\u30f3 \\u30d5\\u30a9\\u30fc\\u30eb \\u30d5\\u30e9\\u30c3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2019-09-16T16:41:27.000000Z\", \"lastPlayedDateTime\": \"2023-08-08T12:59:11.890000Z\", \"playDuration\": \"PT56H46M6S\"}, {\"titleId\": \"CUSA33743_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:16:35.620000Z\", \"lastPlayedDateTime\": \"2023-08-08T11:19:20.420000Z\", \"playDuration\": \"PT2M39S\"}, {\"titleId\": \"CUSA33742_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-07T11:25:29.840000Z\", \"lastPlayedDateTime\": \"2023-08-07T11:28:16.980000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA44672_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:47:26.760000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:49:24.090000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA44673_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:45:06.670000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:47:06.030000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA44670_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:42:04.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:45:04.710000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"CUSA44671_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:39:13.810000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:42:01.910000Z\", \"playDuration\": \"PT2M30S\"}, {\"titleId\": \"CUSA41271_00\", \"name\": \"Bunny Parking\", \"localizedName\": \"Bunny Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10002087, \"titleIds\": [\"CUSA26063_00\", \"CUSA26064_00\", \"CUSA41271_00\", \"CUSA41270_00\"], \"name\": \"Bunny Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bunny Parking\", \"uk-UA\": \"Bunny Parking\", \"de-DE\": \"Bunny Parking\", \"en-US\": \"Bunny Parking\", \"ko-KR\": \"Bunny Parking\", \"pt-BR\": \"Bunny Parking\", \"es-ES\": \"Bunny Parking\", \"ar-AE\": \"Bunny Parking\", \"no-NO\": \"Bunny Parking\", \"fr-CA\": \"Bunny Parking\", \"it-IT\": \"Bunny Parking\", \"pl-PL\": \"Bunny Parking\", \"ru-RU\": \"Bunny Parking\", \"zh-Hans\": \"Bunny Parking\", \"nl-NL\": \"Bunny Parking\", \"pt-PT\": \"Bunny Parking\", \"zh-Hant\": \"Bunny Parking\", \"sv-SE\": \"Bunny Parking\", \"da-DK\": \"Bunny Parking\", \"tr-TR\": \"Bunny Parking\", \"fr-FR\": \"Bunny Parking\", \"en-GB\": \"Bunny Parking\", \"es-419\": \"Bunny Parking\", \"ja-JP\": \"Bunny Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T13:24:42.360000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:33:03.790000Z\", \"playDuration\": \"PT4H30M19S\"}, {\"titleId\": \"PPSA15835_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T12:06:31.110000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:28:34.780000Z\", \"playDuration\": \"PT1H20M1S\"}, {\"titleId\": \"PPSA16675_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T11:38:34.000000Z\", \"lastPlayedDateTime\": \"2023-08-06T12:06:05.070000Z\", \"playDuration\": \"PT25M17S\"}, {\"titleId\": \"CUSA43596_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T10:24:27.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T11:38:31.110000Z\", \"playDuration\": \"PT43M48S\"}, {\"titleId\": \"PPSA12590_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:53:45.260000Z\", \"lastPlayedDateTime\": \"2023-08-06T06:12:15.750000Z\", \"playDuration\": \"PT10M56S\"}, {\"titleId\": \"PPSA12589_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:49:03.000000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:53:43.010000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA39547_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:43:55.540000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:48:30.530000Z\", \"playDuration\": \"PT4M28S\"}, {\"titleId\": \"CUSA39546_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:40:02.490000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:43:53.530000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"PPSA14682_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:55:29.610000Z\", \"lastPlayedDateTime\": \"2023-08-02T12:02:15.530000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14683_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:50:21.950000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:55:27.540000Z\", \"playDuration\": \"PT4M46S\"}, {\"titleId\": \"CUSA41691_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:43:25.470000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:50:19.900000Z\", \"playDuration\": \"PT4M25S\"}, {\"titleId\": \"CUSA41690_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:35:16.660000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:43:23.270000Z\", \"playDuration\": \"PT7M51S\"}, {\"titleId\": \"PPSA15834_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T07:11:49.530000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:30:35.920000Z\", \"playDuration\": \"PT1H2S\"}, {\"titleId\": \"CUSA42787_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-01T11:19:37.890000Z\", \"lastPlayedDateTime\": \"2023-08-01T14:49:39.370000Z\", \"playDuration\": \"PT1H21M11S\"}, {\"titleId\": \"CUSA42786_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T11:45:35.030000Z\", \"lastPlayedDateTime\": \"2023-07-31T14:13:34.360000Z\", \"playDuration\": \"PT2H11M27S\"}, {\"titleId\": \"CUSA36408_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T02:50:13.870000Z\", \"lastPlayedDateTime\": \"2023-07-31T06:06:21.410000Z\", \"playDuration\": \"PT2H6M27S\"}, {\"titleId\": \"CUSA37213_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T00:10:27.140000Z\", \"lastPlayedDateTime\": \"2023-07-31T02:50:10.430000Z\", \"playDuration\": \"PT2H27M20S\"}, {\"titleId\": \"CUSA36406_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-30T11:35:56.350000Z\", \"lastPlayedDateTime\": \"2023-07-30T14:54:37.180000Z\", \"playDuration\": \"PT3H13M45S\"}, {\"titleId\": \"CUSA36407_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T11:18:20.110000Z\", \"lastPlayedDateTime\": \"2023-07-29T14:19:50.230000Z\", \"playDuration\": \"PT2H57M32S\"}, {\"titleId\": \"PPSA10327_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T06:20:40.140000Z\", \"lastPlayedDateTime\": \"2023-07-29T08:26:12.730000Z\", \"playDuration\": \"PT2H5M28S\"}, {\"titleId\": \"PPSA17417_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:45:28.370000Z\", \"lastPlayedDateTime\": \"2023-07-29T06:13:12.840000Z\", \"playDuration\": \"PT24M59S\"}, {\"titleId\": \"PPSA17416_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:17:18.550000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:45:25.690000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"CUSA44226_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:44:47.940000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:16:39.230000Z\", \"playDuration\": \"PT26M49S\"}, {\"titleId\": \"CUSA44225_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:03:20.540000Z\", \"lastPlayedDateTime\": \"2023-07-29T04:44:45.540000Z\", \"playDuration\": \"PT34M27S\"}, {\"titleId\": \"PPSA13337_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:42:34.800000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:48:29.640000Z\", \"playDuration\": \"PT5M30S\"}, {\"titleId\": \"CUSA44641_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:40:16.880000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:42:23.990000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA44642_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:35:19.290000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:40:15.010000Z\", \"playDuration\": \"PT4M17S\"}, {\"titleId\": \"CUSA44647_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:32:59.350000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:35:05.970000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA44648_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:29:48.530000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:32:57.480000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44645_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:06:54.330000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:29:37.630000Z\", \"playDuration\": \"PT22M35S\"}, {\"titleId\": \"CUSA44646_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:03:38.620000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:06:52.430000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"CUSA44643_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:00:51.100000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:03:07.590000Z\", \"playDuration\": \"PT2M10S\"}, {\"titleId\": \"CUSA44644_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:57:42.610000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:00:48.890000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44651_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:53:10.320000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:55:08.280000Z\", \"playDuration\": \"PT1M4S\"}, {\"titleId\": \"CUSA44650_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:50:26.310000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:53:07.920000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA44649_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:47:29.860000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:50:24.220000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA44652_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:43:42.390000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:47:27.710000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA36906_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T07:12:22.210000Z\", \"lastPlayedDateTime\": \"2023-07-28T15:19:44.130000Z\", \"playDuration\": \"PT1H43M32S\"}, {\"titleId\": \"PPSA17877_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:43:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T14:08:41.130000Z\", \"playDuration\": \"PT20M42S\"}, {\"titleId\": \"PPSA17876_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:14:58.560000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:43:00.810000Z\", \"playDuration\": \"PT21M57S\"}, {\"titleId\": \"PPSA17875_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:48:09.920000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:14:55.290000Z\", \"playDuration\": \"PT25M3S\"}, {\"titleId\": \"PPSA17878_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:20:00.820000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:45:33.140000Z\", \"playDuration\": \"PT23M55S\"}, {\"titleId\": \"PPSA17482_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:10:22.340000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:16:27.140000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"PPSA17481_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:59:14.380000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:10:19.320000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17480_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:49:38.140000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:58:53.660000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"PPSA17483_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:37:52.470000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:49:35.200000Z\", \"playDuration\": \"PT10M14S\"}, {\"titleId\": \"PPSA12604_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:15:19.390000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:20:07.690000Z\", \"playDuration\": \"PT4M44S\"}, {\"titleId\": \"PPSA12603_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:08:43.000000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:15:17.330000Z\", \"playDuration\": \"PT5M45S\"}, {\"titleId\": \"CUSA39561_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:02:29.800000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:08:41.890000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"CUSA39560_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:54:33.960000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:02:27.820000Z\", \"playDuration\": \"PT5M25S\"}, {\"titleId\": \"PPSA17413_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:36:12.510000Z\", \"lastPlayedDateTime\": \"2023-07-28T10:52:47.830000Z\", \"playDuration\": \"PT16M27S\"}, {\"titleId\": \"PPSA16327_00\", \"name\": \"Frightence\", \"localizedName\": \"Frightence\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004239, \"titleIds\": [\"CUSA31599_00\", \"CUSA31600_00\", \"PPSA16326_00\", \"PPSA16327_00\"], \"name\": \"Frightence\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Frightence\", \"uk-UA\": \"Frightence\", \"de-DE\": \"Frightence\", \"en-US\": \"Frightence\", \"ko-KR\": \"Frightence\", \"pt-BR\": \"Frightence\", \"es-ES\": \"Frightence\", \"ar-AE\": \"Frightence\", \"no-NO\": \"Frightence\", \"fr-CA\": \"Frightence\", \"it-IT\": \"Frightence\", \"pl-PL\": \"Frightence\", \"ru-RU\": \"Frightence\", \"zh-Hans\": \"Frightence\", \"nl-NL\": \"Frightence\", \"pt-PT\": \"Frightence\", \"zh-Hant\": \"Frightence\", \"sv-SE\": \"Frightence\", \"da-DK\": \"Frightence\", \"tr-TR\": \"Frightence\", \"fr-FR\": \"Frightence\", \"en-GB\": \"Frightence\", \"es-419\": \"Frightence\", \"ja-JP\": \"Frightence\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:51:47.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T09:09:30.480000Z\", \"playDuration\": \"PT17M28S\"}, {\"titleId\": \"PPSA17412_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:22:15.300000Z\", \"lastPlayedDateTime\": \"2023-07-28T08:33:27.790000Z\", \"playDuration\": \"PT10M21S\"}, {\"titleId\": \"PPSA10328_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T04:31:46.780000Z\", \"lastPlayedDateTime\": \"2023-07-28T07:10:55.560000Z\", \"playDuration\": \"PT1H20M55S\"}, {\"titleId\": \"PPSA10330_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T01:38:09.830000Z\", \"lastPlayedDateTime\": \"2023-07-28T04:25:11.820000Z\", \"playDuration\": \"PT2H18M57S\"}, {\"titleId\": \"CUSA36905_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T14:01:02.960000Z\", \"lastPlayedDateTime\": \"2023-07-27T15:29:50.520000Z\", \"playDuration\": \"PT1H27M55S\"}, {\"titleId\": \"CUSA36908_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T11:53:45.500000Z\", \"lastPlayedDateTime\": \"2023-07-27T14:01:00.500000Z\", \"playDuration\": \"PT2H5M34S\"}, {\"titleId\": \"CUSA27581_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-26T12:53:11.970000Z\", \"lastPlayedDateTime\": \"2023-07-27T11:28:26.190000Z\", \"playDuration\": \"PT5H41M48S\"}, {\"titleId\": \"PPSA15345_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T10:57:10.280000Z\", \"lastPlayedDateTime\": \"2023-07-25T12:30:03.830000Z\", \"playDuration\": \"PT1H30M\"}, {\"titleId\": \"CUSA42362_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T07:05:25.900000Z\", \"lastPlayedDateTime\": \"2023-07-25T10:44:54.290000Z\", \"playDuration\": \"PT2H39M11S\"}], \"nextOffset\": 400, \"previousOffset\": 199, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"PPSA17829_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:12:45.240000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:16:18.410000Z\", \"playDuration\": \"PT3M14S\"}, {\"titleId\": \"PPSA17828_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:05:34.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:12:42.580000Z\", \"playDuration\": \"PT6M55S\"}, {\"titleId\": \"CUSA44539_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:03:09.850000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:05:31.350000Z\", \"playDuration\": \"PT2M12S\"}, {\"titleId\": \"CUSA44469_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T11:00:59.540000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:03:06.830000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44538_00\", \"name\": \"Sushi Blast\", \"localizedName\": \"Sushi Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008913, \"titleIds\": [\"PPSA17828_00\", \"PPSA17829_00\", \"CUSA48558_00\", \"CUSA44469_00\", \"CUSA48539_00\", \"CUSA44538_00\", \"CUSA44539_00\", \"PPSA17830_00\", \"PPSA22670_00\"], \"name\": \"Sushi Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sushi Blast\", \"uk-UA\": \"Sushi Blast\", \"de-DE\": \"Sushi Blast\", \"en-US\": \"Sushi Blast\", \"ko-KR\": \"Sushi Blast\", \"pt-BR\": \"Sushi Blast\", \"es-ES\": \"Sushi Blast\", \"ar-AE\": \"Sushi Blast\", \"no-NO\": \"Sushi Blast\", \"fr-CA\": \"Sushi Blast\", \"it-IT\": \"Sushi Blast\", \"pl-PL\": \"Sushi Blast\", \"ru-RU\": \"Sushi Blast\", \"zh-Hans\": \"Sushi Blast\", \"nl-NL\": \"Sushi Blast\", \"pt-PT\": \"Sushi Blast\", \"zh-Hant\": \"Sushi Blast\", \"sv-SE\": \"Sushi Blast\", \"da-DK\": \"Sushi Blast\", \"tr-TR\": \"Sushi Blast\", \"fr-FR\": \"Sushi Blast\", \"en-GB\": \"Sushi Blast\", \"es-419\": \"Sushi Blast\", \"ja-JP\": \"Sushi Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/6778406c9191c27ab299676c06d5151b077ed52af0f50a20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a0b4df8c658234e3ede4263449e1468765a45f396d61fcb9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d9035f2985237f1822855cbd4f23ad3523da3a8b9943cd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/bc1870dcae419fa95568fd757bf2998fedf40dc6e2ce5a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/a7dc650badeec591fdfb1f0cba12d7b9e1d803a1799eeb82.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/1e45c20061b48f09eaff915926b173dfc2a6b66d0e8deec0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/9d0d436d6b778e53230908361ff53021d34db3376434251e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/ea31b2a3c028f3700a7a3ed1b9611b1994b5a10dc434c9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/0aecc40e68e02ee93115b87e91a8b5be8af040151dd21db1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/5a2514e88c94e95f019e6b188b78c280e1b731374707881d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/d8889b28361e8cf088694b24b7301c381ac3d6646bb14c73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8b0e46e52b817052a8c40cf1b14255526dedf0cf0544bd49.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/8096534a48424e42dd8b74a93f5ddeecef55f8daf9e75d0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/fb5c03ee16af5fff66ac5e163ccf73e04e43dae1c866ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/2aa68d896fad254df91818ae5c4d6a6350b29d480a192c89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/e632847cf53c89e1409c104345e12098c151358f0944bc1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2600/3e0ee3152b0945c1ba677c9011f120a478fcedafd15abd74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:53:54.460000Z\", \"lastPlayedDateTime\": \"2023-09-07T11:00:56.580000Z\", \"playDuration\": \"PT6M39S\"}, {\"titleId\": \"PPSA17826_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:48:20.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:53:51.980000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"PPSA17824_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:41:29.220000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:48:18.010000Z\", \"playDuration\": \"PT6M32S\"}, {\"titleId\": \"PPSA17827_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T10:37:48.000000Z\", \"lastPlayedDateTime\": \"2023-09-07T10:41:26.360000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA44537_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:13:40.480000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:21:06.490000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA44536_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:07:29.100000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:13:36.380000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA44289_00\", \"name\": \"Drift City\", \"localizedName\": \"Drift City\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008831, \"titleIds\": [\"PPSA17827_00\", \"PPSA17826_00\", \"CUSA44289_00\", \"PPSA17824_00\", \"CUSA44537_00\", \"CUSA44536_00\"], \"name\": \"Drift City\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Drift City\", \"uk-UA\": \"Drift City\", \"de-DE\": \"Drift City\", \"en-US\": \"Drift City\", \"pt-BR\": \"Drift City\", \"es-ES\": \"Drift City\", \"ar-AE\": \"Drift City\", \"no-NO\": \"Drift City\", \"fr-CA\": \"Drift City\", \"it-IT\": \"Drift City\", \"pl-PL\": \"Drift City\", \"ru-RU\": \"Drift City\", \"nl-NL\": \"Drift City\", \"pt-PT\": \"Drift City\", \"sv-SE\": \"Drift City\", \"da-DK\": \"Drift City\", \"tr-TR\": \"Drift City\", \"fr-FR\": \"Drift City\", \"en-GB\": \"Drift City\", \"es-419\": \"Drift City\", \"ja-JP\": \"Drift City\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/8d3eeb11cb07536652ffc7b66c247087fec72109c0dcb876.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/15b0930bc969f136a4184a41b2e24cc947875db28921b3d3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/ae7eda45f8bef02353bdffcace8aceaa2cedf9aa08979b3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/97d167e947e9706cfb751ba4178e7301cdac05cadcbbc53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/9ae017f5b45db59d740d6612f71d4e11967d953b789be83d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/3edff24181672bc13162d16170290df9ec880a8ecd8a7ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2e64719d4b7d045a852d3de6be29b2370167e5cd3f9e099a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/257fd391ddabd1dda54df668db7815c86ebdbe81c4c5ef6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/afe104597e6fe811490642fd147f79d12202ec1623948e28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/408684b4ed274c63cf04abb6c1f4a23d4888a5f9287dad4b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/bf2b338aa2bc14d60f83ff4ab99a83401d9c5899f02a101c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/91faa1f9eca595ae4e4c395cc4d8856591aaea672ce3911d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/2d1290381243d5a55544f45dfb775ad925625b177bc9dc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/d23794df503d03fe30bd24bde7bc53642948216d359d9e3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/19008482cdd3a30ff95d864913b88e38d9cbdecec3c519bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/07726fae88e515d97b658aeca1c65a82feae6026fdbed199.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1321/f790336b321b50d5f5b2815930579ed7bbda7ae740aa5f78.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T05:02:51.920000Z\", \"lastPlayedDateTime\": \"2023-09-07T05:07:25.530000Z\", \"playDuration\": \"PT4M10S\"}, {\"titleId\": \"PPSA12636_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:52:09.900000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:59:57.160000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"PPSA12635_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:45:09.310000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:52:07.730000Z\", \"playDuration\": \"PT5M39S\"}, {\"titleId\": \"CUSA39597_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:36:15.930000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:45:07.210000Z\", \"playDuration\": \"PT8M28S\"}, {\"titleId\": \"CUSA39598_00\", \"name\": \"Dodge It\", \"localizedName\": \"Dodge It\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006957, \"titleIds\": [\"CUSA39600_00\", \"PPSA12638_00\", \"CUSA39597_00\", \"CUSA39598_00\", \"CUSA39599_00\", \"PPSA12635_00\", \"PPSA12636_00\", \"PPSA12637_00\"], \"name\": \"Dodge It\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge It\", \"uk-UA\": \"Dodge It\", \"de-DE\": \"Dodge It\", \"en-US\": \"Dodge It\", \"ko-KR\": \"Dodge It\", \"pt-BR\": \"Dodge It\", \"es-ES\": \"Dodge It\", \"ar-AE\": \"Dodge It\", \"no-NO\": \"Dodge It\", \"fr-CA\": \"Dodge It\", \"it-IT\": \"Dodge It\", \"pl-PL\": \"Dodge It\", \"ru-RU\": \"Dodge It\", \"zh-Hans\": \"Dodge It\", \"nl-NL\": \"Dodge It\", \"pt-PT\": \"Dodge It\", \"zh-Hant\": \"Dodge It\", \"sv-SE\": \"Dodge It\", \"da-DK\": \"Dodge It\", \"tr-TR\": \"Dodge It\", \"fr-FR\": \"Dodge It\", \"en-GB\": \"Dodge It\", \"es-419\": \"Dodge It\", \"ja-JP\": \"Dodge It\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/TDyUXzStyDOxNcPndFCj8TJF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/tGLdYhEkX0LteAOVOL05Bb0P.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/IoNHdCTkabzfUVJqIqzaOwR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/9YIuUpgWJ9dHcKf4zpnmwkpk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/eqsm3yrsnwkbxGb5P3Qv4pWi.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/LKC4zscUMOOnhKI3akwzxAvk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ecb3d7f5b55a7f2e16baa055b8bba5b00a27ed460dcb12dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/86b536893acfca411a98f3c3cedf0671ce28c573e65103c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/475ae1d42e191d1dca2b5145b7e68b90eef50a8f24111d79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/9de93539cc90c8e4eaf0c22384641504565426964122f4f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4460f8b67f413d0358f4b6b313d29df8c87e08be05e7ffd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/973f42503db049a6a7b06fcfa44e430b3f4f5fcfb8f259a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1714/f2NAJWrTSPYrLKjX5D9UMZO8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:28:20.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:34:07.560000Z\", \"playDuration\": \"PT5M44S\"}, {\"titleId\": \"CUSA35929_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T04:06:51.490000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:10:48.650000Z\", \"playDuration\": \"PT2M51S\"}, {\"titleId\": \"CUSA35927_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:55:27.660000Z\", \"lastPlayedDateTime\": \"2023-09-07T04:06:49.680000Z\", \"playDuration\": \"PT2M42S\"}, {\"titleId\": \"CUSA35928_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:50:20.670000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:55:25.890000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA35930_00\", \"name\": \"TAPPUMP\", \"localizedName\": \"TAPPUMP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005882, \"titleIds\": [\"CUSA35927_00\", \"CUSA35928_00\", \"CUSA35929_00\", \"CUSA35930_00\"], \"name\": \"TAPPUMP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TAPPUMP\", \"uk-UA\": \"TAPPUMP\", \"de-DE\": \"TAPPUMP\", \"en-US\": \"TAPPUMP\", \"ko-KR\": \"TAPPUMP\", \"pt-BR\": \"TAPPUMP\", \"es-ES\": \"TAPPUMP\", \"ar-AE\": \"TAPPUMP\", \"no-NO\": \"TAPPUMP\", \"fr-CA\": \"TAPPUMP\", \"it-IT\": \"TAPPUMP\", \"pl-PL\": \"TAPPUMP\", \"ru-RU\": \"TAPPUMP\", \"zh-Hans\": \"TAPPUMP\", \"nl-NL\": \"TAPPUMP\", \"pt-PT\": \"TAPPUMP\", \"zh-Hant\": \"TAPPUMP\", \"sv-SE\": \"TAPPUMP\", \"da-DK\": \"TAPPUMP\", \"tr-TR\": \"TAPPUMP\", \"fr-FR\": \"TAPPUMP\", \"en-GB\": \"TAPPUMP\", \"es-419\": \"TAPPUMP\", \"ja-JP\": \"TAPPUMP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3115/3c7ba914e89642b5518764361775c914e9916b85924a2524.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/12eJcSBs8kGatzqaAOdHOwuG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/SUmE6fcvl2uVPo89dJPfpaqp.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/xsNeGwPfAA9U7lanmE8gNK6w.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2512/1Mm8c5NzrdVBGegKnJ2lbFvA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-07T03:42:47.530000Z\", \"lastPlayedDateTime\": \"2023-09-07T03:50:18.370000Z\", \"playDuration\": \"PT4M47S\"}, {\"titleId\": \"CUSA43300_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T02:30:56.320000Z\", \"lastPlayedDateTime\": \"2023-09-05T12:01:45.120000Z\", \"playDuration\": \"PT1H18M24S\"}, {\"titleId\": \"PPSA15659_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T07:16:15.080000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:34:43.490000Z\", \"playDuration\": \"PT15M45S\"}, {\"titleId\": \"PPSA15658_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:58:04.480000Z\", \"lastPlayedDateTime\": \"2023-09-05T07:16:13.040000Z\", \"playDuration\": \"PT14M42S\"}, {\"titleId\": \"PPSA15660_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:42:06.700000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:57:13.930000Z\", \"playDuration\": \"PT14M59S\"}, {\"titleId\": \"PPSA15661_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:23:46.630000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:39:42.680000Z\", \"playDuration\": \"PT15M48S\"}, {\"titleId\": \"CUSA42655_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T06:02:28.370000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:21:42.960000Z\", \"playDuration\": \"PT18M57S\"}, {\"titleId\": \"CUSA42654_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:33:40.110000Z\", \"lastPlayedDateTime\": \"2023-09-05T06:02:26.770000Z\", \"playDuration\": \"PT19M33S\"}, {\"titleId\": \"CUSA42653_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T05:10:28.250000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:33:38.520000Z\", \"playDuration\": \"PT23M\"}, {\"titleId\": \"CUSA42656_00\", \"name\": \"Sokomage\", \"localizedName\": \"Sokomage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008054, \"titleIds\": [\"CUSA42653_00\", \"PPSA15658_00\", \"CUSA42654_00\", \"PPSA15660_00\", \"PPSA15661_00\", \"CUSA42656_00\", \"CUSA42655_00\", \"PPSA15659_00\"], \"name\": \"Sokomage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sokomage\", \"uk-UA\": \"Sokomage\", \"de-DE\": \"Sokomage\", \"en-US\": \"Sokomage\", \"ko-KR\": \"Sokomage\", \"pt-BR\": \"Sokomage\", \"es-ES\": \"Sokomage\", \"ar-AE\": \"Sokomage\", \"no-NO\": \"Sokomage\", \"fr-CA\": \"Sokomage\", \"it-IT\": \"Sokomage\", \"pl-PL\": \"Sokomage\", \"ru-RU\": \"Sokomage\", \"zh-Hans\": \"Sokomage\", \"nl-NL\": \"Sokomage\", \"pt-PT\": \"Sokomage\", \"zh-Hant\": \"Sokomage\", \"sv-SE\": \"Sokomage\", \"da-DK\": \"Sokomage\", \"tr-TR\": \"Sokomage\", \"fr-FR\": \"Sokomage\", \"en-GB\": \"Sokomage\", \"es-419\": \"Sokomage\", \"ja-JP\": \"Sokomage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/5a1239c166f4b3480fd8a9a4782b04c5c937c5a6fb3c4f0b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/a3fd096d4f7229cf95243c493ebd8abb1e909a3c4a452aee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/ed2654fb4a6a2fad2590d6cce4973ae8489282a29de653fd.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0817/ab7a141f0f31df095251d2cf2324907456ff2c2ba3393463.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/505cb1ac0e51714d8311328ef332de2a9c60f98c146b283b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/db00d68f6898839a3296c65551965f07fda6108790ce37df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/20224fc7333d02f2919f9dc177bbf30ad6d3c0c9c6105a63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/0c83f127446bfc31dbf8f05bf33c05eedb30aa359b784cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9724a52df6746905b59a77827537c8eeb641be41f19c6c3c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/8cfbd7727b2e2485fb3dadcb4f3a5dae990a938fa32d61f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/a16773459fdbc1fe22dfd6862da23d590451bfca73fdb4a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/c28dec038081817d9983e68a1b1a9f3f4da3ce8f6bea14b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/9f51dbf0cc14c8bc357254caed43dde0b33e9d640a2cda64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad0a24facfd777c48bdb767ff27d16a14f9c9be68e7ecc89.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/d6a523458cd7fc0b383a88c650e2deed1e12b6901a082106.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2515/ad3814dd7e756391f41e55cea5303234f3faec4d12051765.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0715/fe38847bc763c4091480934e3506e8d23f3c8de1ba8c8419.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-05T04:50:00.290000Z\", \"lastPlayedDateTime\": \"2023-09-05T05:10:26.670000Z\", \"playDuration\": \"PT19M59S\"}, {\"titleId\": \"CUSA43299_00\", \"name\": \"Dessert DIY\", \"localizedName\": \"Dessert DIY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 15, \"concept\": {\"id\": 10008349, \"titleIds\": [\"CUSA43300_00\", \"CUSA43299_00\"], \"name\": \"Dessert DIY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dessert DIY\", \"uk-UA\": \"Dessert DIY\", \"de-DE\": \"Dessert DIY\", \"en-US\": \"Dessert DIY\", \"pt-BR\": \"Dessert DIY\", \"es-ES\": \"Dessert DIY\", \"ar-AE\": \"Dessert DIY\", \"no-NO\": \"Dessert DIY\", \"fr-CA\": \"Dessert DIY\", \"it-IT\": \"Dessert DIY\", \"pl-PL\": \"Dessert DIY\", \"ru-RU\": \"Dessert DIY\", \"nl-NL\": \"Dessert DIY\", \"pt-PT\": \"Dessert DIY\", \"sv-SE\": \"Dessert DIY\", \"da-DK\": \"Dessert DIY\", \"tr-TR\": \"Dessert DIY\", \"fr-FR\": \"Dessert DIY\", \"en-GB\": \"Dessert DIY\", \"es-419\": \"Dessert DIY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/2f0b0defae4eba2cd1277a0c76a5381d3d075fa441e69ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/34e0681a3c0df60423b523dcb5f1df0db82d16a8316f6d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0411/bf47ccbffb6c2a38352cef6b066f80e0ebc22c4c21929692.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/1a8bf2402f39f8d11f8191f64fb90a8db7871888e97b1fac.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/44e3c62e5d2c26c6e63e0ac0c342073428a33de4d9b11223.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3013/8fe30fb1c2409744db433b426a4f6ebc1bac44e67797a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/71819c7f8fdf3118c1445162f6353e03a30d7c1d090b7284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/a4cb6b0cd656e4bfc4981c3b1ecee41d5ba0205993383ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1c4114f8986a5959d377b7e6146558c1575dd293ea88954f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/c8ffb8d9dd3b83e691eef347530c417d93bae50ec89d03e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/ed939b98bd6ce6316766c628b3f79620a8819bfe6f9152e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1ecf26501a2dd98efb1f1a3bdc5c8075503ffd7d47a0c19e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/017b70e9cadc87b297c272b90d6501db0d9b5011ba62134a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/00212c54d6f0b399437cb4f6fc5bdc97a2c9bc0b61a4d5de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/b76771ecf8afe83c56b94fa0090db65d51f0a5deff3bf376.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/3016/1a146352350db0dcc263dc5b14427042eab8a62f6dc34599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1809/c40529d10e30ec6462d8b1efb012d3c989d97c9aa6615a38.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:45:12.060000Z\", \"lastPlayedDateTime\": \"2023-09-05T02:30:53.330000Z\", \"playDuration\": \"PT1H51M35S\"}, {\"titleId\": \"PPSA18524_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:21:31.340000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:38:46.100000Z\", \"playDuration\": \"PT16M46S\"}, {\"titleId\": \"PPSA18522_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T11:05:43.450000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:21:28.090000Z\", \"playDuration\": \"PT13M51S\"}, {\"titleId\": \"PPSA18523_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:43:57.260000Z\", \"lastPlayedDateTime\": \"2023-09-04T11:05:36.640000Z\", \"playDuration\": \"PT19M45S\"}, {\"titleId\": \"PPSA18525_00\", \"name\": \"Robby's Adventure\", \"localizedName\": \"Robby's Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005723, \"titleIds\": [\"PPSA18525_00\", \"PPSA18524_00\", \"CUSA35450_00\", \"CUSA35451_00\", \"PPSA18522_00\", \"PPSA18523_00\", \"CUSA37245_00\", \"CUSA35449_00\"], \"name\": \"Robby's Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robby's Adventure\", \"uk-UA\": \"Robby's Adventure\", \"de-DE\": \"Robby's Adventure\", \"en-US\": \"Robby's Adventure\", \"ko-KR\": \"Robby's Adventure\", \"pt-BR\": \"Robby's Adventure\", \"es-ES\": \"Robby's Adventure\", \"ar-AE\": \"Robby's Adventure\", \"no-NO\": \"Robby's Adventure\", \"fr-CA\": \"Robby's Adventure\", \"it-IT\": \"Robby's Adventure\", \"pl-PL\": \"Robby's Adventure\", \"ru-RU\": \"Robby's Adventure\", \"zh-Hans\": \"Robby's Adventure\", \"nl-NL\": \"Robby's Adventure\", \"pt-PT\": \"Robby's Adventure\", \"zh-Hant\": \"Robby's Adventure\", \"sv-SE\": \"Robby's Adventure\", \"da-DK\": \"Robby's Adventure\", \"tr-TR\": \"Robby's Adventure\", \"fr-FR\": \"Robby's Adventure\", \"en-GB\": \"Robby's Adventure\", \"es-419\": \"Robby's Adventure\", \"ja-JP\": \"Robby's Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/UfQSnnsh3qYM0SitELree7uc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/QEVHKFnmW1qx6FywQA4ZC6kO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/rq7kWdNbz4KkmwFFLd6nI73W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/PM6uvOT29UfmwowMoFcOhRRf.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Q8aTmrMP35E5R9eXdFGhS3en.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1114/Scx3ZNNfMQhObfmRH4zGQ1AG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/UEOoYqqzJQIMFoI6Y5eLCpoe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/sxmJHStIHfylFBRMcXhxexP5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YDcWR52N9HIJIcoRZRMfGl3x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/yxgfvsHZfYUo2QTOlFt7Y2ho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/Vg6ayXPnAfUAKYTuLy5UD1kT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/qPRVuMJiFb6g03syAU8aKVOE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1214/YvVLLMzAWZl5OVHShjsZWCrR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1112/KFKVecIvHOhB8uHMrBVwFSRL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-09-04T10:10:10.680000Z\", \"lastPlayedDateTime\": \"2023-09-04T10:43:54.110000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA35878_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-31T01:28:02.340000Z\", \"lastPlayedDateTime\": \"2023-08-31T01:31:12.420000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA35880_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:27:49.620000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:31:16.680000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA35879_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:06:50.540000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:27:47.970000Z\", \"playDuration\": \"PT8M52S\"}, {\"titleId\": \"CUSA35882_00\", \"name\": \"BOMB UP\", \"localizedName\": \"BOMB UP\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005870, \"titleIds\": [\"CUSA35879_00\", \"CUSA35878_00\", \"CUSA35880_00\", \"CUSA35881_00\", \"CUSA35882_00\"], \"name\": \"BOMB UP\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BOMB UP\", \"uk-UA\": \"BOMB UP\", \"de-DE\": \"BOMB UP\", \"en-US\": \"BOMB UP\", \"ko-KR\": \"BOMB UP\", \"pt-BR\": \"BOMB UP\", \"es-ES\": \"BOMB UP\", \"ar-AE\": \"BOMB UP\", \"no-NO\": \"BOMB UP\", \"fr-CA\": \"BOMB UP\", \"it-IT\": \"BOMB UP\", \"pl-PL\": \"BOMB UP\", \"ru-RU\": \"BOMB UP\", \"zh-Hans\": \"BOMB UP\", \"nl-NL\": \"BOMB UP\", \"pt-PT\": \"BOMB UP\", \"zh-Hant\": \"BOMB UP\", \"sv-SE\": \"BOMB UP\", \"da-DK\": \"BOMB UP\", \"tr-TR\": \"BOMB UP\", \"fr-FR\": \"BOMB UP\", \"en-GB\": \"BOMB UP\", \"es-419\": \"BOMB UP\", \"ja-JP\": \"BOMB UP\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/e8956583a7c6303134d06e9e2fa879333c736f82db2fb79c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Uc0J8FtWLTyOj67mYmqOYXuF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bQyZbV52LdqkfHV6zGptz3jX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/cblEXDrquMi3oOKqT5EttMGL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yzqpklBnZ7wN4uEYsjg2iN7I.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-30T01:10:00.880000Z\", \"lastPlayedDateTime\": \"2023-08-30T01:18:38.520000Z\", \"playDuration\": \"PT7M11S\"}, {\"titleId\": \"CUSA43655_00\", \"name\": \"A Castle Full of Cats\", \"localizedName\": \"A Castle Full of Cats\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008505, \"titleIds\": [\"CUSA43656_00\", \"CUSA43657_00\", \"CUSA43655_00\", \"CUSA43654_00\", \"PPSA16751_00\", \"PPSA16752_00\", \"PPSA16753_00\", \"PPSA16754_00\"], \"name\": \"A Castle Full of Cats\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Castle Full of Cats\", \"uk-UA\": \"A Castle Full of Cats\", \"de-DE\": \"A Castle Full of Cats\", \"en-US\": \"A Castle Full of Cats\", \"ko-KR\": \"A Castle Full of Cats\", \"pt-BR\": \"A Castle Full of Cats\", \"es-ES\": \"A Castle Full of Cats\", \"ar-AE\": \"A Castle Full of Cats\", \"no-NO\": \"A Castle Full of Cats\", \"fr-CA\": \"A Castle Full of Cats\", \"it-IT\": \"A Castle Full of Cats\", \"pl-PL\": \"A Castle Full of Cats\", \"ru-RU\": \"A Castle Full of Cats\", \"zh-Hans\": \"A Castle Full of Cats\", \"nl-NL\": \"A Castle Full of Cats\", \"pt-PT\": \"A Castle Full of Cats\", \"zh-Hant\": \"A Castle Full of Cats\", \"sv-SE\": \"A Castle Full of Cats\", \"da-DK\": \"A Castle Full of Cats\", \"tr-TR\": \"A Castle Full of Cats\", \"fr-FR\": \"A Castle Full of Cats\", \"en-GB\": \"A Castle Full of Cats\", \"es-419\": \"A Castle Full of Cats\", \"ja-JP\": \"A Castle Full of Cats\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0cea93a1a74fbb73a5de5bcd99011796f6ae1c3cc4ddf9a6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/1f6a54914c11448d885665ac762c501836d77cf8b446fc6d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0b2b75eb73fb9f2e8d512a98bf7af9dbd34ff80b762ea97c.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/c8d59107d413e4dfe63ab176c7ea0bb62265a819c222175a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/ff7dfa8acf0b1e4b31b3ed790f19d24853d869e908288a6f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/a496dd185fce1b4c8834fe0d85fbf7d8b9bad7e75191ee97.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d7d6ddb2ab955e1099b81bab8c948c97bc74dbd23acfef6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/459a015241a0bfead6e8c9ae55e3178044c6012a79124dfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/d739e0ce7a1b0c2298692abe574a33f905828e59a03cd383.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/daeebb15c001431508c9b02c806932e44410da9d7f3807ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/5f514fb21110a650d039a2fbd8b46913f3d63dffe6c13ddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/9bb7c0975fc612706664041af088cbfbd34b8d5c64436c2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/0132a115f8620d4390fc178681d25e15bd9a1f0dc6328eee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/e9a1fc59dae04716f2ff0194a9d75c77936e6c58337089e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1911/64cc44e708b95dde3aeb657c3c973c7bab44f592caa88e77.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-29T12:04:23.090000Z\", \"lastPlayedDateTime\": \"2023-08-29T13:18:14.760000Z\", \"playDuration\": \"PT1H11M24S\"}, {\"titleId\": \"PPSA15088_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:31:57.150000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:37:59.920000Z\", \"playDuration\": \"PT5M59S\"}, {\"titleId\": \"PPSA15089_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:25:54.390000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:31:54.710000Z\", \"playDuration\": \"PT5M7S\"}, {\"titleId\": \"CUSA42087_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:20:15.450000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:25:52.050000Z\", \"playDuration\": \"PT5M32S\"}, {\"titleId\": \"CUSA42086_00\", \"name\": \"Embraced by Autumn\", \"localizedName\": \"Embraced by Autumn\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007866, \"titleIds\": [\"CUSA42087_00\", \"CUSA42086_00\", \"PPSA15088_00\", \"PPSA15089_00\"], \"name\": \"Embraced by Autumn\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Embraced by Autumn\", \"uk-UA\": \"Embraced by Autumn\", \"de-DE\": \"Embraced by Autumn\", \"en-US\": \"Embraced by Autumn\", \"pt-BR\": \"Embraced by Autumn\", \"es-ES\": \"Embraced by Autumn\", \"ar-AE\": \"Embraced by Autumn\", \"no-NO\": \"Embraced by Autumn\", \"fr-CA\": \"Embraced by Autumn\", \"it-IT\": \"Embraced by Autumn\", \"pl-PL\": \"Embraced by Autumn\", \"ru-RU\": \"Embraced by Autumn\", \"nl-NL\": \"Embraced by Autumn\", \"pt-PT\": \"Embraced by Autumn\", \"sv-SE\": \"Embraced by Autumn\", \"da-DK\": \"Embraced by Autumn\", \"tr-TR\": \"Embraced by Autumn\", \"fr-FR\": \"Embraced by Autumn\", \"en-GB\": \"Embraced by Autumn\", \"es-419\": \"Embraced by Autumn\", \"ja-JP\": \"Embraced by Autumn\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8a9d25f96a299cdf4054b9b7f0dff30ccdd3f90853b03876.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/8e183f3016f635c94d658f6199787331e86f60f26c59d601.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/780437a62716edc42decddf1ab490e2d58c4403654ce65ae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f3ce319409ea29d12242f5557a1bcc5ba7746a2eee133714.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/19ce24bfde0e751ec9be2d4aaa48d3ce8d9774565a917ba6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/a35936b6081d7c5504877fad600986291bba455ecfcdd64a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/c3c55ed5e53788c1bc0d7f997c5503fe6456eac3eba75f52.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d12d523914523097bd59b0c52ba99fc815505937df6ce77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/34f54f1cbf245ec562efb49d3580cbe33c838311afa76afd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/f1ff8e61a0914e244138f9d1b6d1c13273bea890050b1af3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/2d5f07841534cce18ed438255ad31d32635b443f18767beb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/6b87672fc0de5f5e368d6de99740ed0c8631262f7baef04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2418/56d0b3a2206bc9729b14c191e1dc16c5ea08b3f3872c0659.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T11:14:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:20:13.540000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"PPSA17259_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:48:13.240000Z\", \"lastPlayedDateTime\": \"2023-08-28T11:11:28.300000Z\", \"playDuration\": \"PT17M46S\"}, {\"titleId\": \"PPSA17260_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-28T10:30:44.730000Z\", \"lastPlayedDateTime\": \"2023-08-28T10:48:10.290000Z\", \"playDuration\": \"PT16M33S\"}, {\"titleId\": \"CUSA44090_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-27T06:10:38.830000Z\", \"lastPlayedDateTime\": \"2023-08-27T06:28:14.960000Z\", \"playDuration\": \"PT17M26S\"}, {\"titleId\": \"CUSA44091_00\", \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"localizedName\": \"Otoko Cross: Pretty Boys Breakup!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008726, \"titleIds\": [\"CUSA44091_00\", \"CUSA44090_00\", \"PPSA17259_00\", \"PPSA17260_00\"], \"name\": \"Otoko Cross: Pretty Boys Breakup!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Otoko Cross: Pretty Boys Breakup!\", \"uk-UA\": \"Otoko Cross: Pretty Boys Breakup!\", \"de-DE\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-US\": \"Otoko Cross: Pretty Boys Breakup!\", \"ko-KR\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-BR\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-ES\": \"Otoko Cross: Pretty Boys Breakup!\", \"ar-AE\": \"Otoko Cross: Pretty Boys Breakup!\", \"no-NO\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-CA\": \"Otoko Cross: Pretty Boys Breakup!\", \"it-IT\": \"Otoko Cross: Pretty Boys Breakup!\", \"pl-PL\": \"Otoko Cross: Pretty Boys Breakup!\", \"ru-RU\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hans\": \"Otoko Cross: Pretty Boys Breakup!\", \"nl-NL\": \"Otoko Cross: Pretty Boys Breakup!\", \"pt-PT\": \"Otoko Cross: Pretty Boys Breakup!\", \"zh-Hant\": \"Otoko Cross: Pretty Boys Breakup!\", \"sv-SE\": \"Otoko Cross: Pretty Boys Breakup!\", \"da-DK\": \"Otoko Cross: Pretty Boys Breakup!\", \"tr-TR\": \"Otoko Cross: Pretty Boys Breakup!\", \"fr-FR\": \"Otoko Cross: Pretty Boys Breakup!\", \"en-GB\": \"Otoko Cross: Pretty Boys Breakup!\", \"es-419\": \"Otoko Cross: Pretty Boys Breakup!\", \"ja-JP\": \"\\u7537\\u30af\\u30ed\\u30b9\\uff1a\\u30d6\\u30ec\\u30fc\\u30af\\u30a2\\u30c3\\u30d7\\uff01\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/be84f53d891790158c4ae8579e92845fd1f5f2c2d9b32257.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/c153f9e788b6e94eb42bebb4975227ca21611ec33ca67223.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d9b3310f7b5c62f6886393deab39b7d92a36a9d709043cd8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d87ece421df59a562cf28a7f180fb6745accf8e8371263b3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/298e3695ee896a3ea8064c700ad10a1c9c7ae5e20c2c2c8e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/b0cb2c8b1e9de82b4489b82f037cc43b7a3f562c023bec8d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/d2e182215154694d4666e03790d86efb800c7b92f4fdb9d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/de7270548b5652ecc8152ae4976375c9fe823452bf1e5f5d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/f28f86240df42246b20299d11caaab38d5734ab17b0f5907.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/323764db729ecdf1e2aea819578ad8ac91c357e3d92f80bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/35b8129a35286760f78811a25a81949f6d062bc9fdeceea4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/ce8ff82b1962a6cbdacfeedaf662c71cfa477deb82afc7e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1206/8c80fb5159fac2cf579443032c5babd0c71c7f8355130171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0607/f1f3398b7d59b8eddfe401f6eaa717f1e681f45f46e2c026.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-26T12:03:36.400000Z\", \"lastPlayedDateTime\": \"2023-08-26T12:22:40.890000Z\", \"playDuration\": \"PT18M50S\"}, {\"titleId\": \"PPSA11404_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:58:14.080000Z\", \"lastPlayedDateTime\": \"2023-08-25T13:07:38.210000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA11405_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:47:14.550000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:58:11.550000Z\", \"playDuration\": \"PT8M5S\"}, {\"titleId\": \"CUSA38142_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:39:20.260000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:46:57.570000Z\", \"playDuration\": \"PT7M12S\"}, {\"titleId\": \"CUSA38143_00\", \"name\": \"Death Becomes You\", \"localizedName\": \"Death Becomes You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006567, \"titleIds\": [\"PPSA11405_00\", \"PPSA11404_00\", \"CUSA38142_00\", \"CUSA38143_00\"], \"name\": \"Death Becomes You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Death Becomes You\", \"uk-UA\": \"Death Becomes You\", \"de-DE\": \"Death Becomes You\", \"en-US\": \"Death Becomes You\", \"pt-BR\": \"Death Becomes You\", \"es-ES\": \"Death Becomes You\", \"ar-AE\": \"Death Becomes You\", \"no-NO\": \"Death Becomes You\", \"fr-CA\": \"Death Becomes You\", \"it-IT\": \"Death Becomes You\", \"pl-PL\": \"Death Becomes You\", \"ru-RU\": \"Death Becomes You\", \"nl-NL\": \"Death Becomes You\", \"pt-PT\": \"Death Becomes You\", \"sv-SE\": \"Death Becomes You\", \"da-DK\": \"Death Becomes You\", \"tr-TR\": \"Death Becomes You\", \"fr-FR\": \"Death Becomes You\", \"en-GB\": \"Death Becomes You\", \"es-419\": \"Death Becomes You\", \"ja-JP\": \"Death Becomes You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9fddc450cc7389d55b26653751e74a3c964fe065d3494477.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/95ba58ed123cc003a26dd7b92be1a7b75d10102e4041c660.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/0a49af88f59c80d4ebf033ff14422024e812e25396a120c8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b76dab798bf4b7c6d55648188e724f4fcbe574e6ffa75d43.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4a3c33339be4571bb4ef74afb7480bfc07185a990d2a9abb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6cf25f14772eca2a9840e663f1141e99f03c0dca175efc24.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/a4b6a83a442a0e82d7e5a764430b7f8124edcb3a37fde443.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/ea2fca1e347893348017089fd29bdab155607b86ab909932.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/9e0645ae2c81ceaf2781fdedfba9f437ecdda25f77efcb08.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/6e0bb899f3d6fddf57d5b448730d2852ee2c3974e28f9b21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/4b3a71bb9efe5d5af8922bb83414738538a6a0096a362bcb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/2a8136b6468969c172b76bf4775c733cadd07cb9a04dd62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1410/b6074201ef62e5473d0c6a6cd12c71092b67dd60539d1af4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T12:31:21.820000Z\", \"lastPlayedDateTime\": \"2023-08-25T12:39:18.200000Z\", \"playDuration\": \"PT7M43S\"}, {\"titleId\": \"PPSA15850_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:47:25.670000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:56:18.360000Z\", \"playDuration\": \"PT8M40S\"}, {\"titleId\": \"PPSA15849_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:39:36.990000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:47:23.220000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA42797_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:29:21.880000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:39:34.340000Z\", \"playDuration\": \"PT10M7S\"}, {\"titleId\": \"CUSA42796_00\", \"name\": \"Sable's Grimoire: Man And Elf\", \"localizedName\": \"Sable's Grimoire: Man And Elf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008157, \"titleIds\": [\"CUSA42796_00\", \"CUSA42797_00\", \"PPSA15849_00\", \"PPSA15850_00\"], \"name\": \"Sable's Grimoire: Man And Elf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: Man And Elf\", \"uk-UA\": \"Sable's Grimoire: Man And Elf\", \"de-DE\": \"Sable's Grimoire: Man And Elf\", \"en-US\": \"Sable's Grimoire: Man And Elf\", \"pt-BR\": \"Sable's Grimoire: Man And Elf\", \"es-ES\": \"Sable's Grimoire: Man And Elf\", \"ar-AE\": \"Sable's Grimoire: Man And Elf\", \"no-NO\": \"Sable's Grimoire: Man And Elf\", \"fr-CA\": \"Sable's Grimoire: Man And Elf\", \"it-IT\": \"Sable's Grimoire: Man And Elf\", \"pl-PL\": \"Sable's Grimoire: Man And Elf\", \"ru-RU\": \"Sable's Grimoire: Man And Elf\", \"nl-NL\": \"Sable's Grimoire: Man And Elf\", \"pt-PT\": \"Sable's Grimoire: Man And Elf\", \"sv-SE\": \"Sable's Grimoire: Man And Elf\", \"da-DK\": \"Sable's Grimoire: Man And Elf\", \"tr-TR\": \"Sable's Grimoire: Man And Elf\", \"fr-FR\": \"Sable's Grimoire: Man And Elf\", \"en-GB\": \"Sable's Grimoire: Man And Elf\", \"es-419\": \"Sable's Grimoire: Man And Elf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9e610a3bf011161b60f27b8cf286a2a2fcf04b90c4516292.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/1bd959305741db7b0ef6b2e766945bc5ce4dadce8ef8c537.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/17a5cd3cf9d9515619b0aaf7287cc0e7cbe894c4ec3123ab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/980e7b52e92f255517429fbadc5066ff4e17f47cb459b08e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/30efe0dc3609326ec55ff7315a65fd862ca0f84ce3d43592.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/3ebac4746c1d395c2ee2509cc0495634173196ea9b2d5d1d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/9988a09f857916fcefb1ea851095c658cc9b23ca757c6e22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/71f836305c1f4f3142e659ee99a485e31a7cf45a632c7629.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7f0ad85a76be06ca2e0575c878d132e6792fd07286550a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/a9b9d5c60deefe7657c91b5482da01696d02f345776c5b73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/7d69a08e29f86d946671942eff115cac83b03137db85b4de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/712a0039acea9e47977cd81454cb9fdeca9979181fa2a045.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0317/ba8225549f589996fb66a20385dc4fd02602024dffa3036e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:23:45.720000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:29:19.570000Z\", \"playDuration\": \"PT5M27S\"}, {\"titleId\": \"PPSA17939_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:13:05.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:22:58.540000Z\", \"playDuration\": \"PT9M42S\"}, {\"titleId\": \"PPSA17940_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T11:05:09.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:13:03.130000Z\", \"playDuration\": \"PT7M42S\"}, {\"titleId\": \"PPSA17938_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:55:22.930000Z\", \"lastPlayedDateTime\": \"2023-08-25T11:05:06.940000Z\", \"playDuration\": \"PT9M15S\"}, {\"titleId\": \"PPSA17937_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:47:13.510000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:55:19.950000Z\", \"playDuration\": \"PT7M55S\"}, {\"titleId\": \"CUSA44667_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:35:27.810000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:47:04.990000Z\", \"playDuration\": \"PT11M20S\"}, {\"titleId\": \"CUSA44668_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:22:31.130000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:32:25.510000Z\", \"playDuration\": \"PT9M45S\"}, {\"titleId\": \"CUSA44665_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T10:08:02.040000Z\", \"lastPlayedDateTime\": \"2023-08-25T10:21:54.000000Z\", \"playDuration\": \"PT12M5S\"}, {\"titleId\": \"CUSA44666_00\", \"name\": \"Fly the Plane\", \"localizedName\": \"Fly the Plane\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008993, \"titleIds\": [\"CUSA44665_00\", \"PPSA17938_00\", \"PPSA17939_00\", \"PPSA17940_00\", \"CUSA44666_00\", \"CUSA44669_00\", \"CUSA44667_00\", \"CUSA44668_00\", \"PPSA17937_00\"], \"name\": \"Fly the Plane\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fly the Plane\", \"uk-UA\": \"Fly the Plane\", \"de-DE\": \"Fly the Plane\", \"en-US\": \"Fly the Plane\", \"ko-KR\": \"Fly the Plane\", \"pt-BR\": \"Fly the Plane\", \"es-ES\": \"Fly the Plane\", \"ar-AE\": \"Fly the Plane\", \"no-NO\": \"Fly the Plane\", \"fr-CA\": \"Fly the Plane\", \"it-IT\": \"Fly the Plane\", \"pl-PL\": \"Fly the Plane\", \"ru-RU\": \"Fly the Plane\", \"zh-Hans\": \"Fly the Plane\", \"nl-NL\": \"Fly the Plane\", \"pt-PT\": \"Fly the Plane\", \"zh-Hant\": \"Fly the Plane\", \"sv-SE\": \"Fly the Plane\", \"da-DK\": \"Fly the Plane\", \"tr-TR\": \"Fly the Plane\", \"fr-FR\": \"Fly the Plane\", \"en-GB\": \"Fly the Plane\", \"es-419\": \"Fly the Plane\", \"ja-JP\": \"Fly the Plane\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/0fad853197d7a72412e88c10cc9153b68ac2a124644e104e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/5b8b78cc8b2720f3ed053f7438ca585a1b3091ab954c3223.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/c07d9b4d6bc4d3f58663d2485f1b05daa6737de01e376dbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/85b3846ee4617f83f44f4e700162018b71a40710d7af3a97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/caf476783af3018b5c2e00c000f8904ea9cbe78af07044a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a908dc3e4bf59a32fa2d945110bc4fae8435aba04cb3ea84.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:36:48.970000Z\", \"lastPlayedDateTime\": \"2023-08-25T09:00:09.990000Z\", \"playDuration\": \"PT23M15S\"}, {\"titleId\": \"PPSA12608_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:34:26.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:35:40.150000Z\", \"playDuration\": \"PT59S\"}, {\"titleId\": \"PPSA12609_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:32:59.440000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:34:24.610000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA39566_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:31:01.750000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:32:56.970000Z\", \"playDuration\": \"PT1M41S\"}, {\"titleId\": \"CUSA39567_00\", \"name\": \"Zoo Leap\", \"localizedName\": \"Zoo Leap\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006951, \"titleIds\": [\"CUSA39566_00\", \"PPSA12608_00\", \"PPSA12611_00\", \"PPSA12612_00\", \"CUSA39569_00\", \"PPSA12609_00\", \"CUSA39567_00\", \"CUSA39568_00\"], \"name\": \"Zoo Leap\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zoo Leap\", \"uk-UA\": \"Zoo Leap\", \"de-DE\": \"Zoo Leap\", \"en-US\": \"Zoo Leap\", \"ko-KR\": \"Zoo Leap\", \"pt-BR\": \"Zoo Leap\", \"es-ES\": \"Zoo Leap\", \"ar-AE\": \"Zoo Leap\", \"no-NO\": \"Zoo Leap\", \"fr-CA\": \"Zoo Leap\", \"it-IT\": \"Zoo Leap\", \"pl-PL\": \"Zoo Leap\", \"ru-RU\": \"Zoo Leap\", \"zh-Hans\": \"Zoo Leap\", \"nl-NL\": \"Zoo Leap\", \"pt-PT\": \"Zoo Leap\", \"zh-Hant\": \"Zoo Leap\", \"sv-SE\": \"Zoo Leap\", \"da-DK\": \"Zoo Leap\", \"tr-TR\": \"Zoo Leap\", \"fr-FR\": \"Zoo Leap\", \"en-GB\": \"Zoo Leap\", \"es-419\": \"Zoo Leap\", \"ja-JP\": \"Zoo Leap\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/w2LdSdFqWZTfN90JLV1OgCsF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/KBYOp7uuXpoUoaZ8xUQBAiZr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/ivrKtPI02pbfb9TH9i9qozzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/i8KiaIYcBSvsU9ShziiejDZJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/sdu1sLWsgaCQxUvkBeAUCgb5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/o3atw4l5LZCEPHB3bAOI4m46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/254b690c3048453403f8a735762e4dd70a0cafceb06f595a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc08f6aed006148b01abfd84ea484045cd13840da7d984ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/81662e20bee22962601884dec4343723c84c17785bc2a1a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/55c3cbd9c98c39eb2cff640044b6b14b2adf6b56eb648179.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ec0d0d851252bb3d78da92cb1df0170f38d62009c78559e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/149aab19ac55351e9efa261f32210bb1776c633a473b1908.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/5361d5c9d99d35b53b10230e92e9a9d6198f34248f56b7a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/681eb5c0101932b961ff6ee62218429248db9e86123b17ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cb1fee8dc2db03307e1f961cb1888577a99a44c02eab4aff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/cc1b45ffe400f98aa4f568f15e3dd8174f69b5219c2ad467.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2618/Pz0t23ZjeOd2dNx8YaGIxKFZ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:28:47.310000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:30:59.660000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA15845_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:22:20.830000Z\", \"playDuration\": \"PT11M1S\"}, {\"titleId\": \"PPSA15846_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-25T08:03:55.000000Z\", \"lastPlayedDateTime\": \"2023-08-25T08:10:53.940000Z\", \"playDuration\": \"PT6M35S\"}, {\"titleId\": \"CUSA42793_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-24T13:32:06.290000Z\", \"lastPlayedDateTime\": \"2023-08-24T13:40:18.520000Z\", \"playDuration\": \"PT7M53S\"}, {\"titleId\": \"CUSA42792_00\", \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"localizedName\": \"Would you like to run an idol caf\\u00e9? 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008155, \"titleIds\": [\"PPSA15846_00\", \"CUSA42793_00\", \"CUSA42792_00\", \"PPSA15845_00\"], \"name\": \"Would you like to run an idol caf\\u00e9? 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Would you like to run an idol caf\\u00e9? 3\", \"uk-UA\": \"Would you like to run an idol caf\\u00e9? 3\", \"de-DE\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-US\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-BR\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-ES\": \"Would you like to run an idol caf\\u00e9? 3\", \"ar-AE\": \"Would you like to run an idol caf\\u00e9? 3\", \"no-NO\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-CA\": \"Would you like to run an idol caf\\u00e9? 3\", \"it-IT\": \"Would you like to run an idol caf\\u00e9? 3\", \"pl-PL\": \"Would you like to run an idol caf\\u00e9? 3\", \"ru-RU\": \"Would you like to run an idol caf\\u00e9? 3\", \"nl-NL\": \"Would you like to run an idol caf\\u00e9? 3\", \"pt-PT\": \"Would you like to run an idol caf\\u00e9? 3\", \"sv-SE\": \"Would you like to run an idol caf\\u00e9? 3\", \"da-DK\": \"Would you like to run an idol caf\\u00e9? 3\", \"tr-TR\": \"Would you like to run an idol caf\\u00e9? 3\", \"fr-FR\": \"Would you like to run an idol caf\\u00e9? 3\", \"en-GB\": \"Would you like to run an idol caf\\u00e9? 3\", \"es-419\": \"Would you like to run an idol caf\\u00e9? 3\", \"ja-JP\": \"\\u30a2\\u30a4\\u30c9\\u30eb\\u30ab\\u30d5\\u30a7\\u3092\\u7d4c\\u55b6\\u3057\\u307e\\u305b\\u3093\\u304b\\uff1f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/f2535ad6ca15603358c114db5f9e42d1b81b313f0f52e33a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/e1f553586054053620a8487a3611293909bf2e8f1e2e71a5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8cfea0ffa96d28a527c4e85b292fc15077c16b071a2e2d92.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/17294493b50a3b1b7e39845c0c90fe7bb206aa5b24f57cfb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/c09fd80c58f46297450958580199873c32e6017c2d335a7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/4719a29b5b1bc826cea56b4e2eaeaff4d6d2ac9e0fa5b9fd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/642e6c4f493d7367d7b1a4c2d5eca685088693a399589512.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/917728dc67763de0d45dcf71e7d0b2df3240843914a99d9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/00b114efbf65a7d9955ceac1b3654285119126769c05d0ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/6e5f4b42faeaa67a1e3505d01aeb4af90816aca36d28f122.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/8c1ddd0270e4c0f4c0c943a7a91d4c84612bf2f32f57066d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/b8c67d37b28e702f5a08e5d9a6e6ecde638264ef573026d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1916/92da5cb7c3b9d822befc1ef95e114e1dbd4eeceacca35d0f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T12:51:09.180000Z\", \"lastPlayedDateTime\": \"2023-08-23T13:09:19.960000Z\", \"playDuration\": \"PT6M41S\"}, {\"titleId\": \"PPSA14371_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:39:30.130000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:51:00.380000Z\", \"playDuration\": \"PT11M4S\"}, {\"titleId\": \"PPSA14372_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:23:56.210000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:39:26.940000Z\", \"playDuration\": \"PT15M25S\"}, {\"titleId\": \"CUSA41333_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T11:13:10.850000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:23:40.820000Z\", \"playDuration\": \"PT9M4S\"}, {\"titleId\": \"CUSA41334_00\", \"name\": \"Neko Secret Homecoming Light\", \"localizedName\": \"Neko Secret Homecoming Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007624, \"titleIds\": [\"CUSA41334_00\", \"CUSA41333_00\", \"PPSA14371_00\", \"PPSA14372_00\"], \"name\": \"Neko Secret Homecoming Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Secret Homecoming Light\", \"uk-UA\": \"Neko Secret Homecoming Light\", \"de-DE\": \"Neko Secret Homecoming Light\", \"en-US\": \"Neko Secret Homecoming Light\", \"ko-KR\": \"Neko Secret Homecoming Light\", \"pt-BR\": \"Neko Secret Homecoming Light\", \"es-ES\": \"Neko Secret Homecoming Light\", \"ar-AE\": \"Neko Secret Homecoming Light\", \"no-NO\": \"Neko Secret Homecoming Light\", \"fr-CA\": \"Neko Secret Homecoming Light\", \"it-IT\": \"Neko Secret Homecoming Light\", \"pl-PL\": \"Neko Secret Homecoming Light\", \"ru-RU\": \"Neko Secret Homecoming Light\", \"zh-Hans\": \"Neko Secret Homecoming Light\", \"nl-NL\": \"Neko Secret Homecoming Light\", \"pt-PT\": \"Neko Secret Homecoming Light\", \"zh-Hant\": \"Neko Secret Homecoming Light\", \"sv-SE\": \"Neko Secret Homecoming Light\", \"da-DK\": \"Neko Secret Homecoming Light\", \"tr-TR\": \"Neko Secret Homecoming Light\", \"fr-FR\": \"Neko Secret Homecoming Light\", \"en-GB\": \"Neko Secret Homecoming Light\", \"es-419\": \"Neko Secret Homecoming Light\", \"ja-JP\": \"Neko Secret Homecoming Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/777f89011be1ab595a318d8c2c03f6e3ff785e55321573ce.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/f3d654b0beb2a660a40bdd8919687863c9c67bb06e0e4453.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/7c3ef650ec30ba38fccba49897236c3b49fc9576f2c2d694.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/1161a2d00916c4c760ad4311a0d3f8f19fce69b57cff0ca4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/6800086331275b3aa8ee6641d1b82d6be8433ae3dae007b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/edb9aff38cd3c1aa7056401ab22adb2aa9da3b8af86967fe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/27cf6acf8a75cf431dfcbc2b5af76369e7168be826ac21c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/308c01a5b24d9acde92d9aeb1a13acadcff5129eee3ac1e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/ae1ab9811e6b00258b0b247aebd1aaa86f589fce960130af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/d2526e52bb2a072a261a3f88c3b1d9fc305616133082b3a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a66443c5a16b9961e4a2fcc5a69d49c73bb9f4dbc1cfaa55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/0d513a543535081a9c0cb596b98497fad4cce96dc3cc123f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/a26c76fe1950526992a4e9fef2571724d73434bdb12eee6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/75ebd0e16f272a09ebaa0aa70c56123a8ad9dac8ccb33990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/96626bd461200d0ecc6c7c10e5bbd56c0e0cadcf70d946f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3105/95c8c01d32e1d40ed9c5908f856d85c0e1188300afd4123b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2908/484e04480f5d209b9517895c49a69a3104e92726cb603a08.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:55:27.400000Z\", \"lastPlayedDateTime\": \"2023-08-23T11:13:07.660000Z\", \"playDuration\": \"PT16M44S\"}, {\"titleId\": \"CUSA35905_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:42:52.720000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:50:13.920000Z\", \"playDuration\": \"PT6M52S\"}, {\"titleId\": \"CUSA35906_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:37:11.610000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:42:50.930000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"CUSA35904_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:34:42.690000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:37:09.650000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35903_00\", \"name\": \"TOTOGE\", \"localizedName\": \"TOTOGE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005876, \"titleIds\": [\"CUSA35903_00\", \"CUSA35904_00\", \"CUSA35906_00\", \"CUSA35905_00\"], \"name\": \"TOTOGE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TOTOGE\", \"uk-UA\": \"TOTOGE\", \"de-DE\": \"TOTOGE\", \"en-US\": \"TOTOGE\", \"ko-KR\": \"TOTOGE\", \"pt-BR\": \"TOTOGE\", \"es-ES\": \"TOTOGE\", \"ar-AE\": \"TOTOGE\", \"no-NO\": \"TOTOGE\", \"fr-CA\": \"TOTOGE\", \"it-IT\": \"TOTOGE\", \"pl-PL\": \"TOTOGE\", \"ru-RU\": \"TOTOGE\", \"zh-Hans\": \"TOTOGE\", \"nl-NL\": \"TOTOGE\", \"pt-PT\": \"TOTOGE\", \"zh-Hant\": \"TOTOGE\", \"sv-SE\": \"TOTOGE\", \"da-DK\": \"TOTOGE\", \"tr-TR\": \"TOTOGE\", \"fr-FR\": \"TOTOGE\", \"en-GB\": \"TOTOGE\", \"es-419\": \"TOTOGE\", \"ja-JP\": \"TOTOGE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3114/3d22075e61b4379ee62a313c5243becf6169083e06ae5010.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/L5lfs5rZRO9XEjipjlkVPzkS.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/rEcDAhXEr2HUHicWPLbAEM0U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/dqQ0qvZUR10SrzcNgAK0O46Y.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/FVQr6UgSFJH6hJ2nuL4XfnYy.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-23T10:26:02.800000Z\", \"lastPlayedDateTime\": \"2023-08-23T10:33:57.870000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA15372_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T15:32:45.100000Z\", \"lastPlayedDateTime\": \"2023-08-22T16:13:43.660000Z\", \"playDuration\": \"PT40M46S\"}, {\"titleId\": \"PPSA15373_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T13:23:37.780000Z\", \"lastPlayedDateTime\": \"2023-08-22T15:32:42.370000Z\", \"playDuration\": \"PT51M24S\"}, {\"titleId\": \"CUSA42384_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-22T12:40:59.320000Z\", \"lastPlayedDateTime\": \"2023-08-22T13:23:35.230000Z\", \"playDuration\": \"PT42M1S\"}, {\"titleId\": \"CUSA42385_00\", \"name\": \"Super Box Delivery: Beyond the Horizon\", \"localizedName\": \"Super Box Delivery: Beyond the Horizon\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007977, \"titleIds\": [\"PPSA15373_00\", \"PPSA15372_00\", \"CUSA42384_00\", \"CUSA42385_00\"], \"name\": \"Super Box Delivery: Beyond the Horizon\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Super Box Delivery: Beyond the Horizon\", \"uk-UA\": \"Super Box Delivery: Beyond the Horizon\", \"de-DE\": \"Super Box Delivery: Beyond the Horizon\", \"en-US\": \"Super Box Delivery: Beyond the Horizon\", \"ko-KR\": \"Super Box Delivery: Beyond the Horizon\", \"pt-BR\": \"Super Box Delivery: Beyond the Horizon\", \"es-ES\": \"Super Box Delivery: Beyond the Horizon\", \"ar-AE\": \"Super Box Delivery: Beyond the Horizon\", \"no-NO\": \"Super Box Delivery: Beyond the Horizon\", \"fr-CA\": \"Super Box Delivery: Beyond the Horizon\", \"it-IT\": \"Super Box Delivery: Beyond the Horizon\", \"pl-PL\": \"Super Box Delivery: Beyond the Horizon\", \"ru-RU\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hans\": \"Super Box Delivery: Beyond the Horizon\", \"nl-NL\": \"Super Box Delivery: Beyond the Horizon\", \"pt-PT\": \"Super Box Delivery: Beyond the Horizon\", \"zh-Hant\": \"Super Box Delivery: Beyond the Horizon\", \"sv-SE\": \"Super Box Delivery: Beyond the Horizon\", \"da-DK\": \"Super Box Delivery: Beyond the Horizon\", \"tr-TR\": \"Super Box Delivery: Beyond the Horizon\", \"fr-FR\": \"Super Box Delivery: Beyond the Horizon\", \"en-GB\": \"Super Box Delivery: Beyond the Horizon\", \"es-419\": \"Super Box Delivery: Beyond the Horizon\", \"ja-JP\": \"Super Box Delivery: Beyond the Horizon\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/23b0d60e89eda6055b0edaeaf4c9acce46ee6034923dbb1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/e0e187a325171993d1ac18d8c2b33a0397792b34a7d3d85b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2809/43f01d10672dd1f345cca8cfe0560158beae7f058295748a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/33b28f1e86b6a16383ede9c152d328e5ec6394e2f2b6e395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/37310d51f8b3bd67e0c0f48245dc187bb707ba0aa8500a7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/92e6a49edfb041e05582d8e7e7e036ec1098ccbb82a9144c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/a7051e71905e9db1a21d39a1800506f97e701037f352b99b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/c8c5eeea1a1206b7de3c78fe62f0106809d4497e813f3d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/662111de8b11a4a4ba9e7ccc8faa6dc5c3ec9c86ddbb475d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1811/17c5725e1c3c36f38993c6e1a89e6da1a4904c03c2a82630.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-21T12:45:47.890000Z\", \"lastPlayedDateTime\": \"2023-08-21T14:02:59.610000Z\", \"playDuration\": \"PT1H16M21S\"}, {\"titleId\": \"PPSA08893_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T06:18:57.230000Z\", \"lastPlayedDateTime\": \"2023-08-20T07:11:39.690000Z\", \"playDuration\": \"PT46M25S\"}, {\"titleId\": \"CUSA33956_00\", \"name\": \"Task Force Delta - Afghanistan\", \"localizedName\": \"Task Force Delta - Afghanistan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005184, \"titleIds\": [\"CUSA33956_00\", \"CUSA36354_00\", \"PPSA08893_00\", \"PPSA12337_00\"], \"name\": \"Task Force Delta - Afghanistan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Task Force Delta - Afghanistan\", \"uk-UA\": \"Task Force Delta - Afghanistan\", \"de-DE\": \"Task Force Delta - Afghanistan\", \"en-US\": \"Task Force Delta - Afghanistan\", \"ko-KR\": \"Task Force Delta - Afghanistan\", \"pt-BR\": \"Task Force Delta - Afghanistan\", \"es-ES\": \"Task Force Delta - Afghanistan\", \"ar-AE\": \"Task Force Delta - Afghanistan\", \"no-NO\": \"Task Force Delta - Afghanistan\", \"fr-CA\": \"Task Force Delta - Afghanistan\", \"it-IT\": \"Task Force Delta - Afghanistan\", \"pl-PL\": \"Task Force Delta - Afghanistan\", \"ru-RU\": \"Task Force Delta - Afghanistan\", \"zh-Hans\": \"Task Force Delta - Afghanistan\", \"nl-NL\": \"Task Force Delta - Afghanistan\", \"pt-PT\": \"Task Force Delta - Afghanistan\", \"zh-Hant\": \"Task Force Delta - Afghanistan\", \"sv-SE\": \"Task Force Delta - Afghanistan\", \"da-DK\": \"Task Force Delta - Afghanistan\", \"tr-TR\": \"Task Force Delta - Afghanistan\", \"fr-FR\": \"Task Force Delta - Afghanistan\", \"en-GB\": \"Task Force Delta - Afghanistan\", \"es-419\": \"Task Force Delta - Afghanistan\", \"ja-JP\": \"Task Force Delta - Afghanistan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/pay6uBarV5m9OiuE9lXozCnp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/gFoSqigBOaguGJexQRL0vWms.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/kpIV2voYsWERVRnqpwAysNKf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/FnhLqBkSYO3lJm4tJrfYFhva.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/jKNmvNw23EBq2ynIA9IE3xQO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2408/q3zArJh9rknNZ7X4Mrjex9m3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T05:03:12.240000Z\", \"lastPlayedDateTime\": \"2023-08-20T06:18:54.140000Z\", \"playDuration\": \"PT1H12M38S\"}, {\"titleId\": \"CUSA44220_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:33:35.270000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:45:11.520000Z\", \"playDuration\": \"PT11M32S\"}, {\"titleId\": \"CUSA44219_00\", \"name\": \"Sky Races\", \"localizedName\": \"Sky Races\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008783, \"titleIds\": [\"PPSA17410_00\", \"CUSA44220_00\", \"CUSA44219_00\", \"PPSA17411_00\"], \"name\": \"Sky Races\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sky Races\", \"uk-UA\": \"Sky Races\", \"de-DE\": \"Sky Races\", \"en-US\": \"Sky Races\", \"ko-KR\": \"Sky Races\", \"pt-BR\": \"Sky Races\", \"es-ES\": \"Sky Races\", \"ar-AE\": \"Sky Races\", \"no-NO\": \"Sky Races\", \"fr-CA\": \"Sky Races\", \"it-IT\": \"Sky Races\", \"pl-PL\": \"Sky Races\", \"ru-RU\": \"Sky Races\", \"zh-Hans\": \"Sky Races\", \"nl-NL\": \"Sky Races\", \"pt-PT\": \"Sky Races\", \"zh-Hant\": \"Sky Races\", \"sv-SE\": \"Sky Races\", \"da-DK\": \"Sky Races\", \"tr-TR\": \"Sky Races\", \"fr-FR\": \"Sky Races\", \"en-GB\": \"Sky Races\", \"es-419\": \"Sky Races\", \"ja-JP\": \"Sky Races\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/d424ecb0ba2deccd979c393ac63ab730b864b4ea7070073a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0713/5485fdd9b458fe4c020b4266eb5c540fb8eb10618b11bb84.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0710/4618a745916b15871bdf6eed52bb387585bba911c4e02618.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/b301310aa1338eee4d6ccde6b6a6e05a33e3c0056e305881.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/a21a08a725298bf62c9c728f2bcfdd87116589bca5ae7bed.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/750759e7bd5bc4f8637f70e322e78ee4293e1b659ac366df.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/31bdbc01a55d02033167d305c4bcd79cd49648e22aecb746.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/006a0e67ced55d19cf122e7592033705d6f8e18ad755082f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8bb67ebb825c10d0266f91245993dee706d3dc0283569f43.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/8630f55f1e81311cfb7e3c31ed93c8c00c7bef60a896c0a4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2016/3847b240df174662a27fede7c2f572b2fece628aca06df63.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:22:43.700000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:33:32.880000Z\", \"playDuration\": \"PT8M24S\"}, {\"titleId\": \"CUSA44789_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:09:20.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:13:13.140000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA44788_00\", \"name\": \"Detective Inspector: Mysterious Clues\", \"localizedName\": \"Detective Inspector: Mysterious Clues\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10009039, \"titleIds\": [\"CUSA44788_00\", \"CUSA44789_00\", \"PPSA18085_00\", \"PPSA18086_00\"], \"name\": \"Detective Inspector: Mysterious Clues\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Detective Inspector: Mysterious Clues\", \"uk-UA\": \"Detective Inspector: Mysterious Clues\", \"de-DE\": \"Detective Inspector: Mysterious Clues\", \"en-US\": \"Detective Inspector: Mysterious Clues\", \"ko-KR\": \"Detective Inspector: Mysterious Clues\", \"pt-BR\": \"Detective Inspector: Mysterious Clues\", \"es-ES\": \"Detective Inspector: Mysterious Clues\", \"ar-AE\": \"Detective Inspector: Mysterious Clues\", \"no-NO\": \"Detective Inspector: Mysterious Clues\", \"fr-CA\": \"Detective Inspector: Mysterious Clues\", \"it-IT\": \"Detective Inspector: Mysterious Clues\", \"pl-PL\": \"Detective Inspector: Mysterious Clues\", \"ru-RU\": \"Detective Inspector: Mysterious Clues\", \"zh-Hans\": \"Detective Inspector: Mysterious Clues\", \"nl-NL\": \"Detective Inspector: Mysterious Clues\", \"pt-PT\": \"Detective Inspector: Mysterious Clues\", \"zh-Hant\": \"Detective Inspector: Mysterious Clues\", \"sv-SE\": \"Detective Inspector: Mysterious Clues\", \"da-DK\": \"Detective Inspector: Mysterious Clues\", \"tr-TR\": \"Detective Inspector: Mysterious Clues\", \"fr-FR\": \"Detective Inspector: Mysterious Clues\", \"en-GB\": \"Detective Inspector: Mysterious Clues\", \"es-419\": \"Detective Inspector: Mysterious Clues\", \"ja-JP\": \"Detective Inspector: Mysterious Clues\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/8ba210cc62a33eefbf831525b3d886eb6e49656f9aea346b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/60a64786d11e1fd4bdcf66f445a09b497238e20fe1a8eb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/2db2fb214f1c44dca48dc7f31a4418e681dd9798f2593754.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/588b5fb435917ed087126b342a8f34f5c2e3ecd5fba376ca.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7e2b900d28ca5f3610d4bd5ac150edb0db7be4e0b065a100.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/9cb00c0b3dc59df5363d582f87888ad43b64d4e8a33ff6a1.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/a5483423a012ed9fb60b757a4858ad57e5b5ad42b3a52aaf.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/7f396c02ff368c67fa08aa71d3c35f7bc55183d1051c740d.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/6fb3815ca4dfd9e8aa08fbe8dc542ae8213cbabf799fb892.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1019/36d974823bb1021286f66ccdad3ad98472ee976ed0b9e83b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T04:05:27.280000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:09:18.250000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA37318_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:47:21.840000Z\", \"lastPlayedDateTime\": \"2023-08-20T04:02:36.990000Z\", \"playDuration\": \"PT12M53S\"}, {\"titleId\": \"PPSA14317_00\", \"name\": \"Repentless\", \"localizedName\": \"Repentless\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005798, \"titleIds\": [\"PPSA13338_00\", \"CUSA35682_00\", \"CUSA35683_00\", \"CUSA37938_00\", \"PPSA14317_00\", \"PPSA14318_00\", \"CUSA37318_00\", \"CUSA37317_00\", \"CUSA35988_00\", \"PPSA19542_00\", \"PPSA19543_00\"], \"name\": \"Repentless\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Repentless\", \"uk-UA\": \"Repentless\", \"de-DE\": \"Repentless\", \"en-US\": \"Repentless\", \"ko-KR\": \"Repentless\", \"pt-BR\": \"Repentless\", \"es-ES\": \"Repentless\", \"ar-AE\": \"Repentless\", \"no-NO\": \"Repentless\", \"fr-CA\": \"Repentless\", \"it-IT\": \"Repentless\", \"pl-PL\": \"Repentless\", \"ru-RU\": \"Repentless\", \"zh-Hans\": \"Repentless\", \"nl-NL\": \"Repentless\", \"pt-PT\": \"Repentless\", \"zh-Hant\": \"Repentless\", \"sv-SE\": \"Repentless\", \"da-DK\": \"Repentless\", \"tr-TR\": \"Repentless\", \"fr-FR\": \"Repentless\", \"en-GB\": \"Repentless\", \"es-419\": \"Repentless\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/X3GTU8NRxpYpDIGtajPTL3pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1608/0mA9X1y7mvELRy0WhOqxj1o4.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/38ozB6TjwoTuDQI9XkkJHItR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0408/6cbda6f4166e9145ed7505fa3112e123d74f0bfd71f3c656.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/CWLLGU6X0F2S65qoX4FWzIsj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/Lis8nw4YfMkF8Bri0fwFQPn4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0209/Hoog5cgJQRxFMlEjx81EQjgU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2812/z0OecpiaWiVHOEQsCnUY9Kqu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-20T03:43:00.550000Z\", \"lastPlayedDateTime\": \"2023-08-20T03:47:19.800000Z\", \"playDuration\": \"PT3M18S\"}, {\"titleId\": \"PPSA14055_00\", \"name\": \"I'm in Love With Your Dead Grandmother\", \"localizedName\": \"I'm in Love With Your Dead Grandmother\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005437, \"titleIds\": [\"PPSA13939_00\", \"PPSA17890_00\", \"CUSA34839_00\", \"CUSA34623_00\", \"CUSA34838_00\", \"PPSA14055_00\", \"PPSA14056_00\", \"CUSA35035_00\", \"CUSA34815_00\"], \"name\": \"I'm in Love With Your Dead Grandmother\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'm in Love With Your Dead Grandmother\", \"uk-UA\": \"I'm in Love With Your Dead Grandmother\", \"de-DE\": \"I'm in Love With Your Dead Grandmother\", \"en-US\": \"I'm in Love With Your Dead Grandmother\", \"ko-KR\": \"I'm in Love With Your Dead Grandmother\", \"pt-BR\": \"I'm in Love With Your Dead Grandmother\", \"es-ES\": \"I'm in Love With Your Dead Grandmother\", \"ar-AE\": \"I'm in Love With Your Dead Grandmother\", \"no-NO\": \"I'm in Love With Your Dead Grandmother\", \"fr-CA\": \"I'm in Love With Your Dead Grandmother\", \"it-IT\": \"I'm in Love With Your Dead Grandmother\", \"pl-PL\": \"I'm in Love With Your Dead Grandmother\", \"ru-RU\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hans\": \"I'm in Love With Your Dead Grandmother\", \"nl-NL\": \"I'm in Love With Your Dead Grandmother\", \"pt-PT\": \"I'm in Love With Your Dead Grandmother\", \"zh-Hant\": \"I'm in Love With Your Dead Grandmother\", \"sv-SE\": \"I'm in Love With Your Dead Grandmother\", \"da-DK\": \"I'm in Love With Your Dead Grandmother\", \"tr-TR\": \"I'm in Love With Your Dead Grandmother\", \"fr-FR\": \"I'm in Love With Your Dead Grandmother\", \"en-GB\": \"I'm in Love With Your Dead Grandmother\", \"es-419\": \"I'm in Love With Your Dead Grandmother\", \"ja-JP\": \"I'm in Love With Your Dead Grandmother\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/UeMtwrvu5uFiF6QaN5sVZIg1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gjs5sEbsnyAORTkstBZTOZOT.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/gwJxUE9rCbkTwVbFWyZdREFt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1601/L00NGBhv25RJTPGl0j68RhUF.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/QDqcYq9hEPrY3HE1YB2F4jEH.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/cK7juvJKc1S3D5doNw68g4wR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/eXqCVWU7hOGRr00QMEi6Yv5O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/o7kusH9S91OgkG2syBMWl6wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/LDFHxkXuiOzKcVqYicyzExGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/fU4Bz75xT6Rqb42RsatjGeVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/V3DEjTI0KJEdqdRUybKAcypk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/JMoUplVA88xj1orPiQuEXRN1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0815/qQD5IDOhNeuNATJJOqKhhcJU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0800/zNP7Zfd79cnWEB0e9ZtbdudE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:16:06.920000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:38:47.520000Z\", \"playDuration\": \"PT22M37S\"}, {\"titleId\": \"PPSA15232_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T07:06:22.290000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:15:26.560000Z\", \"playDuration\": \"PT9M\"}, {\"titleId\": \"CUSA42237_00\", \"name\": \"Pandaty\", \"localizedName\": \"Pandaty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007915, \"titleIds\": [\"CUSA42236_00\", \"PPSA15231_00\", \"PPSA15233_00\", \"CUSA42238_00\", \"PPSA15232_00\", \"CUSA42237_00\"], \"name\": \"Pandaty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pandaty\", \"uk-UA\": \"Pandaty\", \"de-DE\": \"Pandaty\", \"en-US\": \"Pandaty\", \"ko-KR\": \"Pandaty\", \"pt-BR\": \"Pandaty\", \"es-ES\": \"Pandaty\", \"ar-AE\": \"Pandaty\", \"no-NO\": \"Pandaty\", \"fr-CA\": \"Pandaty\", \"it-IT\": \"Pandaty\", \"pl-PL\": \"Pandaty\", \"ru-RU\": \"Pandaty\", \"zh-Hans\": \"Pandaty\", \"nl-NL\": \"Pandaty\", \"pt-PT\": \"Pandaty\", \"zh-Hant\": \"Pandaty\", \"sv-SE\": \"Pandaty\", \"da-DK\": \"Pandaty\", \"tr-TR\": \"Pandaty\", \"fr-FR\": \"Pandaty\", \"en-GB\": \"Pandaty\", \"es-419\": \"Pandaty\", \"ja-JP\": \"Pandaty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/00872cd2a0e83cbba694cbcdec3008ac83ed19b25a1ad799.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/a4d79443bea52323410d92f0f6ecafb5a7546156e694b048.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/d6723e850d4395ec406322d57d483e71657eb93f09973891.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0511/525b3b387db6562c969646c49e7be867dc5fedcc0277aa32.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1209/2217f1d3fc20d8745173f9a424544d1af9424275841911b9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0208/ee736bfca274c3d049452732e4b7e8f17b57b615f5ef48ea.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6aaf3782b4eb112fdf2408fa81cc0010eeb62eb3de5739ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/4819856ec844f75dd315fc2ebf6c2809f570bf4ce1ff172f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/23efbd66490aadddcc079bd5a03c40513403ee71084c2958.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/6c849f9910961373e7a8d7eed732d000ef15e03440d11b27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0119/fb7f4ed5f7000fb716f215801c0b87a95caedfe5e4aa1610.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0915/e2ff9f3ccbd87ba33382328f61693b3566aa23d7c98839a8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:22:56.750000Z\", \"lastPlayedDateTime\": \"2023-08-19T07:05:37.690000Z\", \"playDuration\": \"PT42M23S\"}, {\"titleId\": \"PPSA18061_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:16:58.600000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:22:06.190000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA09029_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T06:10:00.580000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:16:56.650000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"PPSA18357_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:57:07.370000Z\", \"lastPlayedDateTime\": \"2023-08-19T06:07:25.300000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"PPSA17960_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:18:09.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:27:02.710000Z\", \"playDuration\": \"PT8M35S\"}, {\"titleId\": \"CUSA44686_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T05:07:34.230000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:17:50.940000Z\", \"playDuration\": \"PT9M51S\"}, {\"titleId\": \"CUSA44387_00\", \"name\": \"Kitty Krawler\", \"localizedName\": \"Kitty Krawler\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008878, \"titleIds\": [\"PPSA17960_00\", \"PPSA18357_00\", \"CUSA45115_00\", \"CUSA44387_00\", \"CUSA44686_00\", \"CUSA47280_00\"], \"name\": \"Kitty Krawler\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kitty Krawler\", \"uk-UA\": \"Kitty Krawler\", \"de-DE\": \"Kitty Krawler\", \"en-US\": \"Kitty Krawler\", \"ko-KR\": \"Kitty Krawler\", \"pt-BR\": \"Kitty Krawler\", \"es-ES\": \"Kitty Krawler\", \"ar-AE\": \"Kitty Krawler\", \"no-NO\": \"Kitty Krawler\", \"fr-CA\": \"Kitty Krawler\", \"it-IT\": \"Kitty Krawler\", \"pl-PL\": \"Kitty Krawler\", \"ru-RU\": \"Kitty Krawler\", \"zh-Hans\": \"Kitty Krawler\", \"nl-NL\": \"Kitty Krawler\", \"pt-PT\": \"Kitty Krawler\", \"zh-Hant\": \"Kitty Krawler\", \"sv-SE\": \"Kitty Krawler\", \"da-DK\": \"Kitty Krawler\", \"tr-TR\": \"Kitty Krawler\", \"fr-FR\": \"Kitty Krawler\", \"en-GB\": \"Kitty Krawler\", \"es-419\": \"Kitty Krawler\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/f0038a051a3a6f0d3ec3b7441ad342b817abbf7f09090b51.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1108/a8bbbd6a79364349979037e09a9060b03c75ac9f992cdf84.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1816/a08e1a67b45192216549741c30195b7f7c3b47994adf28ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0518/f91f9a199fbddd2bf4577b0ce9a69ba68017528ae7576b65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1208/548eb458a541f301644726f52486b8104d51ac2f8c5862c1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T04:43:12.150000Z\", \"lastPlayedDateTime\": \"2023-08-19T05:07:32.490000Z\", \"playDuration\": \"PT21M38S\"}, {\"titleId\": \"PPSA15767_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:34:34.760000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:40:32.440000Z\", \"playDuration\": \"PT5M21S\"}, {\"titleId\": \"PPSA18162_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:28:51.650000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:34:31.140000Z\", \"playDuration\": \"PT5M20S\"}, {\"titleId\": \"PPSA18163_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:23:17.000000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:28:47.960000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA15766_00\", \"name\": \"Black Death : A Tragic Dirge\", \"localizedName\": \"Black Death : A Tragic Dirge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005667, \"titleIds\": [\"PPSA15767_00\", \"PPSA15766_00\", \"PPSA18163_00\", \"PPSA18162_00\", \"CUSA35289_00\", \"CUSA35290_00\"], \"name\": \"Black Death : A Tragic Dirge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Black Death : A Tragic Dirge\", \"uk-UA\": \"Black Death : A Tragic Dirge\", \"de-DE\": \"Black Death : A Tragic Dirge\", \"en-US\": \"Black Death : A Tragic Dirge\", \"ko-KR\": \"Black Death : A Tragic Dirge\", \"pt-BR\": \"Black Death : A Tragic Dirge\", \"es-ES\": \"Black Death : A Tragic Dirge\", \"ar-AE\": \"Black Death : A Tragic Dirge\", \"no-NO\": \"Black Death : A Tragic Dirge\", \"fr-CA\": \"Black Death : A Tragic Dirge\", \"it-IT\": \"Black Death : A Tragic Dirge\", \"pl-PL\": \"Black Death : A Tragic Dirge\", \"ru-RU\": \"Black Death : A Tragic Dirge\", \"zh-Hans\": \"Black Death : A Tragic Dirge\", \"nl-NL\": \"Black Death : A Tragic Dirge\", \"pt-PT\": \"Black Death : A Tragic Dirge\", \"zh-Hant\": \"Black Death : A Tragic Dirge\", \"sv-SE\": \"Black Death : A Tragic Dirge\", \"da-DK\": \"Black Death : A Tragic Dirge\", \"tr-TR\": \"Black Death : A Tragic Dirge\", \"fr-FR\": \"Black Death : A Tragic Dirge\", \"en-GB\": \"Black Death : A Tragic Dirge\", \"es-419\": \"Black Death : A Tragic Dirge\", \"ja-JP\": \"Black Death : A Tragic Dirge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/1cd214e62002269afa70bb0e3ed8282dc86fff1e3604a62c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/174454fbc1c67b23bb229f41c13001786eeff0544e52a0c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/e5e3995f7b9db257dd167899f85019aed0bace4f147196bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/02653a283ea6a03f3cd11f77a3480d707d869305ea3a8d17.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/6b73ea0b3d4cbe8c8580aaf07ccc6a040e187ace11003bd4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/83b5e55fa70d9d609b312ea3ca3b4ad94e1a3507baa5d9fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/EEZVDvEtnr4jgnsMkGBaMkgT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/ah2alLhM4qfpJguJv3aoevDV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/pTr9Bjq7Uqz97sZLCkeYZDXJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/IwMlCGjfZndicLMHPquoDWkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/zhQcO47JwW6dbDeHnpCg9vBs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0511/RmcitFexKlpROsgEnUk6NlPR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/0709/3ab68323de7c906ed90518b404341cbce1a7a5e84f74451a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:17:19.520000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:23:13.460000Z\", \"playDuration\": \"PT5M19S\"}, {\"titleId\": \"CUSA35869_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:05:34.940000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:09:28.510000Z\", \"playDuration\": \"PT3M36S\"}, {\"titleId\": \"CUSA35868_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T02:01:09.210000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:05:33.160000Z\", \"playDuration\": \"PT3M47S\"}, {\"titleId\": \"CUSA35867_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:54:07.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T02:01:07.550000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"CUSA35870_00\", \"name\": \"EMBATTLED\", \"localizedName\": \"EMBATTLED\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005868, \"titleIds\": [\"CUSA35868_00\", \"CUSA35869_00\", \"CUSA35870_00\", \"CUSA35867_00\"], \"name\": \"EMBATTLED\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"EMBATTLED\", \"uk-UA\": \"EMBATTLED\", \"de-DE\": \"EMBATTLED\", \"en-US\": \"EMBATTLED\", \"ko-KR\": \"EMBATTLED\", \"pt-BR\": \"EMBATTLED\", \"es-ES\": \"EMBATTLED\", \"ar-AE\": \"EMBATTLED\", \"no-NO\": \"EMBATTLED\", \"fr-CA\": \"EMBATTLED\", \"it-IT\": \"EMBATTLED\", \"pl-PL\": \"EMBATTLED\", \"ru-RU\": \"EMBATTLED\", \"zh-Hans\": \"EMBATTLED\", \"nl-NL\": \"EMBATTLED\", \"pt-PT\": \"EMBATTLED\", \"zh-Hant\": \"EMBATTLED\", \"sv-SE\": \"EMBATTLED\", \"da-DK\": \"EMBATTLED\", \"tr-TR\": \"EMBATTLED\", \"fr-FR\": \"EMBATTLED\", \"en-GB\": \"EMBATTLED\", \"es-419\": \"EMBATTLED\", \"ja-JP\": \"EMBATTLED\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3113/b115b1ac23759f1acbf095fe710eb2fc85485e17d7ae2131.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/I0R9NSDgASYd8batCWySJav0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/sk42zLWm9QYuKCFA2gT7zdfB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/i7ZQEgTsrWKmP2yMqfonNuHi.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1915/zuPkkTLHFoczwKak62wnxPQv.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-19T01:40:08.140000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:54:05.380000Z\", \"playDuration\": \"PT12M23S\"}, {\"titleId\": \"CUSA40973_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:55:50.550000Z\", \"lastPlayedDateTime\": \"2023-08-19T01:39:40.120000Z\", \"playDuration\": \"PT8H52S\"}, {\"titleId\": \"CUSA40974_00\", \"name\": \"Aery - The Lost Hero\", \"localizedName\": \"Aery - The Lost Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007444, \"titleIds\": [\"CUSA40973_00\", \"CUSA40974_00\"], \"name\": \"Aery - The Lost Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"SIMULATION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aery - The Lost Hero\", \"uk-UA\": \"Aery - The Lost Hero\", \"de-DE\": \"Aery - The Lost Hero\", \"en-US\": \"Aery - The Lost Hero\", \"pt-BR\": \"Aery - The Lost Hero\", \"es-ES\": \"Aery - The Lost Hero\", \"ar-AE\": \"Aery - The Lost Hero\", \"no-NO\": \"Aery - The Lost Hero\", \"fr-CA\": \"Aery - The Lost Hero\", \"it-IT\": \"Aery - The Lost Hero\", \"pl-PL\": \"Aery - The Lost Hero\", \"ru-RU\": \"Aery - The Lost Hero\", \"nl-NL\": \"Aery - The Lost Hero\", \"pt-PT\": \"Aery - The Lost Hero\", \"sv-SE\": \"Aery - The Lost Hero\", \"da-DK\": \"Aery - The Lost Hero\", \"tr-TR\": \"Aery - The Lost Hero\", \"fr-FR\": \"Aery - The Lost Hero\", \"en-GB\": \"Aery - The Lost Hero\", \"es-419\": \"Aery - The Lost Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/HLFkDebzljhubM3RFMfCCLG1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/0ufwIkP71GzOJodGwJYjJCMI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/FvvIHFRLqlrIjbfaz4J30VN9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/kJkw6523vI5uiuyhsu8POryB.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/aenUtlzhcNUGVxIeYTk3qZTt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/eLjCp4Q0oO1bSj8HKaEHevj7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DxcgGg0ZGuDrmGhy7Ngl0gx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/Y3A14zGf4f3rUXkb9G8rJIqJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/33iIMx5OGSt9WixKOC4diEoR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/e4MLxqDIbtZte0Zn0ELramQJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/afy2elrOrgfTVuA9XHQFCRDX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/DUODNshj390JNiu74UBroZkX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/apCO9hLlGdGtK4DLLT96EcCc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/o4QF8K7XHjsmNgpBZjhjQidn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/OFdCz6ytgXfin4tatLYla9Vy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1603/llAyov4B0Tx2iZtAcb97eARL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:58:43.080000Z\", \"lastPlayedDateTime\": \"2023-08-18T17:20:32.980000Z\", \"playDuration\": \"PT1H4M6S\"}, {\"titleId\": \"PPSA12593_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:45:21.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:49:37.940000Z\", \"playDuration\": \"PT4M2S\"}, {\"titleId\": \"PPSA12594_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:36:37.880000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:45:18.940000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA39550_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:32:59.950000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:36:35.420000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA39551_00\", \"name\": \"Space Defend\", \"localizedName\": \"Space Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006946, \"titleIds\": [\"CUSA39551_00\", \"PPSA12593_00\", \"PPSA12594_00\", \"PPSA12592_00\", \"CUSA39548_00\", \"PPSA12591_00\", \"CUSA39550_00\", \"CUSA39549_00\"], \"name\": \"Space Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Defend\", \"uk-UA\": \"Space Defend\", \"de-DE\": \"Space Defend\", \"en-US\": \"Space Defend\", \"ko-KR\": \"Space Defend\", \"pt-BR\": \"Space Defend\", \"es-ES\": \"Space Defend\", \"ar-AE\": \"Space Defend\", \"no-NO\": \"Space Defend\", \"fr-CA\": \"Space Defend\", \"it-IT\": \"Space Defend\", \"pl-PL\": \"Space Defend\", \"ru-RU\": \"Space Defend\", \"zh-Hans\": \"Space Defend\", \"nl-NL\": \"Space Defend\", \"pt-PT\": \"Space Defend\", \"zh-Hant\": \"Space Defend\", \"sv-SE\": \"Space Defend\", \"da-DK\": \"Space Defend\", \"tr-TR\": \"Space Defend\", \"fr-FR\": \"Space Defend\", \"en-GB\": \"Space Defend\", \"es-419\": \"Space Defend\", \"ja-JP\": \"Space Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/pxExSGkuowCBGBIvAfUkC0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/rE2EGGOBknIzrz96aWhkogLc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/Fho2vM4NnhSrOpzc8Ibk3A1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/OAmdjs1EuFHRn5J4bNwq4OhQ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/SOjCONv4cQlU1tgtSONJ363X.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/HfO4mvtBjIy32jNemNnTVT2H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/5d57c6b227e1d24b4ea8132437e8305226fd95b60abc6015.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/54d44782b123c0a4945f11b506ea7a7d46dec2954d704146.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/b3160b37182591873afaee1a1bc682741705aa7665008f82.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3f55298877fc59b06a5d7bf0151a397e04627544bdb7eab7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/045b2688452179f01d79fea09e73f14dfe060c812745a7b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6200eb2e3ff0266d6d257e6c091c7306c58e8403b37653a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/3558d40d555b35823784bec4aae873cba010e14b1cbd2cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1410/2esdSzkrY1t5KyEs5EGrioFl.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T15:26:00.590000Z\", \"lastPlayedDateTime\": \"2023-08-18T15:32:58.080000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"PPSA16089_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-18T14:20:08.490000Z\", \"lastPlayedDateTime\": \"2023-08-18T14:57:51.110000Z\", \"playDuration\": \"PT36M57S\"}, {\"titleId\": \"PPSA16088_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-17T10:28:15.000000Z\", \"lastPlayedDateTime\": \"2023-08-17T11:00:59.050000Z\", \"playDuration\": \"PT32M30S\"}, {\"titleId\": \"PPSA15396_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-16T10:40:30.670000Z\", \"lastPlayedDateTime\": \"2023-08-16T11:45:31.110000Z\", \"playDuration\": \"PT1H4M44S\"}, {\"titleId\": \"PPSA15397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-15T13:32:57.780000Z\", \"lastPlayedDateTime\": \"2023-08-15T14:08:19.350000Z\", \"playDuration\": \"PT32M54S\"}, {\"titleId\": \"CUSA42397_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-14T10:15:44.800000Z\", \"lastPlayedDateTime\": \"2023-08-14T10:51:14.840000Z\", \"playDuration\": \"PT35M13S\"}, {\"titleId\": \"CUSA42993_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-13T10:10:46.540000Z\", \"lastPlayedDateTime\": \"2023-08-13T11:03:07.160000Z\", \"playDuration\": \"PT52M15S\"}, {\"titleId\": \"CUSA42994_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-12T10:59:35.600000Z\", \"lastPlayedDateTime\": \"2023-08-12T12:22:50.090000Z\", \"playDuration\": \"PT1H15M51S\"}, {\"titleId\": \"CUSA42398_00\", \"name\": \"Fluffy Milo\", \"localizedName\": \"Fluffy Milo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007981, \"titleIds\": [\"PPSA15396_00\", \"PPSA15397_00\", \"CUSA42993_00\", \"CUSA42397_00\", \"CUSA42994_00\", \"CUSA42398_00\", \"PPSA16088_00\", \"PPSA16089_00\"], \"name\": \"Fluffy Milo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fluffy Milo\", \"uk-UA\": \"Fluffy Milo\", \"de-DE\": \"Fluffy Milo\", \"en-US\": \"Fluffy Milo\", \"ko-KR\": \"Fluffy Milo\", \"pt-BR\": \"Fluffy Milo\", \"es-ES\": \"Fluffy Milo\", \"ar-AE\": \"Fluffy Milo\", \"no-NO\": \"Fluffy Milo\", \"fr-CA\": \"Fluffy Milo\", \"it-IT\": \"Fluffy Milo\", \"pl-PL\": \"Fluffy Milo\", \"ru-RU\": \"Fluffy Milo\", \"zh-Hans\": \"Fluffy Milo\", \"nl-NL\": \"Fluffy Milo\", \"pt-PT\": \"Fluffy Milo\", \"zh-Hant\": \"Fluffy Milo\", \"sv-SE\": \"Fluffy Milo\", \"da-DK\": \"Fluffy Milo\", \"tr-TR\": \"Fluffy Milo\", \"fr-FR\": \"Fluffy Milo\", \"en-GB\": \"Fluffy Milo\", \"es-419\": \"Fluffy Milo\", \"ja-JP\": \"Fluffy Milo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/87d010402906d4b558dac61ecd8004e725ebae831e9ff311.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3472463d1e1012669ee00fb4c90da70734c173a0acdc755d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/e7c1a160fb867dcd8df2baac60bb28892fec1f05c0dc712f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/789b4ef256114165dc3534b477053814a5141f26dcc79a13.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7b580aa89bc261d359e2ce9b2ee635cc9b397f47fc06e00c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/10399cc5e8cd2ad600bddf1011b14c57a1767a329f1c5b75.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/18eac0c58da13683d652c188c66146eed283283e40a90288.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/b7df10763485c46a4b0818234a14ae30075d59ddedbc4dd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/5554e87a94564d8536a4098ff14880d1dbffc81947bb1ba1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/45125473473bcf86c90002161bbc7a086f516bea71ad8626.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/7c5694577b259c43871b3c6355d543b4430fb86ff516304c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/23ff40c3facb87cadc03b3b63abfd7abff64372e736e73d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/3a2abca88467cdd0c74a7537c80d8743ce441f084bd7d362.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/fb140a234c8340e406bb47e36c35b7deb2c30204c190f3ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2007/1e21a577ed04f6f884ad11cc6e3bb99b5c7714d9bc8fda26.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1806/50c348db796fd29124b15abbcf78435e53da0a303a5c78da.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-11T11:04:30.400000Z\", \"lastPlayedDateTime\": \"2023-08-11T11:50:21.400000Z\", \"playDuration\": \"PT44M50S\"}, {\"titleId\": \"PPSA11451_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:57:20.610000Z\", \"lastPlayedDateTime\": \"2023-08-10T13:02:34.590000Z\", \"playDuration\": \"PT5M10S\"}, {\"titleId\": \"PPSA11450_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:39:28.910000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:57:04.960000Z\", \"playDuration\": \"PT16M40S\"}, {\"titleId\": \"CUSA38234_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:23:06.780000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:39:26.640000Z\", \"playDuration\": \"PT7M2S\"}, {\"titleId\": \"CUSA38235_00\", \"name\": \"All Mighty Tower\", \"localizedName\": \"All Mighty Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006584, \"titleIds\": [\"CUSA38235_00\", \"CUSA38234_00\", \"PPSA11451_00\", \"PPSA11452_00\", \"PPSA11450_00\", \"CUSA38236_00\", \"PPSA11453_00\", \"CUSA38237_00\"], \"name\": \"All Mighty Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"All Mighty Tower\", \"uk-UA\": \"All Mighty Tower\", \"de-DE\": \"All Mighty Tower\", \"en-US\": \"All Mighty Tower\", \"ko-KR\": \"All Mighty Tower\", \"pt-BR\": \"All Mighty Tower\", \"es-ES\": \"All Mighty Tower\", \"ar-AE\": \"All Mighty Tower\", \"no-NO\": \"All Mighty Tower\", \"fr-CA\": \"All Mighty Tower\", \"it-IT\": \"All Mighty Tower\", \"pl-PL\": \"All Mighty Tower\", \"ru-RU\": \"All Mighty Tower\", \"zh-Hans\": \"All Mighty Tower\", \"nl-NL\": \"All Mighty Tower\", \"pt-PT\": \"All Mighty Tower\", \"zh-Hant\": \"All Mighty Tower\", \"sv-SE\": \"All Mighty Tower\", \"da-DK\": \"All Mighty Tower\", \"tr-TR\": \"All Mighty Tower\", \"fr-FR\": \"All Mighty Tower\", \"en-GB\": \"All Mighty Tower\", \"es-419\": \"All Mighty Tower\", \"ja-JP\": \"All Mighty Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/3a3BQ5QSQMbeFPJyLj1GM6Lf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/lnadUPSa5Tx6fAVymYcTXa1y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/I35URxCSbQBYtQ30faqxKRSJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/JN7r4pPwtdcEFYZxLi3AN8eL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/dSK8642y6iRp05de0Uz3nF2z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/znyJwGv0DvSAKpmWllt70leR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/4c0b02f8b95e0dc1330e0d12adba1a4883549b6d7766dcbc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/ddf318855834248efe4bd4fd1b6963362580af47a99afcc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/96bc30c212b431037b33edcb09d442414668e18f7672a4dc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/1614/0a93565d09ff7a6fce517fd819d71b59caea7757812f69cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0617/IH0bQvysFHeVii65tru5K7zn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-10T12:15:59.540000Z\", \"lastPlayedDateTime\": \"2023-08-10T12:23:04.700000Z\", \"playDuration\": \"PT6M43S\"}, {\"titleId\": \"CUSA35907_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:20:05.260000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:22:37.150000Z\", \"playDuration\": \"PT2M16S\"}, {\"titleId\": \"CUSA35909_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:11:22.620000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:19:47.760000Z\", \"playDuration\": \"PT8M\"}, {\"titleId\": \"CUSA35910_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:08:56.590000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:11:20.490000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA35908_00\", \"name\": \"D PISTOLS\", \"localizedName\": \"D PISTOLS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005877, \"titleIds\": [\"CUSA35907_00\", \"CUSA35908_00\", \"CUSA35909_00\", \"CUSA35910_00\"], \"name\": \"D PISTOLS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"D PISTOLS\", \"uk-UA\": \"D PISTOLS\", \"de-DE\": \"D PISTOLS\", \"en-US\": \"D PISTOLS\", \"ko-KR\": \"D PISTOLS\", \"pt-BR\": \"D PISTOLS\", \"es-ES\": \"D PISTOLS\", \"ar-AE\": \"D PISTOLS\", \"no-NO\": \"D PISTOLS\", \"fr-CA\": \"D PISTOLS\", \"it-IT\": \"D PISTOLS\", \"pl-PL\": \"D PISTOLS\", \"ru-RU\": \"D PISTOLS\", \"zh-Hans\": \"D PISTOLS\", \"nl-NL\": \"D PISTOLS\", \"pt-PT\": \"D PISTOLS\", \"zh-Hant\": \"D PISTOLS\", \"sv-SE\": \"D PISTOLS\", \"da-DK\": \"D PISTOLS\", \"tr-TR\": \"D PISTOLS\", \"fr-FR\": \"D PISTOLS\", \"en-GB\": \"D PISTOLS\", \"es-419\": \"D PISTOLS\", \"ja-JP\": \"D PISTOLS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3112/1e6ae1e29505daccaa14630d31bc90e0be92e5dcdd8f41bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/I02KUFqdyU6qZ0jmtkDL1q5i.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/lInbmaujxRSJD8iSTxtFYsSb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/N0xehSMRSgXfFGaaQ0GJx1Zh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0614/dBqEniPBZ3e0RnLsUqBFSOhr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:06:02.130000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:08:54.480000Z\", \"playDuration\": \"PT2M47S\"}, {\"titleId\": \"CUSA43563_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T13:00:51.550000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:02:44.750000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA43564_00\", \"name\": \"Envasion\", \"localizedName\": \"Envasion\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008449, \"titleIds\": [\"CUSA43564_00\", \"CUSA43565_00\", \"CUSA43566_00\", \"CUSA43563_00\"], \"name\": \"Envasion\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Envasion\", \"uk-UA\": \"Envasion\", \"de-DE\": \"Envasion\", \"en-US\": \"Envasion\", \"pt-BR\": \"Envasion\", \"es-ES\": \"Envasion\", \"ar-AE\": \"Envasion\", \"no-NO\": \"Envasion\", \"fr-CA\": \"Envasion\", \"it-IT\": \"Envasion\", \"pl-PL\": \"Envasion\", \"ru-RU\": \"Envasion\", \"nl-NL\": \"Envasion\", \"pt-PT\": \"Envasion\", \"sv-SE\": \"Envasion\", \"da-DK\": \"Envasion\", \"tr-TR\": \"Envasion\", \"fr-FR\": \"Envasion\", \"en-GB\": \"Envasion\", \"es-419\": \"Envasion\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/64ca21963a3fc6b2d1c9207c8c0e316e8490b0a2fdc67b76.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/035cc40eafcd9fe3ac9c78ef3c3b418e2a9306c8157d7a74.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/b73adb3519b89c197fb658ae14ceec44227e00eb12835245.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/915d51678669b362a87f8dd52dc146dad012606ece1519b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/3016/3a3f83fea6226180484314124b937891dc4b404f520acff1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/9c97f54b8d80c504c20b11254b39c4cfd61662e191ef7a80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202312/0712/2109477443e59bfa000005569608d0ec450f395a5b57a821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2823/faee97f225b5ff4ef7aa9a8c15560c62faaf7bf0b59c1386.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:57:59.280000Z\", \"lastPlayedDateTime\": \"2023-08-09T13:00:49.780000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"PPSA10282_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T12:09:57.540000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:42:17.790000Z\", \"playDuration\": \"PT31M25S\"}, {\"titleId\": \"PPSA10283_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T11:31:38.240000Z\", \"lastPlayedDateTime\": \"2023-08-09T12:04:45.790000Z\", \"playDuration\": \"PT33M3S\"}, {\"titleId\": \"CUSA36879_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-09T10:56:42.350000Z\", \"lastPlayedDateTime\": \"2023-08-09T11:30:07.390000Z\", \"playDuration\": \"PT33M20S\"}, {\"titleId\": \"CUSA36880_00\", \"name\": \"The Red Exile - Survival Horror\", \"localizedName\": \"The Red Exile - Survival Horror\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006175, \"titleIds\": [\"CUSA36879_00\", \"CUSA36880_00\", \"PPSA10282_00\", \"PPSA10283_00\"], \"name\": \"The Red Exile - Survival Horror\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Red Exile - Survival Horror\", \"uk-UA\": \"The Red Exile - Survival Horror\", \"de-DE\": \"The Red Exile - Survival Horror\", \"en-US\": \"The Red Exile - Survival Horror\", \"ko-KR\": \"The Red Exile - Survival Horror\", \"pt-BR\": \"The Red Exile - Survival Horror\", \"es-ES\": \"The Red Exile - Survival Horror\", \"ar-AE\": \"The Red Exile - Survival Horror\", \"no-NO\": \"The Red Exile - Survival Horror\", \"fr-CA\": \"The Red Exile - Survival Horror\", \"it-IT\": \"The Red Exile - Survival Horror\", \"pl-PL\": \"The Red Exile - Survival Horror\", \"ru-RU\": \"The Red Exile - Survival Horror\", \"zh-Hans\": \"The Red Exile - Survival Horror\", \"nl-NL\": \"The Red Exile - Survival Horror\", \"pt-PT\": \"The Red Exile - Survival Horror\", \"zh-Hant\": \"The Red Exile - Survival Horror\", \"sv-SE\": \"The Red Exile - Survival Horror\", \"da-DK\": \"The Red Exile - Survival Horror\", \"tr-TR\": \"The Red Exile - Survival Horror\", \"fr-FR\": \"The Red Exile - Survival Horror\", \"en-GB\": \"The Red Exile - Survival Horror\", \"es-419\": \"The Red Exile - Survival Horror\", \"ja-JP\": \"The Red Exile - Survival Horror\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/dcf8721c3331b8695ae33231a6e8af4928503331cd6c4e4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/524913847383f72b7505ce84ec4935dbb0075c9ae678771e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/541809d87a97d4f4dd5b13c65de5f41bcefd69cea4342637.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/8e61961731bb0b102874ee4cf88c5028d8109f3500c49337.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/f384568a77b0dedd2a9195ad4eda5f7f8bf5e0662664f67c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/7a05622254d2932065f2be3f88b15e86d4c7798c4333a187.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9fdb875d3e6d345d7e0dffcde3edf616a31098d2da4cca39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/63573fe747e837ec7ca68b9fa36f536406f0f67aa1754c6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/daa794b24612acdf93b83d921eab40b3571f022516f47c27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/49265449276fb0eaaca5d2de7d553020dbc954617c2073e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/af32d153a5fb47f8baaac78e9b6d32170a85bcea9cc5d3be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/62956fa045c2890e011ab45d95cf5278bf7cb98606ef8d8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/baaa60de697a38bd022b81ce41864cf87a3e148317aca8cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/734364fb5a8e9f8bd99e2c17f7320a79ef6e3c606876cfb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/9b7210252b0de9b84865b19794c437e3e2cf1461eefd363e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2005/d5422d564ad5d91485ee0bf45a7d10b41de7aba82cd22760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1503/01a1ba1b2ab15ae00786ba2f13b88a37ce24d19e195edb7e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:22:42.960000Z\", \"lastPlayedDateTime\": \"2023-08-08T13:40:58.060000Z\", \"playDuration\": \"PT1H16M43S\"}, {\"titleId\": \"CUSA14532_00\", \"name\": \"Human Fall Flat\", \"localizedName\": \"Human Fall Flat\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 227139, \"titleIds\": [\"PPSA02431_00\", \"CUSA43839_00\", \"CUSA07208_00\", \"PPSA22811_00\", \"PPSA22812_00\", \"PPSA02429_00\", \"CUSA07215_00\", \"CUSA14532_00\", \"PPSA02764_00\"], \"name\": \"Human Fall Flat\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Human Fall Flat\", \"uk-UA\": \"Human Fall Flat\", \"de-DE\": \"Human Fall Flat\", \"en-US\": \"Human Fall Flat\", \"ko-KR\": \"\\ud734\\uba3c: \\ud3f4 \\ud50c\\ub7ab\", \"pt-BR\": \"Human Fall Flat\", \"es-ES\": \"Human Fall Flat\", \"ar-AE\": \"Human Fall Flat\", \"no-NO\": \"Human Fall Flat\", \"fr-CA\": \"Human Fall Flat\", \"it-IT\": \"Human Fall Flat\", \"pl-PL\": \"Human Fall Flat\", \"ru-RU\": \"Human Fall Flat\", \"zh-Hans\": \"Human Fall Flat\", \"nl-NL\": \"Human Fall Flat\", \"pt-PT\": \"Human Fall Flat\", \"zh-Hant\": \"Human Fall Flat\", \"sv-SE\": \"Human Fall Flat\", \"da-DK\": \"Human Fall Flat\", \"tr-TR\": \"Human Fall Flat\", \"fr-FR\": \"Human Fall Flat\", \"en-GB\": \"Human Fall Flat\", \"es-419\": \"Human Fall Flat\", \"ja-JP\": \"\\u30d2\\u30e5\\u30fc\\u30de\\u30f3 \\u30d5\\u30a9\\u30fc\\u30eb \\u30d5\\u30e9\\u30c3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/598abc93e254779eb9c6414965ac2c2bba512c61bcd81b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/be49ff686249616fba9eb67800683ba30d6227e772190381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/3009/97fcf1da33d3dc69bdce0508c65ac374f4b06c32f6616c77.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/fa0166fe2809e82928fb6f79bee538a5f081d1adad8eeee8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/bdb42cad3bce12f576e1024d4cbaf468ee657e3d6e35f8c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/6de4add9fe04d2fbf924fa332b9c0fe24384f8cb53ea83e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/cc32adbeb82cac37b3fe86632276ff10bd32d1a8fd3742c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/60d139c027ad3f225c312d8b47bf58687d5d7ca441f99cc6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/1945d731a942ebf2906f58f81a5b80b45556cc79be7c285d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/b4f806049fecfda394621cfd326a35f8ad774091e34e6cf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/a609953516c080761008bc82994818a6567167c53adf437b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/4c4cb6a675647c3ddf499ebed7f69f0e0150bf57828fffb2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/260340611941150327156f5360115fe65f7c70500bf64647.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/343e9ece5ced55123c06c5f0c7f0db84ffac1874ad8d88c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2313/20c3b0843705a02f9fc7c0efb9c8a91086c00477144ee5ef.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2019-09-16T16:41:27.000000Z\", \"lastPlayedDateTime\": \"2023-08-08T12:59:11.890000Z\", \"playDuration\": \"PT56H46M6S\"}, {\"titleId\": \"CUSA33743_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-08T11:16:35.620000Z\", \"lastPlayedDateTime\": \"2023-08-08T11:19:20.420000Z\", \"playDuration\": \"PT2M39S\"}, {\"titleId\": \"CUSA33742_00\", \"name\": \"The Voices Stories\", \"localizedName\": \"The Voices Stories\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005098, \"titleIds\": [\"CUSA33742_00\", \"CUSA33743_00\"], \"name\": \"The Voices Stories\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Voices Stories\", \"uk-UA\": \"The Voices Stories\", \"de-DE\": \"The Voices Stories\", \"en-US\": \"The Voices Stories\", \"ko-KR\": \"The Voices Stories\", \"pt-BR\": \"The Voices Stories\", \"es-ES\": \"The Voices Stories\", \"ar-AE\": \"The Voices Stories\", \"no-NO\": \"The Voices Stories\", \"fr-CA\": \"The Voices Stories\", \"it-IT\": \"The Voices Stories\", \"pl-PL\": \"The Voices Stories\", \"ru-RU\": \"The Voices Stories\", \"zh-Hans\": \"The Voices Stories\", \"nl-NL\": \"The Voices Stories\", \"pt-PT\": \"The Voices Stories\", \"zh-Hant\": \"The Voices Stories\", \"sv-SE\": \"The Voices Stories\", \"da-DK\": \"The Voices Stories\", \"tr-TR\": \"The Voices Stories\", \"fr-FR\": \"The Voices Stories\", \"en-GB\": \"The Voices Stories\", \"es-419\": \"The Voices Stories\", \"ja-JP\": \"The Voices Stories\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/15771512d4c4d143555aad1efd1ac49038d477e2dc7493ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/74b51d896dce678114976c7fd77fc9d48ef9ea568febe105.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/6a5309efdf3a037a01083dfb38e4982c2a45eaa35422d7fc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/50cb9b48c164f4763257e295227f2d73a0a0c9d8556a7103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2616/55b61b72613e70917e2111c8e9d6757931246f41f4c2f45f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-07T11:25:29.840000Z\", \"lastPlayedDateTime\": \"2023-08-07T11:28:16.980000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA44672_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:47:26.760000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:49:24.090000Z\", \"playDuration\": \"PT1M50S\"}, {\"titleId\": \"CUSA44673_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:45:06.670000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:47:06.030000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA44670_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:42:04.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:45:04.710000Z\", \"playDuration\": \"PT2M14S\"}, {\"titleId\": \"CUSA44671_00\", \"name\": \"Item Tower\", \"localizedName\": \"Item Tower\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008996, \"titleIds\": [\"CUSA44670_00\", \"CUSA44671_00\", \"CUSA44672_00\", \"CUSA44673_00\"], \"name\": \"Item Tower\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Item Tower\", \"uk-UA\": \"Item Tower\", \"de-DE\": \"Item Tower\", \"en-US\": \"Item Tower\", \"ko-KR\": \"Item Tower\", \"pt-BR\": \"Item Tower\", \"es-ES\": \"Item Tower\", \"ar-AE\": \"Item Tower\", \"no-NO\": \"Item Tower\", \"fr-CA\": \"Item Tower\", \"it-IT\": \"Item Tower\", \"pl-PL\": \"Item Tower\", \"ru-RU\": \"Item Tower\", \"zh-Hans\": \"Item Tower\", \"nl-NL\": \"Item Tower\", \"pt-PT\": \"Item Tower\", \"zh-Hant\": \"Item Tower\", \"sv-SE\": \"Item Tower\", \"da-DK\": \"Item Tower\", \"tr-TR\": \"Item Tower\", \"fr-FR\": \"Item Tower\", \"en-GB\": \"Item Tower\", \"es-419\": \"Item Tower\", \"ja-JP\": \"Item Tower\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/0690bfa7a94bd3e461fb9666ceb8350bd0b93152ba5e2a34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/188176345d9a40f51d61c157288944927c523f667c3cde06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/2472184aae14cafee7d742ce156df6361108df53c0ac1bf3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3423af3d172056827cfeab7896192b41f7a115398bed03b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/3f75b73629660dfca0b8820216fbcba8f210373299043a95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9c50aee4d8f2bf017dd97701991dc8f467bca10048232c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/9ef4489082cc436e9061e93dd0c0e7aca1df0f181f1ff576.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/ab7a5ce27bdbfafe22ffe3626dcbbf24d236371809c80314.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2112/dd187f4661690a00eca13ac998e85ade62e09872a4651c01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1409/fab6422efe58e71fb011d71d56a7ab1b5e32198a4aedc391.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T13:39:13.810000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:42:01.910000Z\", \"playDuration\": \"PT2M30S\"}, {\"titleId\": \"CUSA41271_00\", \"name\": \"Bunny Parking\", \"localizedName\": \"Bunny Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10002087, \"titleIds\": [\"CUSA26063_00\", \"CUSA26064_00\", \"CUSA41271_00\", \"CUSA41270_00\"], \"name\": \"Bunny Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bunny Parking\", \"uk-UA\": \"Bunny Parking\", \"de-DE\": \"Bunny Parking\", \"en-US\": \"Bunny Parking\", \"ko-KR\": \"Bunny Parking\", \"pt-BR\": \"Bunny Parking\", \"es-ES\": \"Bunny Parking\", \"ar-AE\": \"Bunny Parking\", \"no-NO\": \"Bunny Parking\", \"fr-CA\": \"Bunny Parking\", \"it-IT\": \"Bunny Parking\", \"pl-PL\": \"Bunny Parking\", \"ru-RU\": \"Bunny Parking\", \"zh-Hans\": \"Bunny Parking\", \"nl-NL\": \"Bunny Parking\", \"pt-PT\": \"Bunny Parking\", \"zh-Hant\": \"Bunny Parking\", \"sv-SE\": \"Bunny Parking\", \"da-DK\": \"Bunny Parking\", \"tr-TR\": \"Bunny Parking\", \"fr-FR\": \"Bunny Parking\", \"en-GB\": \"Bunny Parking\", \"es-419\": \"Bunny Parking\", \"ja-JP\": \"Bunny Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/0DfeqTRGjq9upppOQQddJSAh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/AKEB4d8tey8k1N7TPljKzktO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/wYAtKoHcy9SRpHClrIEeahVQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/tLNvpyryS40TkJabY3ZCvQN9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1709/kUZNjLbA9o1qgYtlNNYNXk8g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/YRJEzTkSln4oD6Eh0K7AqgNe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/f9b7351875f1ad4cea9d948a4ba1cd7b51ac2a3b3537a809.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/961e740154733cba4dc582f1d4aff3a3bd04796779549bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/ad84ff539787dabf573ea82431d22a986e2a9f2eed90fd5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e936bbe24b80ad5e9eea3bf28b150677da6815bbdac25d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/5f7390c09966afb10aa91199be0c9a95955eacc18b7aa980.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/6961f9fc9f7b2fb5fb1f9d0019c74d3545d2e5471f4cfb00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/143168c3ee4048cc90e4d6aa6e273cf8fa6f74c56fb903fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1413/e1d4bfb31506e792eff16d7f7cf49963a912d6abb2b49b72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0520/rx9D05JQtAEKWoeHNK3LHzTC.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T13:24:42.360000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:33:03.790000Z\", \"playDuration\": \"PT4H30M19S\"}, {\"titleId\": \"PPSA15835_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T12:06:31.110000Z\", \"lastPlayedDateTime\": \"2023-08-06T13:28:34.780000Z\", \"playDuration\": \"PT1H20M1S\"}, {\"titleId\": \"PPSA16675_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T11:38:34.000000Z\", \"lastPlayedDateTime\": \"2023-08-06T12:06:05.070000Z\", \"playDuration\": \"PT25M17S\"}, {\"titleId\": \"CUSA43596_00\", \"name\": \"The Helper\", \"localizedName\": \"The Helper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008465, \"titleIds\": [\"PPSA16674_00\", \"PPSA16675_00\", \"CUSA45918_00\", \"CUSA45917_00\", \"CUSA43596_00\", \"CUSA43595_00\"], \"name\": \"The Helper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Helper\", \"uk-UA\": \"The Helper\", \"de-DE\": \"The Helper\", \"en-US\": \"The Helper\", \"ko-KR\": \"The Helper\", \"pt-BR\": \"The Helper\", \"es-ES\": \"The Helper\", \"ar-AE\": \"The Helper\", \"no-NO\": \"The Helper\", \"fr-CA\": \"The Helper\", \"it-IT\": \"The Helper\", \"pl-PL\": \"The Helper\", \"ru-RU\": \"The Helper\", \"zh-Hans\": \"The Helper\", \"nl-NL\": \"The Helper\", \"pt-PT\": \"The Helper\", \"zh-Hant\": \"The Helper\", \"sv-SE\": \"The Helper\", \"da-DK\": \"The Helper\", \"tr-TR\": \"The Helper\", \"fr-FR\": \"The Helper\", \"en-GB\": \"The Helper\", \"es-419\": \"The Helper\", \"ja-JP\": \"The Helper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b9b16c2ad6852ff760147b4c2bfa52b54b2b35f167f80b63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/f0299f32c8cb432cbaec27ac82723604691ea5aedf42789d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/566143fc7288bff03dabe3607cd3105b5f6ac67165d8cc69.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1203/b80a130331d4d08f30ce877a7b285405708c91b0c03d3471.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/2705/0801c49befc6b2d4c86a56b568a8b7aa74c26a7663b79467.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0521/d4705ba57376be96b5fa6609fc6671459cbf8b4e0800b884.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/c14bdc5db2665dfadf55c5c3729d58dee8851ebd074dce56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/df192ab5dfcec603723134e12512117cef8b7c1d16122f32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/ad7381b830613e669a4d540a161241d2ae55ba745073b258.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/6d3961e76fab8938b30629852073522374fcc8d66df121a5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0522/7fd4ebb7b49e2c204d889cdeab4620e8cacb4aad844b3ef7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3004/037c15ebb1c01fd4650431064ed8ced4d4b217aca86fc827.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-06T10:24:27.240000Z\", \"lastPlayedDateTime\": \"2023-08-06T11:38:31.110000Z\", \"playDuration\": \"PT43M48S\"}, {\"titleId\": \"PPSA12590_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:53:45.260000Z\", \"lastPlayedDateTime\": \"2023-08-06T06:12:15.750000Z\", \"playDuration\": \"PT10M56S\"}, {\"titleId\": \"PPSA12589_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:49:03.000000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:53:43.010000Z\", \"playDuration\": \"PT4M24S\"}, {\"titleId\": \"CUSA39547_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:43:55.540000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:48:30.530000Z\", \"playDuration\": \"PT4M28S\"}, {\"titleId\": \"CUSA39546_00\", \"name\": \"Try to Fit\", \"localizedName\": \"Try to Fit\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006945, \"titleIds\": [\"CUSA39544_00\", \"PPSA12588_00\", \"PPSA12589_00\", \"PPSA12590_00\", \"PPSA12587_00\", \"CUSA39547_00\", \"CUSA39546_00\", \"CUSA39545_00\"], \"name\": \"Try to Fit\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Try to Fit\", \"uk-UA\": \"Try to Fit\", \"de-DE\": \"Try to Fit\", \"en-US\": \"Try to Fit\", \"ko-KR\": \"Try to Fit\", \"pt-BR\": \"Try to Fit\", \"es-ES\": \"Try to Fit\", \"ar-AE\": \"Try to Fit\", \"no-NO\": \"Try to Fit\", \"fr-CA\": \"Try to Fit\", \"it-IT\": \"Try to Fit\", \"pl-PL\": \"Try to Fit\", \"ru-RU\": \"Try to Fit\", \"zh-Hans\": \"Try to Fit\", \"nl-NL\": \"Try to Fit\", \"pt-PT\": \"Try to Fit\", \"zh-Hant\": \"Try to Fit\", \"sv-SE\": \"Try to Fit\", \"da-DK\": \"Try to Fit\", \"tr-TR\": \"Try to Fit\", \"fr-FR\": \"Try to Fit\", \"en-GB\": \"Try to Fit\", \"es-419\": \"Try to Fit\", \"ja-JP\": \"Try to Fit\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/QH7HPdtSCEP6eJdxjes6bfaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/Tl0LpJmOA319l2vEa7QY9vhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/XVfSHbKRI0U2T4IA9TgNcGG9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/ngAsk8SJ2M3PXstgZ9zijuOj.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/0RsZSuFPdadTPYOTxtg1bW0j.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/un4lnev82pbwmQuMweHAu8mX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/ffd7729e45098ecaafa451094b7f0c99a76ee95979b7fe5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/7dd37b251856b0dac304d5642aa50df3c77d360df1957525.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/03ea1dfede361418e92ab28ea086cd458144db04552ae58d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/06c0018e7715235c486e62dc1c168ba750c0dfd7d81bb38d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/5d97fbf2dbf40f2432a94c585d5f6c3de38a4ba29c53d02c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/1a4b98bf0e57ddde10d004013056959aea7fd26172e928a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1312/SBEZDWOVhRcjG2oFdos2UyMa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-05T14:40:02.490000Z\", \"lastPlayedDateTime\": \"2023-08-05T14:43:53.530000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"PPSA14682_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:55:29.610000Z\", \"lastPlayedDateTime\": \"2023-08-02T12:02:15.530000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14683_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:50:21.950000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:55:27.540000Z\", \"playDuration\": \"PT4M46S\"}, {\"titleId\": \"CUSA41691_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:43:25.470000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:50:19.900000Z\", \"playDuration\": \"PT4M25S\"}, {\"titleId\": \"CUSA41690_00\", \"name\": \"Working Hard Collection\", \"localizedName\": \"Working Hard Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007744, \"titleIds\": [\"CUSA41691_00\", \"CUSA41690_00\", \"PPSA14683_00\", \"PPSA14682_00\"], \"name\": \"Working Hard Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"PUZZLE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Working Hard Collection\", \"uk-UA\": \"Working Hard Collection\", \"de-DE\": \"Working Hard Collection\", \"en-US\": \"Working Hard Collection\", \"pt-BR\": \"Working Hard Collection\", \"es-ES\": \"Working Hard Collection\", \"ar-AE\": \"Working Hard Collection\", \"no-NO\": \"Working Hard Collection\", \"fr-CA\": \"Working Hard Collection\", \"it-IT\": \"Working Hard Collection\", \"pl-PL\": \"Working Hard Collection\", \"ru-RU\": \"Working Hard Collection\", \"nl-NL\": \"Working Hard Collection\", \"pt-PT\": \"Working Hard Collection\", \"sv-SE\": \"Working Hard Collection\", \"da-DK\": \"Working Hard Collection\", \"tr-TR\": \"Working Hard Collection\", \"fr-FR\": \"Working Hard Collection\", \"en-GB\": \"Working Hard Collection\", \"es-419\": \"Working Hard Collection\", \"ja-JP\": \"\\u30ef\\u30fc\\u30ad\\u30f3\\u30b0\\u30fb\\u30cf\\u30fc\\u30c9\\u30fb\\u30b3\\u30ec\\u30af\\u30b7\\u30e7\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ded3d781a5c717b74b764bd9e15ea9069335ccb97d584ce6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/2c65bc3e13153e2222c07a1c42fa9016577ecf537e475e08.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/3430f160f718ea14aa5793b9fa34d379e86ffdcffd851014.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/7bccc75ded0bc5cc689844c910cc4943c4ef60b1794bcdc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/e7bf8c8251334473d2040c1dec485b791fe9ff523a24cc55.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/474e73827c723c4446a6cea7f5f51551813b8476439fa84c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/fb5c046a795c92f9f18ff82920b22438450a522345df8463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/efefc77d1b8d57f84406b311c159c509daad5caac280c28d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/abde610a934444fc2f5c8f1be34c470002aaaff8df372a3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/ed3122c185661f6557dd1394abe24fd39d13080c01ae20be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/69e41b7328d048f73885d9488328423c2137412a3d56c0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/185a376ca6894fb1bcf4cfd94767d401897b360fca80f1a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0615/4d9716211f5cec009e0b755096cd75aadf835fe9e5f5faec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T11:35:16.660000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:43:23.270000Z\", \"playDuration\": \"PT7M51S\"}, {\"titleId\": \"PPSA15834_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-02T07:11:49.530000Z\", \"lastPlayedDateTime\": \"2023-08-02T11:30:35.920000Z\", \"playDuration\": \"PT1H2S\"}, {\"titleId\": \"CUSA42787_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 9, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-08-01T11:19:37.890000Z\", \"lastPlayedDateTime\": \"2023-08-01T14:49:39.370000Z\", \"playDuration\": \"PT1H21M11S\"}, {\"titleId\": \"CUSA42786_00\", \"name\": \"REPLIKATOR\", \"localizedName\": \"REPLIKATOR\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 16, \"concept\": {\"id\": 10008149, \"titleIds\": [\"PPSA15835_00\", \"CUSA42786_00\", \"CUSA42787_00\", \"PPSA15834_00\"], \"name\": \"REPLIKATOR\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"REPLIKATOR\", \"uk-UA\": \"REPLIKATOR\", \"de-DE\": \"REPLIKATOR\", \"en-US\": \"REPLIKATOR\", \"pt-BR\": \"REPLIKATOR\", \"es-ES\": \"REPLIKATOR\", \"ar-AE\": \"REPLIKATOR\", \"no-NO\": \"REPLIKATOR\", \"fr-CA\": \"REPLIKATOR\", \"it-IT\": \"REPLIKATOR\", \"pl-PL\": \"REPLIKATOR\", \"ru-RU\": \"REPLIKATOR\", \"nl-NL\": \"REPLIKATOR\", \"pt-PT\": \"REPLIKATOR\", \"sv-SE\": \"REPLIKATOR\", \"da-DK\": \"REPLIKATOR\", \"tr-TR\": \"REPLIKATOR\", \"fr-FR\": \"REPLIKATOR\", \"en-GB\": \"REPLIKATOR\", \"es-419\": \"REPLIKATOR\", \"ja-JP\": \"REPLIKATOR\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/20655274768837c1845bca4a178535268606ae96a249eba9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/87144cc618c4c98f50d36f1c144485bbfa1b9608beabeafa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/476ffac14f3a91ce6fa8a6a2387b9a1a04c7aa7bb369a478.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/a85d10b7b1474a462c2c6b3860fe8c1e3870aea1ef4d4cd9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/96f835e5ad84cff4c1115d62eac86dec2c67328d1f8c826b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1b5eeebe78298372a266557564bc73b7e283e04b6fe42371.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/4a2983338255b2f9052465628574c99fcb7951cf3c0234da.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/b5cd1e6dd0640b28e95749d7b2ce17babd48f1a86817becc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/5ece996598a0c4388a40f18e9c2bce92b809b0139e749c33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/9c8a8a689aa0673ab4da27ff9cf85e06572d84187481df9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/1386c20884d450db7f15a2f41ce100575f80113d71f94ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/297bd6b9bf88c14e899f014fb48f3596b50431cf1b4e820e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2811/3bd6b99ac11a01988ffc388430e72f9b73f8dc52c964658b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T11:45:35.030000Z\", \"lastPlayedDateTime\": \"2023-07-31T14:13:34.360000Z\", \"playDuration\": \"PT2H11M27S\"}, {\"titleId\": \"CUSA36408_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T02:50:13.870000Z\", \"lastPlayedDateTime\": \"2023-07-31T06:06:21.410000Z\", \"playDuration\": \"PT2H6M27S\"}, {\"titleId\": \"CUSA37213_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-31T00:10:27.140000Z\", \"lastPlayedDateTime\": \"2023-07-31T02:50:10.430000Z\", \"playDuration\": \"PT2H27M20S\"}, {\"titleId\": \"CUSA36406_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-30T11:35:56.350000Z\", \"lastPlayedDateTime\": \"2023-07-30T14:54:37.180000Z\", \"playDuration\": \"PT3H13M45S\"}, {\"titleId\": \"CUSA36407_00\", \"name\": \"Portal Dungeon: Goblin Escape\", \"localizedName\": \"Portal Dungeon: Goblin Escape\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006058, \"titleIds\": [\"CUSA37213_00\", \"CUSA36407_00\", \"CUSA36408_00\", \"CUSA36406_00\"], \"name\": \"Portal Dungeon: Goblin Escape\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Portal Dungeon: Goblin Escape\", \"uk-UA\": \"Portal Dungeon: Goblin Escape\", \"de-DE\": \"Portal Dungeon: Goblin Escape\", \"en-US\": \"Portal Dungeon: Goblin Escape\", \"ko-KR\": \"Portal Dungeon: Goblin Escape\", \"pt-BR\": \"Portal Dungeon: Goblin Escape\", \"es-ES\": \"Portal Dungeon: Goblin Escape\", \"ar-AE\": \"Portal Dungeon: Goblin Escape\", \"no-NO\": \"Portal Dungeon: Goblin Escape\", \"fr-CA\": \"Portal Dungeon: Goblin Escape\", \"it-IT\": \"Portal Dungeon: Goblin Escape\", \"pl-PL\": \"Portal Dungeon: Goblin Escape\", \"ru-RU\": \"Portal Dungeon: Goblin Escape\", \"zh-Hans\": \"Portal Dungeon: Goblin Escape\", \"nl-NL\": \"Portal Dungeon: Goblin Escape\", \"pt-PT\": \"Portal Dungeon: Goblin Escape\", \"zh-Hant\": \"Portal Dungeon: Goblin Escape\", \"sv-SE\": \"Portal Dungeon: Goblin Escape\", \"da-DK\": \"Portal Dungeon: Goblin Escape\", \"tr-TR\": \"Portal Dungeon: Goblin Escape\", \"fr-FR\": \"Portal Dungeon: Goblin Escape\", \"en-GB\": \"Portal Dungeon: Goblin Escape\", \"es-419\": \"Portal Dungeon: Goblin Escape\", \"ja-JP\": \"Portal Dungeon: Goblin Escape\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/eFQrjcCSoH8AP1WQCDHHTHD8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/OziDpyBR7rfVw0GBVpg54u2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/R25g7KpvDd56I6WeyqEfYJDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/1cLxHg0awlcRmtFstKunZY15.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/DXMdW2SW7a5plA5givcwu4bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/hrIxgkeVZ483ayKzHLwXgmVb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/l7TKPJNhqxFKYbLdTqgxbmmV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/ZeTKoCZExm7wnGWwvChhO8J3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Vc48lJxLJQsV7rwjdgnfoxbO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/2BYpWyUCw3KoHLvbgzek0PxH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/Tvy8DEYq8P8btdBpBb5WFa7k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1414/pzWuzDbvSS4Ln63KDjHrg4TD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T11:18:20.110000Z\", \"lastPlayedDateTime\": \"2023-07-29T14:19:50.230000Z\", \"playDuration\": \"PT2H57M32S\"}, {\"titleId\": \"PPSA10327_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T06:20:40.140000Z\", \"lastPlayedDateTime\": \"2023-07-29T08:26:12.730000Z\", \"playDuration\": \"PT2H5M28S\"}, {\"titleId\": \"PPSA17417_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:45:28.370000Z\", \"lastPlayedDateTime\": \"2023-07-29T06:13:12.840000Z\", \"playDuration\": \"PT24M59S\"}, {\"titleId\": \"PPSA17416_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T05:17:18.550000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:45:25.690000Z\", \"playDuration\": \"PT21M14S\"}, {\"titleId\": \"CUSA44226_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:44:47.940000Z\", \"lastPlayedDateTime\": \"2023-07-29T05:16:39.230000Z\", \"playDuration\": \"PT26M49S\"}, {\"titleId\": \"CUSA44225_00\", \"name\": \"Shadow Samurai Revenge\", \"localizedName\": \"Shadow Samurai Revenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008786, \"titleIds\": [\"CUSA44225_00\", \"CUSA44226_00\", \"PPSA17417_00\", \"PPSA17416_00\"], \"name\": \"Shadow Samurai Revenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Shadow Samurai Revenge\", \"uk-UA\": \"Shadow Samurai Revenge\", \"de-DE\": \"Shadow Samurai Revenge\", \"en-US\": \"Shadow Samurai Revenge\", \"ko-KR\": \"Shadow Samurai Revenge\", \"pt-BR\": \"Shadow Samurai Revenge\", \"es-ES\": \"Shadow Samurai Revenge\", \"ar-AE\": \"Shadow Samurai Revenge\", \"no-NO\": \"Shadow Samurai Revenge\", \"fr-CA\": \"Shadow Samurai Revenge\", \"it-IT\": \"Shadow Samurai Revenge\", \"pl-PL\": \"Shadow Samurai Revenge\", \"ru-RU\": \"Shadow Samurai Revenge\", \"zh-Hans\": \"Shadow Samurai Revenge\", \"nl-NL\": \"Shadow Samurai Revenge\", \"pt-PT\": \"Shadow Samurai Revenge\", \"zh-Hant\": \"Shadow Samurai Revenge\", \"sv-SE\": \"Shadow Samurai Revenge\", \"da-DK\": \"Shadow Samurai Revenge\", \"tr-TR\": \"Shadow Samurai Revenge\", \"fr-FR\": \"Shadow Samurai Revenge\", \"en-GB\": \"Shadow Samurai Revenge\", \"es-419\": \"Shadow Samurai Revenge\", \"ja-JP\": \"Shadow Samurai Revenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/6ea51637e6f9a7a07b7573768aefa605acabf781710954b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/75e03337a52310157e0c905ddc38d7e4bbf05129b90bd7c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/a717b5f29586db19ca1c28c0ae8989679e1792be9d832882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/62ba5002cc9b438a53ba896d58d7e04c1b1f09101056a70a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/3fc1ceb30d534a70a0cfa1f0d4b0572eba77da4ebe1adaae.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/f4e7c04c8a0aac40e6cfa2477fa74acacd32c13d5ba7d56e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/e442583e474b7e59a46edf9c40c615adf96898090eaef5dc.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/718e48244d130862d899451ceb886ab46084f4ef4f3b79e4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/9107d40083ce9015d280d5c5614bd7bfa19bd7507e85c0b5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1114/8fc180a3315f2f3d03764724b93c01bea9d0faea7ee740bd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T04:03:20.540000Z\", \"lastPlayedDateTime\": \"2023-07-29T04:44:45.540000Z\", \"playDuration\": \"PT34M27S\"}, {\"titleId\": \"PPSA13337_00\", \"name\": \"on Sunday\", \"localizedName\": \"on Sunday\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005659, \"titleIds\": [\"CUSA35270_00\", \"PPSA18061_00\", \"CUSA35286_00\", \"PPSA09029_00\", \"CUSA39385_00\", \"CUSA35288_00\", \"PPSA13337_00\", \"CUSA49192_00\"], \"name\": \"on Sunday\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"on Sunday\", \"uk-UA\": \"on Sunday\", \"de-DE\": \"on Sunday\", \"en-US\": \"on Sunday\", \"ko-KR\": \"on Sunday\", \"pt-BR\": \"on Sunday\", \"es-ES\": \"on Sunday\", \"ar-AE\": \"on Sunday\", \"no-NO\": \"on Sunday\", \"fr-CA\": \"on Sunday\", \"it-IT\": \"on Sunday\", \"pl-PL\": \"on Sunday\", \"ru-RU\": \"on Sunday\", \"zh-Hans\": \"on Sunday\", \"nl-NL\": \"on Sunday\", \"pt-PT\": \"on Sunday\", \"zh-Hant\": \"on Sunday\", \"sv-SE\": \"on Sunday\", \"da-DK\": \"on Sunday\", \"tr-TR\": \"on Sunday\", \"fr-FR\": \"on Sunday\", \"en-GB\": \"on Sunday\", \"es-419\": \"on Sunday\", \"ja-JP\": \"on Sunday\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/dFRPHAUd1fhIec7pu4MxVaEc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/TUYPSa7s9pKwY30iZxGDOG7z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1221/sRAww4oagUrdJGvVAAFqAHLh.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1220/xNw2VFVdPwcOoCanVDiJdF4Z.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2423/oGWmrPqZpKV1Oj4BUmDQlTr1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:42:34.800000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:48:29.640000Z\", \"playDuration\": \"PT5M30S\"}, {\"titleId\": \"CUSA44641_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:40:16.880000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:42:23.990000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA44642_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:35:19.290000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:40:15.010000Z\", \"playDuration\": \"PT4M17S\"}, {\"titleId\": \"CUSA44647_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:32:59.350000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:35:05.970000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA44648_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:29:48.530000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:32:57.480000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44645_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:06:54.330000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:29:37.630000Z\", \"playDuration\": \"PT22M35S\"}, {\"titleId\": \"CUSA44646_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:03:38.620000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:06:52.430000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"CUSA44643_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T03:00:51.100000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:03:07.590000Z\", \"playDuration\": \"PT2M10S\"}, {\"titleId\": \"CUSA44644_00\", \"name\": \"Run To Infinity\", \"localizedName\": \"Run To Infinity\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006962, \"titleIds\": [\"CUSA39614_00\", \"CUSA39616_00\", \"CUSA39615_00\", \"CUSA39608_00\", \"CUSA39617_00\", \"CUSA39606_00\", \"CUSA39607_00\", \"CUSA39605_00\", \"CUSA44642_00\", \"CUSA44645_00\", \"CUSA44643_00\", \"CUSA44644_00\", \"CUSA44641_00\", \"CUSA44646_00\", \"CUSA44647_00\", \"CUSA44648_00\"], \"name\": \"Run To Infinity\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Run To Infinity\", \"uk-UA\": \"Run To Infinity\", \"de-DE\": \"Der Unendliche Lauf\", \"en-US\": \"Run To Infinity\", \"ko-KR\": \"Run To Infinity\", \"pt-BR\": \"Run To Infinity\", \"es-ES\": \"Run To Infinity\", \"ar-AE\": \"Run To Infinity\", \"no-NO\": \"Run To Infinity\", \"fr-CA\": \"Run To Infinity\", \"it-IT\": \"Run To Infinity\", \"pl-PL\": \"Run To Infinity\", \"ru-RU\": \"Run To Infinity\", \"zh-Hans\": \"Run To Infinity\", \"nl-NL\": \"Run To Infinity\", \"pt-PT\": \"Run To Infinity\", \"zh-Hant\": \"Run To Infinity\", \"sv-SE\": \"Run To Infinity\", \"da-DK\": \"Run To Infinity\", \"tr-TR\": \"Run To Infinity\", \"fr-FR\": \"Run To Infinity\", \"en-GB\": \"Run To Infinity\", \"es-419\": \"Run To Infinity\", \"ja-JP\": \"Run To Infinity\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/JSiE5q1os8tstSD4JA9gmTUg.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/sqC5WUUXLKs6TAVXpMA5h7xl.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/E5vJEf6JsiSuZhVKodX63P6K.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/GYAhLEPzEtdmXwysrxjwEbtr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/QfYJKasbEHa2wYmeFWOt9WOs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/Vv4FOkSpOFnZz7PbH2x5LHKA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/fpOQf5duP66uR81W47mSnGbN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2517/ihjno3Kmn8nIoF7Z8ujvoUlX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:57:42.610000Z\", \"lastPlayedDateTime\": \"2023-07-29T03:00:48.890000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"CUSA44651_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:53:10.320000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:55:08.280000Z\", \"playDuration\": \"PT1M4S\"}, {\"titleId\": \"CUSA44650_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:50:26.310000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:53:07.920000Z\", \"playDuration\": \"PT1M16S\"}, {\"titleId\": \"CUSA44649_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:47:29.860000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:50:24.220000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA44652_00\", \"name\": \"Scavenger Hunt: Italy\", \"localizedName\": \"Scavenger Hunt: Italy\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008987, \"titleIds\": [\"CUSA44649_00\", \"CUSA44650_00\", \"CUSA44651_00\", \"CUSA44652_00\"], \"name\": \"Scavenger Hunt: Italy\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Italy\", \"uk-UA\": \"Scavenger Hunt: Italy\", \"de-DE\": \"Schnitzeljagd: Italien\", \"en-US\": \"Scavenger Hunt: Italy\", \"ko-KR\": \"Scavenger Hunt: Italy\", \"pt-BR\": \"Scavenger Hunt: Italy\", \"es-ES\": \"Scavenger Hunt: Italy\", \"ar-AE\": \"Scavenger Hunt: Italy\", \"no-NO\": \"Scavenger Hunt: Italy\", \"fr-CA\": \"Scavenger Hunt: Italy\", \"it-IT\": \"Scavenger Hunt: Italy\", \"pl-PL\": \"Scavenger Hunt: Italy\", \"ru-RU\": \"Scavenger Hunt: Italy\", \"zh-Hans\": \"Scavenger Hunt: Italy\", \"nl-NL\": \"Scavenger Hunt: Italy\", \"pt-PT\": \"Scavenger Hunt: Italy\", \"zh-Hant\": \"Scavenger Hunt: Italy\", \"sv-SE\": \"Scavenger Hunt: Italy\", \"da-DK\": \"Scavenger Hunt: Italy\", \"tr-TR\": \"Scavenger Hunt: Italy\", \"fr-FR\": \"Scavenger Hunt: Italy\", \"en-GB\": \"Scavenger Hunt: Italy\", \"es-419\": \"Scavenger Hunt: Italy\", \"ja-JP\": \"Scavenger Hunt: Italy\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/4b21d8f93bec6706efd194c64acc6e36a2adacff2b2e5d32.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/7554305aed5ad2fb74feb1cb2633faee2291da952c51e491.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/f5ab621e9317e2f46fe2b9556d754d14b68f6cc3ec4061c0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/51cd40252455ac2a1a43a2cf90d8a24e02de31c60c0c5bb6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/2f0e0ae1f95d3e6cd4c41a952661a29a6b71df5084e3d361.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/d97d0807fc687422e688623fa6cf70c572fcf6a8e46ef7d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0919/c026814c33171deda8c310c1c52bb6cd165e3037432705e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-29T02:43:42.390000Z\", \"lastPlayedDateTime\": \"2023-07-29T02:47:27.710000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA36906_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T07:12:22.210000Z\", \"lastPlayedDateTime\": \"2023-07-28T15:19:44.130000Z\", \"playDuration\": \"PT1H43M32S\"}, {\"titleId\": \"PPSA17877_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:43:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T14:08:41.130000Z\", \"playDuration\": \"PT20M42S\"}, {\"titleId\": \"PPSA17876_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T13:14:58.560000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:43:00.810000Z\", \"playDuration\": \"PT21M57S\"}, {\"titleId\": \"PPSA17875_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:48:09.920000Z\", \"lastPlayedDateTime\": \"2023-07-28T13:14:55.290000Z\", \"playDuration\": \"PT25M3S\"}, {\"titleId\": \"PPSA17878_00\", \"name\": \"Cubic Lines\", \"localizedName\": \"Cubic Lines\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005164, \"titleIds\": [\"PPSA17876_00\", \"CUSA33914_00\", \"CUSA33915_00\", \"CUSA33916_00\", \"CUSA37274_00\", \"PPSA17875_00\", \"PPSA17877_00\", \"PPSA17878_00\"], \"name\": \"Cubic Lines\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Lines\", \"uk-UA\": \"Cubic Lines\", \"de-DE\": \"Cubic Lines\", \"en-US\": \"Cubic Lines\", \"ko-KR\": \"Cubic Lines\", \"pt-BR\": \"Cubic Lines\", \"es-ES\": \"Cubic Lines\", \"ar-AE\": \"Cubic Lines\", \"no-NO\": \"Cubic Lines\", \"fr-CA\": \"Cubic Lines\", \"it-IT\": \"Cubic Lines\", \"pl-PL\": \"Cubic Lines\", \"ru-RU\": \"Cubic Lines\", \"zh-Hans\": \"Cubic Lines\", \"nl-NL\": \"Cubic Lines\", \"pt-PT\": \"Cubic Lines\", \"zh-Hant\": \"Cubic Lines\", \"sv-SE\": \"Cubic Lines\", \"da-DK\": \"Cubic Lines\", \"tr-TR\": \"Cubic Lines\", \"fr-FR\": \"Cubic Lines\", \"en-GB\": \"Cubic Lines\", \"es-419\": \"Cubic Lines\", \"ja-JP\": \"Cubic Lines\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0616/5Eh12EsFLi20nnzK8oenvyR4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/zFmhzaVpffBk81PYUAijy3JN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/tFE4Kii7EjLmt17ZdM5t1lqk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/AYVzWrb24VNKVzbEpFitWnio.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/N3ZaqxKI8yKAm85rxePpFMQV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/hEqaYCZ18w1ojiJT5sSTdjgW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0522/NeZ04DiYdq7lU4euFUSkh36t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0415/0sv0w6DPZ17mveiuQH9eZk3U.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:20:00.820000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:45:33.140000Z\", \"playDuration\": \"PT23M55S\"}, {\"titleId\": \"PPSA17482_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T12:10:22.340000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:16:27.140000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"PPSA17481_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:59:14.380000Z\", \"lastPlayedDateTime\": \"2023-07-28T12:10:19.320000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17480_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:49:38.140000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:58:53.660000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"PPSA17483_00\", \"name\": \"Cubic Parking\", \"localizedName\": \"Cubic Parking\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006400, \"titleIds\": [\"CUSA37608_00\", \"PPSA17482_00\", \"CUSA37609_00\", \"PPSA17483_00\", \"CUSA37607_00\", \"PPSA17481_00\", \"CUSA37606_00\", \"PPSA17480_00\"], \"name\": \"Cubic Parking\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Parking\", \"uk-UA\": \"Cubic Parking\", \"de-DE\": \"Cubic Parking\", \"en-US\": \"Cubic Parking\", \"ko-KR\": \"Cubic Parking\", \"pt-BR\": \"Cubic Parking\", \"es-ES\": \"Cubic Parking\", \"ar-AE\": \"Cubic Parking\", \"no-NO\": \"Cubic Parking\", \"fr-CA\": \"Cubic Parking\", \"it-IT\": \"Cubic Parking\", \"pl-PL\": \"Cubic Parking\", \"ru-RU\": \"Cubic Parking\", \"zh-Hans\": \"Cubic Parking\", \"nl-NL\": \"Cubic Parking\", \"pt-PT\": \"Cubic Parking\", \"zh-Hant\": \"Cubic Parking\", \"sv-SE\": \"Cubic Parking\", \"da-DK\": \"Cubic Parking\", \"tr-TR\": \"Cubic Parking\", \"fr-FR\": \"Cubic Parking\", \"en-GB\": \"Cubic Parking\", \"es-419\": \"Cubic Parking\", \"ja-JP\": \"Cubic Parking\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/rnKPgiGv48IW5WM9SyJ2ooO5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/SMFzfsh42rn3ZIx3L0ajFen0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/IOMs3NlGthoJngWxYHlBu1Jj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/aBWatcb0IE7uBVJL1jNxbGzP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/g4Csf2NWVot4oe9vURchDBu2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/qd1gkFrCPha96pOlh7nSQK33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/mD4tGN4NSUL0B1dYO3PLGeIq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/jxdpzIBRAhd4UAaPdr7Z9Upn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/QoBMswf4AMG4KAwA2CXQEwbs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/HBcvEvu3CNdA0CXoOj8cyX2A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/R8jHjew7zUWkh7cM1Nl1SSRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1419/kfVJB2WX7xnpHiJwxZSqRoYD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:37:52.470000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:49:35.200000Z\", \"playDuration\": \"PT10M14S\"}, {\"titleId\": \"PPSA12604_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:15:19.390000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:20:07.690000Z\", \"playDuration\": \"PT4M44S\"}, {\"titleId\": \"PPSA12603_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:08:43.000000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:15:17.330000Z\", \"playDuration\": \"PT5M45S\"}, {\"titleId\": \"CUSA39561_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T11:02:29.800000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:08:41.890000Z\", \"playDuration\": \"PT5M33S\"}, {\"titleId\": \"CUSA39560_00\", \"name\": \"Meteor Crusher\", \"localizedName\": \"Meteor Crusher\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006949, \"titleIds\": [\"PPSA12606_00\", \"PPSA12605_00\", \"CUSA39562_00\", \"PPSA12603_00\", \"CUSA39560_00\", \"CUSA39561_00\", \"PPSA12604_00\", \"CUSA39563_00\"], \"name\": \"Meteor Crusher\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meteor Crusher\", \"uk-UA\": \"Meteor Crusher\", \"de-DE\": \"Meteor Crusher\", \"en-US\": \"Meteor Crusher\", \"ko-KR\": \"Meteor Crusher\", \"pt-BR\": \"Meteor Crusher\", \"es-ES\": \"Meteor Crusher\", \"ar-AE\": \"Meteor Crusher\", \"no-NO\": \"Meteor Crusher\", \"fr-CA\": \"Meteor Crusher\", \"it-IT\": \"Meteor Crusher\", \"pl-PL\": \"Meteor Crusher\", \"ru-RU\": \"Meteor Crusher\", \"zh-Hans\": \"Meteor Crusher\", \"nl-NL\": \"Meteor Crusher\", \"pt-PT\": \"Meteor Crusher\", \"zh-Hant\": \"Meteor Crusher\", \"sv-SE\": \"Meteor Crusher\", \"da-DK\": \"Meteor Crusher\", \"tr-TR\": \"Meteor Crusher\", \"fr-FR\": \"Meteor Crusher\", \"en-GB\": \"Meteor Crusher\", \"es-419\": \"Meteor Crusher\", \"ja-JP\": \"Meteor Crusher\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/pTsAVGonqKlDF2IEmeFoPEJO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/0SBPMvN7zxnAjXjL4eS1N16I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/5US8r759K4M1s7ZJN8Qw3KCu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Le7S27ngAzg799idrfo52Euq.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/GPUvE0kV32g84ffO8Iphaagu.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/BT6HB3kvCfPwqFYf02VmX1h9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/80841a679a1f52fcc7adf582c736ec5fec63d970a27a498f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/91c68c631a7851aeb9a106e292a01fe828e3e9e924394d37.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/9ece80e87bf1a53d562e708a04201f832e57fbf59e2ec4c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4deaf81bbe2390f5f7d27a087c06933574c79c831e565719.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/dfaaaa74a731735469ef660de13933d93ba3201242cce194.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2019/Vzh6fnRFijf2P2k7QhsuN7WY.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:54:33.960000Z\", \"lastPlayedDateTime\": \"2023-07-28T11:02:27.820000Z\", \"playDuration\": \"PT5M25S\"}, {\"titleId\": \"PPSA17413_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T10:36:12.510000Z\", \"lastPlayedDateTime\": \"2023-07-28T10:52:47.830000Z\", \"playDuration\": \"PT16M27S\"}, {\"titleId\": \"PPSA16327_00\", \"name\": \"Frightence\", \"localizedName\": \"Frightence\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004239, \"titleIds\": [\"CUSA31599_00\", \"CUSA31600_00\", \"PPSA16326_00\", \"PPSA16327_00\"], \"name\": \"Frightence\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Frightence\", \"uk-UA\": \"Frightence\", \"de-DE\": \"Frightence\", \"en-US\": \"Frightence\", \"ko-KR\": \"Frightence\", \"pt-BR\": \"Frightence\", \"es-ES\": \"Frightence\", \"ar-AE\": \"Frightence\", \"no-NO\": \"Frightence\", \"fr-CA\": \"Frightence\", \"it-IT\": \"Frightence\", \"pl-PL\": \"Frightence\", \"ru-RU\": \"Frightence\", \"zh-Hans\": \"Frightence\", \"nl-NL\": \"Frightence\", \"pt-PT\": \"Frightence\", \"zh-Hant\": \"Frightence\", \"sv-SE\": \"Frightence\", \"da-DK\": \"Frightence\", \"tr-TR\": \"Frightence\", \"fr-FR\": \"Frightence\", \"en-GB\": \"Frightence\", \"es-419\": \"Frightence\", \"ja-JP\": \"Frightence\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/GcU5l0XfKGS3W0aSUIPTfu9Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0g0iDZLvqtHf3wweYA5hVG7b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/zM6Qxs0e50dgaXECTznaSwKb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/OhaFBLaP80Lhpg3oB3IooAw6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/HmA36BDyBNy5MrDyTOAG3ZUX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/yimBMMvtK1oFs4MZp1hQ1ggK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/VXUM12ySV85Ok0zqzfWew6H8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/EuJcWvhNV2rgSkc5mamOE6PL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ZckRPo5YfKHeFGwSdoA4SNIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/0MplpRgU3gNtC3gcrDefnJ5R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/ftSV92PnJHqATAV9I6SwLaSa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1410/Rn0DuIAWh9GLsGLiLGzj0cl3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:51:47.870000Z\", \"lastPlayedDateTime\": \"2023-07-28T09:09:30.480000Z\", \"playDuration\": \"PT17M28S\"}, {\"titleId\": \"PPSA17412_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T08:22:15.300000Z\", \"lastPlayedDateTime\": \"2023-07-28T08:33:27.790000Z\", \"playDuration\": \"PT10M21S\"}, {\"titleId\": \"PPSA10328_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T04:31:46.780000Z\", \"lastPlayedDateTime\": \"2023-07-28T07:10:55.560000Z\", \"playDuration\": \"PT1H20M55S\"}, {\"titleId\": \"PPSA10330_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-28T01:38:09.830000Z\", \"lastPlayedDateTime\": \"2023-07-28T04:25:11.820000Z\", \"playDuration\": \"PT2H18M57S\"}, {\"titleId\": \"CUSA36905_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T14:01:02.960000Z\", \"lastPlayedDateTime\": \"2023-07-27T15:29:50.520000Z\", \"playDuration\": \"PT1H27M55S\"}, {\"titleId\": \"CUSA36908_00\", \"name\": \"Swordbreaker: Origins\", \"localizedName\": \"Swordbreaker: Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006183, \"titleIds\": [\"PPSA10328_00\", \"PPSA10330_00\", \"PPSA10327_00\", \"CUSA36905_00\", \"CUSA36908_00\", \"CUSA36907_00\", \"CUSA36906_00\"], \"name\": \"Swordbreaker: Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Swordbreaker: Origins\", \"uk-UA\": \"Swordbreaker: Origins\", \"de-DE\": \"Swordbreaker: Origins\", \"en-US\": \"Swordbreaker: Origins\", \"ko-KR\": \"Swordbreaker: Origins\", \"pt-BR\": \"Swordbreaker: Origins\", \"es-ES\": \"Swordbreaker: Origins\", \"ar-AE\": \"Swordbreaker: Origins\", \"no-NO\": \"Swordbreaker: Origins\", \"fr-CA\": \"Swordbreaker: Origins\", \"it-IT\": \"Swordbreaker: Origins\", \"pl-PL\": \"Swordbreaker: Origins\", \"ru-RU\": \"Swordbreaker: Origins\", \"zh-Hans\": \"Swordbreaker: Origins\", \"nl-NL\": \"Swordbreaker: Origins\", \"pt-PT\": \"Swordbreaker: Origins\", \"zh-Hant\": \"Swordbreaker: Origins\", \"sv-SE\": \"Swordbreaker: Origins\", \"da-DK\": \"Swordbreaker: Origins\", \"tr-TR\": \"Swordbreaker: Origins\", \"fr-FR\": \"Swordbreaker: Origins\", \"en-GB\": \"Swordbreaker: Origins\", \"es-419\": \"Swordbreaker: Origins\", \"ja-JP\": \"Swordbreaker: Origins\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1dda5a6dbbdc0bccc7cbde6e4dae1868a32cc7a35a1cc59c.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/780d7241592a2463848f931fc284cd7661c4a30be48c3ae1.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/02880b26e9b1afc9c3bf5ce26c9cb00a07a132d76ae8e10b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/c939446616157bf0ad2f78e100aed8c50d9ca7c3ebca9b8c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/892fde100ec29d7bbe29ac56cddf99768f53dc83f02c73d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/ad9d4e9c2adab0b28acdab3996e4d225bf75de49d91746a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/614651d0351fe351f144ab3e10d53309ae4a37a38122b1f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/fbc44dd6acf93c5fe6fdf6c78499108a4e002e6c8c0e7f3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/34a5def48c0be6c26fe42dc73a2cf8567e5b12775e931e23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/698b13fa31bda48a2c4d9aa9707351d4078c53db8d771c07.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/348942a8c707ed766d57b663e85ca0d8b1e484e4c1a5bb4f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/1daaf0845ef076c652151590146fda5362a9455c19a70d67.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7eef34d102c29b243cd0080c196e4da3e3c35900caf79124.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/19487a0a76206666fb6b11b293a14be279c5e437c8cdf0e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/dde156aa8f0505708ed63d2f59c1943145ca959b1721d58a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/7dc55bf21b61f97c0e27165ee778c5e514f0f2cb1140f16f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2322/e0ca617953e90a2ef99d071944b69015672fa6e8a4cf90dd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-27T11:53:45.500000Z\", \"lastPlayedDateTime\": \"2023-07-27T14:01:00.500000Z\", \"playDuration\": \"PT2H5M34S\"}, {\"titleId\": \"CUSA27581_00\", \"name\": \"Mighty Goose\", \"localizedName\": \"Mighty Goose\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001725, \"titleIds\": [\"PPSA03463_00\", \"CUSA27311_00\", \"PPSA03464_00\", \"CUSA27581_00\", \"PPSA03458_00\", \"CUSA27585_00\", \"CUSA27586_00\", \"PPSA03461_00\"], \"name\": \"Mighty Goose\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Goose\", \"uk-UA\": \"Mighty Goose\", \"de-DE\": \"Mighty Goose\", \"en-US\": \"Mighty Goose\", \"ko-KR\": \"Mighty Goose\", \"pt-BR\": \"Mighty Goose\", \"es-ES\": \"Mighty Goose\", \"ar-AE\": \"Mighty Goose\", \"no-NO\": \"Mighty Goose\", \"fr-CA\": \"Mighty Goose\", \"it-IT\": \"Mighty Goose\", \"pl-PL\": \"Mighty Goose\", \"ru-RU\": \"Mighty Goose\", \"zh-Hans\": \"\\u66b4\\u8d70\\u5927\\u9e45\", \"nl-NL\": \"Mighty Goose\", \"pt-PT\": \"Mighty Goose\", \"zh-Hant\": \"\\u66b4\\u8d70\\u5927\\u9d5d\", \"sv-SE\": \"Mighty Goose\", \"da-DK\": \"Mighty Goose\", \"tr-TR\": \"Mighty Goose\", \"fr-FR\": \"Mighty Goose\", \"en-GB\": \"Mighty Goose\", \"es-419\": \"Mighty Goose\", \"ja-JP\": \"\\u30de\\u30a4\\u30c6\\u30a3\\u30fb\\u30b0\\u30fc\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/sh1WJJxqGXJYcSY4pIXEzcTl.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/Hl69nxEL1ECTPNAHxG3UiZt1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/md2Qc43JyGlk4h9mQ9z6CniY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/JYWzhQPvHrkkT6DhWm3WNIke.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/fvjaA4yj3IMdHHZb3cl4jPgy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/SCd9sftxfuO29CjaqwJbKyy4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/IgOJDYyunhug9lT7Ep7i7yYg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/XIUwktnh4rYRFh5CilMdGeo8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/YjR8b4Q5KgwAz5WGKZdcnzSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/n2I074YthzkkeVbmqgKuR7pM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/rgbSrawTebq6AlwKojVulQ6g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/q30kXUxeuRooFdbaJXLTGc64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/KkR5ZyNVkJ8bGPVupnxz25zY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/ACpEjQk5OysVQj9RwrmsHdVF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/UjrlbAA125Jh1XSbSDsJbD0t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2104/DTHKoxluHCkRSSMwDR6PC9yp.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-26T12:53:11.970000Z\", \"lastPlayedDateTime\": \"2023-07-27T11:28:26.190000Z\", \"playDuration\": \"PT5H41M48S\"}], \"nextOffset\": 400, \"previousOffset\": 199, \"totalItemCount\": 13573}" } } }, @@ -275,56 +272,55 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" - ], - "Connection": [ - "keep-alive", - "Transfer-Encoding" - ], - "X-Psn-Request-Id": [ - "2b83ea99-83ee-1031-92fc-f24ee2ea6697" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-Psn-Correlation-Id": [ - "2b83ea99-83ee-1031-92fb-f24ee2ea6697" - ], "Cache-Control": [ "max-age=0, no-cache, no-store" ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Sun, 12 Jan 2025 03:19:12 GMT" ], "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], "Access-Control-Allow-Methods": [ "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:02 GMT" + "Connection": [ + "keep-alive" ], - "Content-Type": [ - "application/json" + "X-Psn-Request-Id": [ + "adb8aa1b-94cf-1031-8034-b47f2a52ee0c" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:02 GMT" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" + ], + "Pragma": [ + "no-cache" + ], + "X-Psn-Correlation-Id": [ + "adb8aa1b-94cf-1031-8033-b47f2a52ee0c" + ], + "Content-Length": [ + "1100937" ], "Access-Control-Max-Age": [ "3600" ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" + "Expires": [ + "Sun, 12 Jan 2025 03:19:12 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"PPSA16270_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:46:23.470000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:48:26.230000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"PPSA14213_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:44:42.160000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:46:20.590000Z\", \"playDuration\": \"PT1M28S\"}, {\"titleId\": \"PPSA14214_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:42:17.520000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:44:39.340000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA16271_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:40:27.980000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:42:14.670000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA43231_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:38:22.570000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:40:02.690000Z\", \"playDuration\": \"PT1M29S\"}, {\"titleId\": \"CUSA41166_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:36:36.890000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:38:19.150000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA41167_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:34:54.690000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:36:33.810000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA43232_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:32:59.530000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:34:52.210000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"PPSA15401_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T05:14:21.370000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:22:38.880000Z\", \"playDuration\": \"PT1H8M14S\"}, {\"titleId\": \"PPSA15400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T04:10:18.920000Z\", \"lastPlayedDateTime\": \"2023-07-25T05:14:19.410000Z\", \"playDuration\": \"PT1H3M37S\"}, {\"titleId\": \"CUSA42399_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T01:18:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-25T02:49:53.900000Z\", \"playDuration\": \"PT1H12M16S\"}, {\"titleId\": \"CUSA42400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-24T13:30:18.860000Z\", \"lastPlayedDateTime\": \"2023-07-24T15:35:37.070000Z\", \"playDuration\": \"PT1H38M52S\"}, {\"titleId\": \"PPSA16727_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T14:08:25.840000Z\", \"lastPlayedDateTime\": \"2023-07-23T15:01:02.200000Z\", \"playDuration\": \"PT52M10S\"}, {\"titleId\": \"CUSA43626_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T12:53:01.020000Z\", \"lastPlayedDateTime\": \"2023-07-23T14:07:14.080000Z\", \"playDuration\": \"PT1H11M29S\"}, {\"titleId\": \"PPSA06922_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T10:40:20.330000Z\", \"lastPlayedDateTime\": \"2023-07-23T12:07:45.630000Z\", \"playDuration\": \"PT1H26M50S\"}, {\"titleId\": \"CUSA32774_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T05:42:44.530000Z\", \"lastPlayedDateTime\": \"2023-07-23T08:59:47.640000Z\", \"playDuration\": \"PT3H14M49S\"}, {\"titleId\": \"PPSA16622_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T03:49:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-23T05:12:25.360000Z\", \"playDuration\": \"PT1H22M38S\"}, {\"titleId\": \"CUSA43535_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T01:43:04.640000Z\", \"lastPlayedDateTime\": \"2023-07-23T03:49:40.890000Z\", \"playDuration\": \"PT2H3M13S\"}, {\"titleId\": \"PPSA15722_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T14:53:27.180000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:54:07.250000Z\", \"playDuration\": \"PT36S\"}, {\"titleId\": \"CUSA42776_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T13:02:49.610000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:46:46.880000Z\", \"playDuration\": \"PT57M23S\"}, {\"titleId\": \"PPSA05394_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T12:00:52.620000Z\", \"lastPlayedDateTime\": \"2023-07-22T13:02:46.290000Z\", \"playDuration\": \"PT1H1M43S\"}, {\"titleId\": \"PPSA05395_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T10:33:07.480000Z\", \"lastPlayedDateTime\": \"2023-07-22T12:00:49.190000Z\", \"playDuration\": \"PT58M2S\"}, {\"titleId\": \"CUSA27163_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T01:43:01.390000Z\", \"lastPlayedDateTime\": \"2023-07-22T03:01:33.390000Z\", \"playDuration\": \"PT1H18M14S\"}, {\"titleId\": \"CUSA27164_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T22:02:59.250000Z\", \"lastPlayedDateTime\": \"2023-07-22T01:42:57.400000Z\", \"playDuration\": \"PT1H15M25S\"}, {\"titleId\": \"CUSA43643_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:27:50.470000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:29:19.150000Z\", \"playDuration\": \"PT1M25S\"}, {\"titleId\": \"CUSA43642_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/cc1a594e6344c93ef13e36199fad06a2bbf2de979a155f95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:22:44.130000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:25:10.090000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"PPSA17157_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:19:08.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:22:40.760000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA17158_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:14:11.550000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:19:05.000000Z\", \"playDuration\": \"PT3M54S\"}, {\"titleId\": \"PPSA17155_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:11:12.690000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:14:08.180000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA17156_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:08:12.650000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:11:09.100000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA43992_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:57:13.500000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:01:00.440000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"CUSA43990_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:49:00.270000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:57:10.270000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43991_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:45:53.560000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:48:57.100000Z\", \"playDuration\": \"PT2M58S\"}, {\"titleId\": \"CUSA43993_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:40:04.060000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:45:50.420000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA44224_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:35:10.370000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:37:43.360000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA44223_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:32:09.640000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:35:07.770000Z\", \"playDuration\": \"PT2M49S\"}, {\"titleId\": \"PPSA12585_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:23:05.000000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:26:55.180000Z\", \"playDuration\": \"PT3M33S\"}, {\"titleId\": \"PPSA12586_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:18:58.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:23:03.310000Z\", \"playDuration\": \"PT3M57S\"}, {\"titleId\": \"CUSA39542_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:14:54.110000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:18:56.170000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA39543_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:10:16.670000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:14:52.050000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA42695_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T00:50:53.290000Z\", \"lastPlayedDateTime\": \"2023-07-21T08:01:10.000000Z\", \"playDuration\": \"PT5H52M1S\"}, {\"titleId\": \"CUSA42694_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:54:22.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T15:34:30.760000Z\", \"playDuration\": \"PT8H56M29S\"}, {\"titleId\": \"PPSA15897_00\", \"name\": \"The Complex\", \"localizedName\": \"The Complex\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10000347, \"titleIds\": [\"CUSA32389_00\", \"CUSA32390_00\", \"PPSA15898_00\", \"PPSA15897_00\", \"CUSA18654_00\", \"CUSA18645_00\"], \"name\": \"The Complex\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Complex\", \"uk-UA\": \"The Complex\", \"de-DE\": \"The Complex\", \"en-US\": \"The Complex\", \"ko-KR\": \"The Complex\", \"pt-BR\": \"The Complex\", \"es-ES\": \"The Complex\", \"ar-AE\": \"The Complex\", \"no-NO\": \"The Complex\", \"fr-CA\": \"The Complex\", \"it-IT\": \"The Complex\", \"pl-PL\": \"The Complex\", \"ru-RU\": \"The Complex\", \"zh-Hans\": \"The Complex \\u590d\\u4f53\", \"nl-NL\": \"The Complex\", \"pt-PT\": \"The Complex\", \"zh-Hant\": \"The Complex \\u590d\\u4f53\", \"sv-SE\": \"The Complex\", \"da-DK\": \"The Complex\", \"tr-TR\": \"The Complex\", \"fr-FR\": \"The Complex\", \"en-GB\": \"The Complex\", \"es-419\": \"The Complex\", \"ja-JP\": \"The Complex\\u30af\\u30ed\\u30e6\\u30ea\\u56e3\\u5730\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-19T05:16:18.540000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:34:32.830000Z\", \"playDuration\": \"PT4H29M32S\"}, {\"titleId\": \"PPSA13287_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:16:32.860000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:29:01.550000Z\", \"playDuration\": \"PT11M31S\"}, {\"titleId\": \"PPSA17415_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:12:55.890000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:15:48.680000Z\", \"playDuration\": \"PT2M33S\"}, {\"titleId\": \"PPSA17414_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:09:43.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:12:52.770000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17365_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:05:16.340000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:09:16.960000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"PPSA17364_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:55:17.510000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:05:13.540000Z\", \"playDuration\": \"PT9M44S\"}, {\"titleId\": \"CUSA44178_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:48:34.170000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:54:46.280000Z\", \"playDuration\": \"PT6M8S\"}, {\"titleId\": \"CUSA44179_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:34:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:48:31.680000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"CUSA44222_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:19:54.130000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:33:48.030000Z\", \"playDuration\": \"PT13M13S\"}, {\"titleId\": \"CUSA44221_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:01:10.420000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:19:51.040000Z\", \"playDuration\": \"PT18M6S\"}, {\"titleId\": \"CUSA28035_00\", \"name\": \"OMNO\", \"localizedName\": \"OMNO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 10002920, \"titleIds\": [\"CUSA28681_00\", \"CUSA28035_00\"], \"name\": \"OMNO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"OMNO\", \"uk-UA\": \"OMNO\", \"de-DE\": \"OMNO\", \"en-US\": \"OMNO\", \"ko-KR\": \"OMNO\", \"pt-BR\": \"OMNO\", \"es-ES\": \"OMNO\", \"ar-AE\": \"OMNO\", \"no-NO\": \"OMNO\", \"fr-CA\": \"OMNO\", \"it-IT\": \"OMNO\", \"pl-PL\": \"OMNO\", \"ru-RU\": \"OMNO\", \"zh-Hans\": \"OMNO\", \"nl-NL\": \"OMNO\", \"pt-PT\": \"OMNO\", \"zh-Hant\": \"OMNO\", \"sv-SE\": \"OMNO\", \"da-DK\": \"OMNO\", \"tr-TR\": \"OMNO\", \"fr-FR\": \"OMNO\", \"en-GB\": \"OMNO\", \"es-419\": \"OMNO\", \"ja-JP\": \"OMNO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T10:42:00.110000Z\", \"lastPlayedDateTime\": \"2023-07-19T03:02:22.710000Z\", \"playDuration\": \"PT5H44M33S\"}, {\"titleId\": \"PPSA15226_00\", \"name\": \"NARAKA: BLADEPOINT\", \"localizedName\": \"NARAKA: BLADEPOINT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004405, \"titleIds\": [\"CUSA42174_00\", \"CUSA42663_00\", \"PPSA16591_00\", \"CUSA42749_00\", \"PPSA15226_00\", \"CUSA42669_00\", \"PPSA15239_00\", \"CUSA43513_00\", \"CUSA42670_00\", \"CUSA42176_00\"], \"name\": \"NARAKA: BLADEPOINT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/83444d6cb496b978519a0e89400fe129b888b82bd4c8e24a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2807/b09f37cd838c9ca3d6c5a4e83e6977a362e5ae42695851b5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/8079af5b40ce510a7a530a6993c2282766c7ebada9d5d58f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"NARAKA: BLADEPOINT\", \"uk-UA\": \"NARAKA: BLADEPOINT\", \"de-DE\": \"NARAKA: BLADEPOINT\", \"en-US\": \"NARAKA: BLADEPOINT\", \"ko-KR\": \"\\ub098\\ub77c\\uce74:\\ube14\\ub808\\uc774\\ub4dc\\ud3ec\\uc778\\ud2b8\", \"pt-BR\": \"NARAKA: BLADEPOINT\", \"es-ES\": \"NARAKA: BLADEPOINT\", \"ar-AE\": \"NARAKA: BLADEPOINT\", \"no-NO\": \"NARAKA: BLADEPOINT\", \"fr-CA\": \"NARAKA: BLADEPOINT\", \"it-IT\": \"NARAKA: BLADEPOINT\", \"pl-PL\": \"NARAKA: BLADEPOINT\", \"ru-RU\": \"NARAKA: BLADEPOINT\", \"zh-Hans\": \"\\u6c38\\u52ab\\u65e0\\u95f4\", \"nl-NL\": \"NARAKA: BLADEPOINT\", \"pt-PT\": \"NARAKA: BLADEPOINT\", \"zh-Hant\": \"\\u6c38\\u52ab\\u7121\\u9593\", \"sv-SE\": \"NARAKA: BLADEPOINT\", \"da-DK\": \"NARAKA: BLADEPOINT\", \"tr-TR\": \"NARAKA: BLADEPOINT\", \"fr-FR\": \"NARAKA: BLADEPOINT\", \"en-GB\": \"NARAKA: BLADEPOINT\", \"es-419\": \"NARAKA: BLADEPOINT\", \"ja-JP\": \"NARAKA: BLADEPOINT\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/83444d6cb496b978519a0e89400fe129b888b82bd4c8e24a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202404/2807/b09f37cd838c9ca3d6c5a4e83e6977a362e5ae42695851b5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/8079af5b40ce510a7a530a6993c2282766c7ebada9d5d58f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/ead319f273cb99573d31d1a257baff9ab3cb2b6daed92f50.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T08:30:42.550000Z\", \"lastPlayedDateTime\": \"2023-07-18T09:15:41.870000Z\", \"playDuration\": \"PT44M49S\"}, {\"titleId\": \"CUSA26140_00\", \"name\": \"I Am Dead\", \"localizedName\": \"I Am Dead\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002127, \"titleIds\": [\"CUSA26137_00\", \"CUSA26138_00\", \"PPSA02616_00\", \"CUSA26139_00\", \"CUSA26140_00\", \"PPSA02618_00\", \"PPSA02617_00\", \"PPSA02619_00\"], \"name\": \"I Am Dead\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I Am Dead\", \"uk-UA\": \"I Am Dead\", \"de-DE\": \"I Am Dead\", \"en-US\": \"I Am Dead\", \"ko-KR\": \"I Am Dead\", \"pt-BR\": \"I Am Dead\", \"es-ES\": \"I Am Dead\", \"ar-AE\": \"I Am Dead\", \"no-NO\": \"I Am Dead\", \"fr-CA\": \"I Am Dead\", \"it-IT\": \"I Am Dead\", \"pl-PL\": \"I Am Dead\", \"ru-RU\": \"I Am Dead\", \"zh-Hans\": \"I Am Dead\", \"nl-NL\": \"I Am Dead\", \"pt-PT\": \"I Am Dead\", \"zh-Hant\": \"I Am Dead\", \"sv-SE\": \"I Am Dead\", \"da-DK\": \"I Am Dead\", \"tr-TR\": \"I Am Dead\", \"fr-FR\": \"I Am Dead\", \"en-GB\": \"I Am Dead\", \"es-419\": \"I Am Dead\", \"ja-JP\": \"I Am Dead\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T07:53:58.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T08:29:30.440000Z\", \"playDuration\": \"PT34M34S\"}, {\"titleId\": \"PPSA14487_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:56:32.350000Z\", \"lastPlayedDateTime\": \"2023-07-18T07:01:32.080000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA14488_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:48:43.730000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:56:30.200000Z\", \"playDuration\": \"PT7M33S\"}, {\"titleId\": \"CUSA41462_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:18:21.190000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:48:41.550000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA41463_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:06:05.150000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:18:19.210000Z\", \"playDuration\": \"PT11M27S\"}, {\"titleId\": \"PPSA09448_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-16T04:59:59.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:48:46.330000Z\", \"playDuration\": \"PT15H37M30S\"}, {\"titleId\": \"CUSA35737_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T07:01:59.500000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:00:54.750000Z\", \"playDuration\": \"PT19H24M33S\"}, {\"titleId\": \"CUSA23986_00\", \"name\": \"Carto\", \"localizedName\": \"Carto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 10000947, \"titleIds\": [\"CUSA23986_00\", \"CUSA23985_00\"], \"name\": \"Carto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Carto\", \"uk-UA\": \"Carto\", \"de-DE\": \"Carto\", \"en-US\": \"Carto\", \"ko-KR\": \"Carto\", \"pt-BR\": \"Carto\", \"es-ES\": \"Carto\", \"ar-AE\": \"Carto\", \"no-NO\": \"Carto\", \"fr-CA\": \"Carto\", \"it-IT\": \"Carto\", \"pl-PL\": \"Carto\", \"ru-RU\": \"Carto\", \"zh-Hans\": \"Carto\", \"nl-NL\": \"Carto\", \"pt-PT\": \"Carto\", \"zh-Hant\": \"Carto\", \"sv-SE\": \"Carto\", \"da-DK\": \"Carto\", \"tr-TR\": \"Carto\", \"fr-FR\": \"Carto\", \"en-GB\": \"Carto\", \"es-419\": \"Carto\", \"ja-JP\": \"Carto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:01:08.960000Z\", \"lastPlayedDateTime\": \"2023-07-18T03:27:01.460000Z\", \"playDuration\": \"PT11H9M45S\"}, {\"titleId\": \"PPSA17660_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T05:18:28.380000Z\", \"lastPlayedDateTime\": \"2023-07-15T06:08:13.430000Z\", \"playDuration\": \"PT49M41S\"}, {\"titleId\": \"PPSA17661_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T04:22:02.110000Z\", \"lastPlayedDateTime\": \"2023-07-15T05:18:25.230000Z\", \"playDuration\": \"PT48M36S\"}, {\"titleId\": \"PPSA17658_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T03:33:42.030000Z\", \"lastPlayedDateTime\": \"2023-07-15T04:21:58.970000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"PPSA17659_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T01:55:58.440000Z\", \"lastPlayedDateTime\": \"2023-07-15T03:33:38.800000Z\", \"playDuration\": \"PT1H4M23S\"}, {\"titleId\": \"PPSA16546_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T14:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-07-14T15:21:36.320000Z\", \"playDuration\": \"PT54M3S\"}, {\"titleId\": \"PPSA16545_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:51:17.000000Z\", \"lastPlayedDateTime\": \"2023-07-14T14:01:43.310000Z\", \"playDuration\": \"PT1H34M23S\"}, {\"titleId\": \"PPSA04158_00\", \"name\": \"Goat Simulator 3\", \"localizedName\": \"Goat Simulator 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 25, \"concept\": {\"id\": 10003123, \"titleIds\": [\"PPSA04158_00\", \"PPSA04159_00\", \"CUSA46679_00\", \"CUSA46680_00\"], \"name\": \"Goat Simulator 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/RsnBtkGKT7iJJH5zI9E207Km.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/V7DjT6HPkxJRSBXvUZbCwO6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Goat Simulator 3\", \"uk-UA\": \"Goat Simulator 3\", \"de-DE\": \"Goat Simulator 3\", \"en-US\": \"Goat Simulator 3\", \"ko-KR\": \"Goat Simulator 3\", \"pt-BR\": \"Goat Simulator 3\", \"es-ES\": \"Project Zero\", \"ar-AE\": \"Goat Simulator 3\", \"no-NO\": \"Goat Simulator 3\", \"fr-CA\": \"Goat Simulator 3\", \"it-IT\": \"Goat Simulator 3\", \"pl-PL\": \"Goat Simulator 3\", \"ru-RU\": \"Goat Simulator 3\", \"zh-Hans\": \"Goat Simulator 3\", \"nl-NL\": \"Goat Simulator 3\", \"pt-PT\": \"Goat Simulator 3\", \"zh-Hant\": \"Goat Simulator 3\", \"sv-SE\": \"Goat Simulator 3\", \"da-DK\": \"Goat Simulator 3\", \"tr-TR\": \"Goat Simulator 3\", \"fr-FR\": \"Goat Simulator 3\", \"en-GB\": \"Goat Simulator 3\", \"es-419\": \"Goat Simulator 3\", \"ja-JP\": \"Goat Simulator 3\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/RsnBtkGKT7iJJH5zI9E207Km.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/V7DjT6HPkxJRSBXvUZbCwO6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0413/FSpxZI2qYcriljLKCTnyAvcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-01-27T13:21:22.170000Z\", \"lastPlayedDateTime\": \"2023-07-14T13:47:37.830000Z\", \"playDuration\": \"PT17H52M24S\"}, {\"titleId\": \"CUSA43909_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:44:40.800000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:47:23.430000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA43906_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:37:29.140000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:44:39.150000Z\", \"playDuration\": \"PT3M6S\"}, {\"titleId\": \"CUSA43907_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:35:36.470000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:37:27.250000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA43908_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T09:04:41.410000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:35:34.690000Z\", \"playDuration\": \"PT1H30M41S\"}, {\"titleId\": \"PPSA17078_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:25:45.490000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:39:13.030000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"PPSA17077_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:12:07.820000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:25:42.600000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43930_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:58:07.300000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:12:03.990000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43931_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:41:53.990000Z\", \"lastPlayedDateTime\": \"2023-07-14T07:58:03.430000Z\", \"playDuration\": \"PT16M\"}, {\"titleId\": \"PPSA11431_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:57:20.090000Z\", \"lastPlayedDateTime\": \"2023-07-13T07:01:30.430000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"PPSA11430_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:52:50.910000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:57:18.250000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA38212_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:46:28.980000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:50:28.990000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA09073_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T00:48:56.560000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:43:06.790000Z\", \"playDuration\": \"PT4H16M18S\"}, {\"titleId\": \"CUSA35347_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:21:09.030000Z\", \"lastPlayedDateTime\": \"2023-07-13T00:48:53.390000Z\", \"playDuration\": \"PT7H59M9S\"}, {\"titleId\": \"PPSA15554_00\", \"name\": \"Dead Cells\", \"localizedName\": \"Dead Cells\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 231053, \"titleIds\": [\"CUSA10485_00\", \"CUSA11253_00\", \"CUSA10484_00\", \"CUSA18439_00\", \"CUSA24085_00\", \"CUSA24086_00\", \"CUSA42849_00\", \"PPSA15554_00\", \"PPSA15552_00\", \"CUSA42830_00\"], \"name\": \"Dead Cells\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Cells\", \"uk-UA\": \"Dead Cells\", \"de-DE\": \"Dead Cells\", \"en-US\": \"Dead Cells\", \"ko-KR\": \"\\ub370\\ub4dc \\uc140 (Dead Cells)\", \"pt-BR\": \"Dead Cells\", \"es-ES\": \"Dead Cells\", \"ar-AE\": \"Dead Cells\", \"no-NO\": \"Dead Cells\", \"fr-CA\": \"Dead Cells\", \"it-IT\": \"Dead Cells\", \"pl-PL\": \"Dead Cells\", \"ru-RU\": \"Dead Cells\", \"zh-Hans\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"nl-NL\": \"Dead Cells\", \"pt-PT\": \"Dead Cells\", \"zh-Hant\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"sv-SE\": \"Dead Cells\", \"da-DK\": \"Dead Cells\", \"tr-TR\": \"Dead Cells\", \"fr-FR\": \"Dead Cells\", \"en-GB\": \"Dead Cells\", \"es-419\": \"Dead Cells\", \"ja-JP\": \"Dead Cells\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:55:08.860000Z\", \"lastPlayedDateTime\": \"2023-07-10T04:43:29.700000Z\", \"playDuration\": \"PT6M53S\"}, {\"titleId\": \"CUSA16005_00\", \"name\": \"Lonely Mountains: Downhill\", \"localizedName\": \"Lonely Mountains: Downhill\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234290, \"titleIds\": [\"CUSA16005_00\", \"CUSA23928_00\", \"CUSA15961_00\"], \"name\": \"Lonely Mountains: Downhill\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lonely Mountains: Downhill\", \"uk-UA\": \"Lonely Mountains: Downhill\", \"de-DE\": \"Lonely Mountains: Downhill\", \"en-US\": \"Lonely Mountains: Downhill\", \"ko-KR\": \"Lonely Mountains: Downhill\", \"pt-BR\": \"Lonely Mountains: Downhill\", \"es-ES\": \"Lonely Mountains: Downhill\", \"ar-AE\": \"Lonely Mountains: Downhill\", \"no-NO\": \"Lonely Mountains: Downhill\", \"fr-CA\": \"Lonely Mountains: Downhill\", \"it-IT\": \"Lonely Mountains: Downhill\", \"pl-PL\": \"Lonely Mountains: Downhill\", \"ru-RU\": \"Lonely Mountains: Downhill\", \"zh-Hans\": \"Lonely Mountains: Downhill\", \"nl-NL\": \"Lonely Mountains: Downhill\", \"pt-PT\": \"Lonely Mountains: Downhill\", \"zh-Hant\": \"Lonely Mountains: Downhill\", \"sv-SE\": \"Lonely Mountains: Downhill\", \"da-DK\": \"Lonely Mountains: Downhill\", \"tr-TR\": \"Lonely Mountains: Downhill\", \"fr-FR\": \"Lonely Mountains: Downhill\", \"en-GB\": \"Lonely Mountains: Downhill\", \"es-419\": \"Lonely Mountains: Downhill\", \"ja-JP\": \"Lonely Mountains: Downhill\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:46:11.770000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:54:20.920000Z\", \"playDuration\": \"PT8M4S\"}, {\"titleId\": \"PPSA05850_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:17:02.160000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:44:16.170000Z\", \"playDuration\": \"PT14M5S\"}, {\"titleId\": \"CUSA31412_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:13:16.260000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:39:29.750000Z\", \"playDuration\": \"PT15M35S\"}, {\"titleId\": \"PPSA06577_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:10:03.960000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:11:40.700000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA32294_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:07:49.710000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:09:59.230000Z\", \"playDuration\": \"PT2M2S\"}, {\"titleId\": \"CUSA44349_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:02:52.670000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:04:59.570000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA44350_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:57:38.830000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:02:50.280000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"PPSA07023_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:48:46.760000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:56:22.110000Z\", \"playDuration\": \"PT6M55S\"}, {\"titleId\": \"CUSA32884_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:39:34.480000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:48:16.350000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"CUSA18152_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-26T15:20:43.840000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:07:36.840000Z\", \"playDuration\": \"PT18M10S\"}, {\"titleId\": \"CUSA18449_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-05-15T12:08:21.880000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:57:20.800000Z\", \"playDuration\": \"PT22M43S\"}, {\"titleId\": \"PPSA15832_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T13:14:28.190000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:02:26.900000Z\", \"playDuration\": \"PT39M40S\"}, {\"titleId\": \"PPSA15833_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T12:33:54.730000Z\", \"lastPlayedDateTime\": \"2023-07-09T13:13:56.120000Z\", \"playDuration\": \"PT39M36S\"}, {\"titleId\": \"CUSA42784_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T11:45:00.800000Z\", \"lastPlayedDateTime\": \"2023-07-09T12:33:39.050000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"CUSA42785_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T08:56:48.460000Z\", \"lastPlayedDateTime\": \"2023-07-09T11:44:58.610000Z\", \"playDuration\": \"PT1H27S\"}, {\"titleId\": \"PPSA16522_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T07:45:23.650000Z\", \"lastPlayedDateTime\": \"2023-07-09T08:37:21.820000Z\", \"playDuration\": \"PT47M7S\"}, {\"titleId\": \"PPSA16523_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T05:02:50.300000Z\", \"lastPlayedDateTime\": \"2023-07-09T07:45:21.860000Z\", \"playDuration\": \"PT1H1M5S\"}, {\"titleId\": \"CUSA43442_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T02:42:12.080000Z\", \"lastPlayedDateTime\": \"2023-07-09T04:31:10.520000Z\", \"playDuration\": \"PT47M37S\"}, {\"titleId\": \"CUSA43441_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:39:52.610000Z\", \"lastPlayedDateTime\": \"2023-07-09T02:36:09.680000Z\", \"playDuration\": \"PT1H55M7S\"}, {\"titleId\": \"PPSA05326_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:15:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:18:24.340000Z\", \"playDuration\": \"PT42S\"}, {\"titleId\": \"CUSA30449_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 4, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:58:22.150000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:17:11.490000Z\", \"playDuration\": \"PT5H55M\"}, {\"titleId\": \"PPSA17389_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:37:55.500000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:46:35.570000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17391_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:30:19.440000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:37:52.550000Z\", \"playDuration\": \"PT5M55S\"}, {\"titleId\": \"PPSA17392_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:23:40.570000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:30:16.690000Z\", \"playDuration\": \"PT6M2S\"}, {\"titleId\": \"PPSA17390_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:23:37.720000Z\", \"playDuration\": \"PT9M8S\"}, {\"titleId\": \"CUSA43838_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:27:24.050000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:30:25.160000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA44124_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:23:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:27:20.640000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"PPSA16728_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T07:30:56.460000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:23:01.930000Z\", \"playDuration\": \"PT48M40S\"}, {\"titleId\": \"CUSA43627_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T04:03:21.900000Z\", \"lastPlayedDateTime\": \"2023-07-07T07:30:54.120000Z\", \"playDuration\": \"PT3H14M22S\"}, {\"titleId\": \"PPSA16140_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T03:57:34.810000Z\", \"lastPlayedDateTime\": \"2023-07-07T04:01:33.730000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA43034_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:34:14.580000Z\", \"lastPlayedDateTime\": \"2023-07-07T03:57:33.060000Z\", \"playDuration\": \"PT47M6S\"}, {\"titleId\": \"PPSA17076_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:17:54.510000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:32:19.620000Z\", \"playDuration\": \"PT14M22S\"}, {\"titleId\": \"PPSA17075_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:03:38.720000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:17:51.750000Z\", \"playDuration\": \"PT13M52S\"}, {\"titleId\": \"CUSA43928_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:48:06.310000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:03:34.860000Z\", \"playDuration\": \"PT13M12S\"}, {\"titleId\": \"CUSA43929_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:02:34.070000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:48:02.420000Z\", \"playDuration\": \"PT13M43S\"}, {\"titleId\": \"PPSA11359_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:58:54.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:02:10.250000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"PPSA11360_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:58:52.970000Z\", \"playDuration\": \"PT2M11S\"}, {\"titleId\": \"CUSA38099_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:53:17.680000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:56:32.960000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA38100_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:49:24.480000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:53:05.710000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA42524_00\", \"name\": \"Russian Subway Dogs\", \"localizedName\": \"Russian Subway Dogs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231153, \"titleIds\": [\"CUSA11099_00\", \"CUSA42524_00\"], \"name\": \"Russian Subway Dogs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Russian Subway Dogs\", \"uk-UA\": \"Russian Subway Dogs\", \"de-DE\": \"Russian Subway Dogs\", \"en-US\": \"Russian Subway Dogs\", \"pt-BR\": \"Russian Subway Dogs\", \"es-ES\": \"Russian Subway Dogs\", \"ar-AE\": \"Russian Subway Dogs\", \"no-NO\": \"Russian Subway Dogs\", \"fr-CA\": \"Russian Subway Dogs\", \"it-IT\": \"Russian Subway Dogs\", \"pl-PL\": \"Russian Subway Dogs\", \"ru-RU\": \"Russian Subway Dogs\", \"zh-Hans\": \"Russian Subway Dogs\", \"nl-NL\": \"Russian Subway Dogs\", \"pt-PT\": \"Russian Subway Dogs\", \"zh-Hant\": \"Russian Subway Dogs\", \"sv-SE\": \"Russian Subway Dogs\", \"da-DK\": \"Russian Subway Dogs\", \"tr-TR\": \"Russian Subway Dogs\", \"fr-FR\": \"Russian Subway Dogs\", \"en-GB\": \"Russian Subway Dogs\", \"es-419\": \"Russian Subway Dogs\", \"ja-JP\": \"Russian Subway Dogs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T14:13:37.430000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:16:09.460000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA27043_00\", \"name\": \"Dead Island 2\", \"localizedName\": \"Dead Island 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201061, \"titleIds\": [\"CUSA36373_00\", \"CUSA35681_00\", \"CUSA36372_00\", \"PPSA03099_00\", \"CUSA35646_00\", \"CUSA36368_00\", \"CUSA36369_00\", \"PPSA03098_00\", \"PPSA09377_00\", \"CUSA00936_00\", \"CUSA29825_00\", \"CUSA01826_00\", \"CUSA01014_00\", \"CUSA27043_00\", \"CUSA36370_00\", \"CUSA36371_00\"], \"name\": \"Dead Island 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Island 2\", \"uk-UA\": \"Dead Island 2\", \"de-DE\": \"Dead Island 2\", \"en-US\": \"Dead Island 2\", \"ko-KR\": \"Dead Island 2\", \"pt-BR\": \"Dead Island 2\", \"es-ES\": \"Dead Island 2\", \"ar-AE\": \"Dead Island 2\", \"no-NO\": \"Dead Island 2\", \"fr-CA\": \"Dead Island 2\", \"it-IT\": \"Dead Island 2\", \"pl-PL\": \"Dead Island 2\", \"ru-RU\": \"Dead Island 2\", \"zh-Hans\": \"Dead Island 2\", \"nl-NL\": \"Dead Island 2\", \"pt-PT\": \"Dead Island 2\", \"zh-Hant\": \"Dead Island 2\", \"sv-SE\": \"Dead Island 2\", \"da-DK\": \"Dead Island 2\", \"tr-TR\": \"Dead Island 2\", \"fr-FR\": \"Dead Island 2\", \"en-GB\": \"Dead Island 2\", \"es-419\": \"Dead Island 2\", \"ja-JP\": \"Dead Island 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T13:10:25.250000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:12:33.530000Z\", \"playDuration\": \"PT1H1M8S\"}, {\"titleId\": \"CUSA43561_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T15:45:11.830000Z\", \"lastPlayedDateTime\": \"2023-07-05T16:04:25.680000Z\", \"playDuration\": \"PT19M10S\"}, {\"titleId\": \"CUSA43562_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:56:01.570000Z\", \"lastPlayedDateTime\": \"2023-07-05T15:45:09.670000Z\", \"playDuration\": \"PT49M3S\"}, {\"titleId\": \"CUSA43560_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:02:37.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:55:50.730000Z\", \"playDuration\": \"PT52M52S\"}, {\"titleId\": \"CUSA43559_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T13:21:30.400000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:01:26.520000Z\", \"playDuration\": \"PT39M42S\"}, {\"titleId\": \"CUSA43353_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:17:03.880000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:31:56.250000Z\", \"playDuration\": \"PT8M45S\"}, {\"titleId\": \"CUSA43354_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:07:13.630000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:17:02.380000Z\", \"playDuration\": \"PT9M38S\"}, {\"titleId\": \"CUSA43356_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:53:48.540000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:06:31.320000Z\", \"playDuration\": \"PT12M13S\"}, {\"titleId\": \"CUSA43355_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:36:05.510000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:53:47.100000Z\", \"playDuration\": \"PT14M40S\"}, {\"titleId\": \"PPSA16103_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:12:26.770000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:14:54.860000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"PPSA16102_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:10:03.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:12:23.790000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA16101_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:06:06.120000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:09:58.630000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"PPSA16100_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:03:24.960000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:06:02.580000Z\", \"playDuration\": \"PT2M22S\"}, {\"titleId\": \"CUSA43011_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:57:52.030000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:03:21.420000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"CUSA43009_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:53:48.930000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:57:48.940000Z\", \"playDuration\": \"PT3M43S\"}, {\"titleId\": \"CUSA43008_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:50:11.060000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:53:45.810000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA43010_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:43:35.780000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:50:08.030000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA39493_00\", \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"localizedName\": \"The Quintessential Quintuplets Gotopuzu Story\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 9, \"concept\": {\"id\": 10006924, \"titleIds\": [\"CUSA39493_00\"], \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"The Quintessential Quintuplets Gotopuzu Story\", \"en-GB\": \"The Quintessential Quintuplets Gotopuzu Story\", \"ja-JP\": \"\\u4e94\\u7b49\\u5206\\u306e\\u82b1\\u5ac1 \\u3054\\u3068\\u3071\\u305a\\u30b9\\u30c8\\u30fc\\u30ea\\u30fc\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-04T10:01:36.180000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:39:02.790000Z\", \"playDuration\": \"PT8H30M27S\"}, {\"titleId\": \"CUSA43267_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-03T00:51:14.750000Z\", \"lastPlayedDateTime\": \"2023-07-03T01:21:08.020000Z\", \"playDuration\": \"PT28M43S\"}, {\"titleId\": \"CUSA43266_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T11:23:34.990000Z\", \"lastPlayedDateTime\": \"2023-07-02T13:11:03.500000Z\", \"playDuration\": \"PT1H40M37S\"}, {\"titleId\": \"CUSA41310_00\", \"name\": \"Houkago Cinderella 2\", \"localizedName\": \"Houkago Cinderella 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007608, \"titleIds\": [\"CUSA41311_00\", \"CUSA41310_00\"], \"name\": \"Houkago Cinderella 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Houkago Cinderella 2\", \"en-GB\": \"Houkago Cinderella 2\", \"ja-JP\": \"\\u653e\\u8ab2\\u5f8c\\u30b7\\u30f3\\u30c7\\u30ec\\u30e9\\uff12\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T07:15:30.840000Z\", \"lastPlayedDateTime\": \"2023-07-02T11:11:18.320000Z\", \"playDuration\": \"PT2H51M15S\"}, {\"titleId\": \"PPSA13286_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T13:17:31.730000Z\", \"lastPlayedDateTime\": \"2023-07-01T13:44:34.180000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"PPSA15895_00\", \"name\": \"Late Shift\", \"localizedName\": \"Late Shift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 227163, \"titleIds\": [\"CUSA07805_00\", \"CUSA07898_00\", \"CUSA16459_00\", \"CUSA14449_00\", \"PPSA15895_00\", \"PPSA15896_00\"], \"name\": \"Late Shift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Late Shift\", \"uk-UA\": \"Late Shift\", \"de-DE\": \"Late Shift\", \"en-US\": \"Late Shift\", \"ko-KR\": \"Late Shift\", \"pt-BR\": \"Late Shift\", \"es-ES\": \"Late Shift\", \"ar-AE\": \"Late Shift\", \"no-NO\": \"Late Shift\", \"fr-CA\": \"Late Shift\", \"it-IT\": \"Late Shift\", \"pl-PL\": \"Late Shift\", \"ru-RU\": \"Late Shift\", \"zh-Hans\": \"Late Shift\", \"nl-NL\": \"Late Shift\", \"pt-PT\": \"Late Shift\", \"zh-Hant\": \"Late Shift\", \"sv-SE\": \"Late Shift\", \"da-DK\": \"Late Shift\", \"tr-TR\": \"Late Shift\", \"fr-FR\": \"Late Shift\", \"en-GB\": \"Late Shift\", \"es-419\": \"Late Shift\", \"ja-JP\": \"Late Shift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:45:36.520000Z\", \"lastPlayedDateTime\": \"2023-07-01T12:55:17.010000Z\", \"playDuration\": \"PT5H48M11S\"}, {\"titleId\": \"PPSA16415_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:57.400000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:25:13.260000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA16417_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:27.640000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:54.990000Z\", \"playDuration\": \"PT23S\"}, {\"titleId\": \"PPSA16414_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:07.320000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:25.280000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"PPSA16416_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:23:44.590000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:04.990000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"CUSA43351_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:08:31.630000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:23:10.170000Z\", \"playDuration\": \"PT14M25S\"}, {\"titleId\": \"CUSA43350_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:53:01.620000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:08:26.340000Z\", \"playDuration\": \"PT14M19S\"}, {\"titleId\": \"CUSA43349_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:35:07.450000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:52:52.560000Z\", \"playDuration\": \"PT15M9S\"}, {\"titleId\": \"CUSA43352_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:08:15.570000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:29:05.640000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"PPSA17314_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:05:04.480000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:08:29.720000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA17315_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:01:42.180000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:05:02.100000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"CUSA05443_00\", \"name\": \"Fantasy Strike\", \"localizedName\": \"Fantasy Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 233566, \"titleIds\": [\"CUSA05443_00\", \"CUSA16518_00\"], \"name\": \"Fantasy Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"FIGHTING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fantasy Strike\", \"uk-UA\": \"Fantasy Strike\", \"de-DE\": \"Fantasy Strike\", \"en-US\": \"Fantasy Strike\", \"pt-BR\": \"Fantasy Strike\", \"es-ES\": \"Fantasy Strike\", \"ar-AE\": \"Fantasy Strike\", \"no-NO\": \"Fantasy Strike\", \"fr-CA\": \"Fantasy Strike\", \"it-IT\": \"Fantasy Strike\", \"pl-PL\": \"Fantasy Strike\", \"ru-RU\": \"Fantasy Strike\", \"nl-NL\": \"Fantasy Strike\", \"pt-PT\": \"Fantasy Strike\", \"sv-SE\": \"Fantasy Strike\", \"da-DK\": \"Fantasy Strike\", \"tr-TR\": \"Fantasy Strike\", \"fr-FR\": \"Fantasy Strike\", \"en-GB\": \"Fantasy Strike\", \"es-419\": \"Fantasy Strike\", \"ja-JP\": \"\\u30d5\\u30a1\\u30f3\\u30bf\\u30b8\\u30fc\\u30b9\\u30c8\\u30e9\\u30a4\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-07-26T04:29:45.470000Z\", \"lastPlayedDateTime\": \"2023-07-01T02:52:43.160000Z\", \"playDuration\": \"PT13H17M25S\"}, {\"titleId\": \"CUSA35809_00\", \"name\": \"Crazy Chicken Shooter Edition\", \"localizedName\": \"Crazy Chicken Shooter Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002523, \"titleIds\": [\"PPSA03116_00\", \"CUSA35809_00\", \"PPSA03117_00\", \"CUSA35810_00\"], \"name\": \"Crazy Chicken Shooter Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Crazy Chicken Shooter Edition\", \"uk-UA\": \"Crazy Chicken Shooter Edition\", \"de-DE\": \"Moorhuhn Shooter Edition\", \"en-US\": \"Crazy Chicken Shooter Edition\", \"pt-BR\": \"Crazy Chicken Shooter Edition\", \"es-ES\": \"Crazy Chicken Shooter Edition\", \"ar-AE\": \"Crazy Chicken Shooter Edition\", \"no-NO\": \"Crazy Chicken Shooter Edition\", \"fr-CA\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"it-IT\": \"Crazy Chicken Shooter Edition\", \"pl-PL\": \"Crazy Chicken Shooter Edition\", \"ru-RU\": \"Crazy Chicken Shooter Edition\", \"nl-NL\": \"Crazy Chicken Shooter Edition\", \"pt-PT\": \"Crazy Chicken Shooter Edition\", \"sv-SE\": \"Crazy Chicken Shooter Edition\", \"da-DK\": \"Crazy Chicken Shooter Edition\", \"tr-TR\": \"Crazy Chicken Shooter Edition\", \"fr-FR\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"en-GB\": \"Crazy Chicken Shooter Edition\", \"es-419\": \"Crazy Chicken Shooter Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T09:09:29.710000Z\", \"lastPlayedDateTime\": \"2023-06-30T13:34:50.690000Z\", \"playDuration\": \"PT2H48M25S\"}, {\"titleId\": \"PPSA16450_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:36:45.940000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:42:37.340000Z\", \"playDuration\": \"PT5M40S\"}, {\"titleId\": \"PPSA16451_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:29:06.880000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:36:43.900000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"PPSA04476_00\", \"name\": \"Fall Guys\", \"localizedName\": \"Fall Guys\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10003354, \"titleIds\": [\"CUSA31669_00\", \"CUSA29380_00\", \"CUSA29381_00\", \"CUSA29237_00\", \"CUSA29236_00\", \"PPSA04478_00\", \"PPSA04621_00\", \"PPSA04476_00\", \"PPSA04622_00\"], \"name\": \"Fall Guys\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/51c49ae8adf97335366f0cedb4b7b74800fa46965fba980d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/fefe9a7e66213f0355217eb4987c399fc7b86fb720a6e684.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/8b779dd7af0398b9f311091bdb3bfb973b01d558ae5ea1bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/87904fbef3e6527be0e853a804b513cbc7a15570a5f63b31.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/96eb8b2dd96571b78316f1f0158b3d1ef1625cfa33bfe734.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fall Guys\", \"uk-UA\": \"Fall Guys\", \"de-DE\": \"Fall Guys\", \"en-US\": \"Fall Guys\", \"ko-KR\": \"Fall Guys\", \"pt-BR\": \"Fall Guys\", \"es-ES\": \"Fall Guys\", \"ar-AE\": \"Fall Guys\", \"no-NO\": \"Fall Guys\", \"fr-CA\": \"Fall Guys\", \"it-IT\": \"Fall Guys\", \"pl-PL\": \"Fall Guys\", \"ru-RU\": \"Fall Guys\", \"zh-Hans\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"nl-NL\": \"Fall Guys\", \"pt-PT\": \"Fall Guys\", \"zh-Hant\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"sv-SE\": \"Fall Guys\", \"da-DK\": \"Fall Guys\", \"tr-TR\": \"Fall Guys\", \"fr-FR\": \"Fall Guys\", \"en-GB\": \"Fall Guys\", \"es-419\": \"Fall Guys\", \"ja-JP\": \"Fall Guys\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/51c49ae8adf97335366f0cedb4b7b74800fa46965fba980d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/fefe9a7e66213f0355217eb4987c399fc7b86fb720a6e684.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/8b779dd7af0398b9f311091bdb3bfb973b01d558ae5ea1bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/87904fbef3e6527be0e853a804b513cbc7a15570a5f63b31.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/96eb8b2dd96571b78316f1f0158b3d1ef1625cfa33bfe734.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2603/55757303c2d99bb14cddca61c21680ae1df5ee936d8ffd6e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-21T08:07:57.700000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:58:16.000000Z\", \"playDuration\": \"PT9M12S\"}, {\"titleId\": \"PPSA08439_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T06:11:01.950000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:47:46.760000Z\", \"playDuration\": \"PT2H36M33S\"}, {\"titleId\": \"CUSA34504_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T14:25:15.930000Z\", \"lastPlayedDateTime\": \"2023-06-30T05:32:00.880000Z\", \"playDuration\": \"PT3H44M30S\"}, {\"titleId\": \"CUSA24787_00\", \"name\": \"Double Pug Switch\", \"localizedName\": \"Double Pug Switch\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 234008, \"titleIds\": [\"CUSA15758_00\", \"CUSA24787_00\"], \"name\": \"Double Pug Switch\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Double Pug Switch\", \"uk-UA\": \"Double Pug Switch\", \"de-DE\": \"Double Pug Switch\", \"en-US\": \"Double Pug Switch\", \"pt-BR\": \"Double Pug Switch\", \"es-ES\": \"Double Pug Switch\", \"ar-AE\": \"Double Pug Switch\", \"no-NO\": \"Double Pug Switch\", \"fr-CA\": \"Double Pug Switch\", \"it-IT\": \"Double Pug Switch\", \"pl-PL\": \"Double Pug Switch\", \"ru-RU\": \"Double Pug Switch\", \"nl-NL\": \"Double Pug Switch\", \"pt-PT\": \"Double Pug Switch\", \"sv-SE\": \"Double Pug Switch\", \"da-DK\": \"Double Pug Switch\", \"tr-TR\": \"Double Pug Switch\", \"fr-FR\": \"Double Pug Switch\", \"en-GB\": \"Double Pug Switch\", \"es-419\": \"Double Pug Switch\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T06:05:00.970000Z\", \"lastPlayedDateTime\": \"2023-06-29T09:00:15.010000Z\", \"playDuration\": \"PT1H59M13S\"}, {\"titleId\": \"CUSA29776_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T04:12:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-29T05:54:30.790000Z\", \"playDuration\": \"PT1H41M19S\"}, {\"titleId\": \"PPSA11427_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T03:02:16.330000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:19:39.390000Z\", \"playDuration\": \"PT17M20S\"}, {\"titleId\": \"PPSA11426_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:56:10.890000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:02:14.440000Z\", \"playDuration\": \"PT5M57S\"}, {\"titleId\": \"CUSA38207_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:48:20.860000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:56:09.050000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA38208_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:39:07.530000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:48:18.620000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"CUSA42290_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:39:56.500000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:39:02.110000Z\", \"playDuration\": \"PT52M36S\"}, {\"titleId\": \"CUSA28677_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T11:49:30.320000Z\", \"lastPlayedDateTime\": \"2023-06-28T15:33:17.730000Z\", \"playDuration\": \"PT3H28M10S\"}, {\"titleId\": \"CUSA30060_00\", \"name\": \"Creepy Tale\", \"localizedName\": \"Creepy Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003675, \"titleIds\": [\"CUSA30095_00\", \"CUSA30060_00\"], \"name\": \"Creepy Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Creepy Tale\", \"uk-UA\": \"Creepy Tale\", \"de-DE\": \"Creepy Tale\", \"en-US\": \"Creepy Tale\", \"pt-BR\": \"Creepy Tale\", \"es-ES\": \"Creepy Tale\", \"ar-AE\": \"Creepy Tale\", \"no-NO\": \"Creepy Tale\", \"fr-CA\": \"Creepy Tale\", \"it-IT\": \"Creepy Tale\", \"pl-PL\": \"Creepy Tale\", \"ru-RU\": \"Creepy Tale\", \"nl-NL\": \"Creepy Tale\", \"pt-PT\": \"Creepy Tale\", \"sv-SE\": \"Creepy Tale\", \"da-DK\": \"Creepy Tale\", \"tr-TR\": \"Creepy Tale\", \"fr-FR\": \"Creepy Tale\", \"en-GB\": \"Creepy Tale\", \"es-419\": \"Creepy Tale\", \"ja-JP\": \"Creepy Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T10:40:10.530000Z\", \"lastPlayedDateTime\": \"2023-06-28T11:22:17.280000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"PPSA12436_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:21:50.280000Z\", \"lastPlayedDateTime\": \"2023-06-28T06:10:47.480000Z\", \"playDuration\": \"PT1H41M55S\"}, {\"titleId\": \"CUSA43662_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:15:49.570000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:18:59.010000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA44028_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:07:29.270000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:15:02.040000Z\", \"playDuration\": \"PT7M29S\"}, {\"titleId\": \"CUSA44027_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:04:08.510000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:07:25.430000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA44026_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:00:48.250000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:04:04.780000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA44029_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T03:56:02.750000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:59:33.820000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"CUSA39403_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T09:08:50.920000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:11:19.000000Z\", \"playDuration\": \"PT2H3M31S\"}, {\"titleId\": \"PPSA14477_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T12:24:24.300000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:46:29.720000Z\", \"playDuration\": \"PT20M13S\"}, {\"titleId\": \"PPSA14478_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:59:21.000000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:24:22.220000Z\", \"playDuration\": \"PT24M43S\"}, {\"titleId\": \"PPSA04895_00\", \"name\": \"Very Very Valet\", \"localizedName\": \"Very Very Valet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003435, \"titleIds\": [\"PPSA04894_00\", \"PPSA04895_00\"], \"name\": \"Very Very Valet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PARTY\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"uk-UA\": \"Very Very Valet\", \"de-DE\": \"Very Very Valet\", \"en-US\": \"Very Very Valet\", \"ko-KR\": \"Very Very Valet\", \"es-ES\": \"Very Very Valet\", \"fr-CA\": \"Very Very Valet\", \"it-IT\": \"Very Very Valet\", \"ru-RU\": \"Very Very Valet\", \"zh-Hans\": \"Very Very Valet\", \"zh-Hant\": \"Very Very Valet\", \"fr-FR\": \"Very Very Valet\", \"en-GB\": \"Very Very Valet\", \"es-419\": \"Very Very Valet\", \"ja-JP\": \"Very Very Valet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T07:16:30.450000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:59:14.260000Z\", \"playDuration\": \"PT1H51M29S\"}, {\"titleId\": \"CUSA41450_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:19:23.290000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:56:53.100000Z\", \"playDuration\": \"PT24M7S\"}, {\"titleId\": \"CUSA41451_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T10:25:00.750000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:19:21.130000Z\", \"playDuration\": \"PT31M38S\"}, {\"titleId\": \"CUSA44001_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T05:48:59.680000Z\", \"lastPlayedDateTime\": \"2023-06-27T07:11:32.910000Z\", \"playDuration\": \"PT1H22M25S\"}, {\"titleId\": \"CUSA44000_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T03:53:02.810000Z\", \"lastPlayedDateTime\": \"2023-06-27T05:43:50.150000Z\", \"playDuration\": \"PT1H50M43S\"}, {\"titleId\": \"CUSA29947_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T14:35:09.730000Z\", \"lastPlayedDateTime\": \"2023-06-27T02:53:57.440000Z\", \"playDuration\": \"PT1H58M12S\"}, {\"titleId\": \"PPSA04955_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:56:03.960000Z\", \"lastPlayedDateTime\": \"2023-06-26T14:35:07.590000Z\", \"playDuration\": \"PT3H50M12S\"}, {\"titleId\": \"CUSA43661_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:22:04.710000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:27:36.420000Z\", \"playDuration\": \"PT5M28S\"}, {\"titleId\": \"CUSA43659_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:18:33.700000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:21:25.100000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA43660_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:08:40.240000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:18:30.140000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"CUSA42512_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:04:05.740000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:08:17.750000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"CUSA44060_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:46:28.610000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:58:22.790000Z\", \"playDuration\": \"PT11M50S\"}, {\"titleId\": \"CUSA44059_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:09:28.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:46:27.140000Z\", \"playDuration\": \"PT12M31S\"}, {\"titleId\": \"CUSA42511_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:02:07.230000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:08:43.430000Z\", \"playDuration\": \"PT4M16S\"}, {\"titleId\": \"CUSA35675_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:54:11.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:58:23.970000Z\", \"playDuration\": \"PT4M9S\"}, {\"titleId\": \"CUSA35674_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:34:01.380000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:54:09.760000Z\", \"playDuration\": \"PT10M\"}, {\"titleId\": \"CUSA35889_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:28:25.400000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:33:29.890000Z\", \"playDuration\": \"PT4M31S\"}, {\"titleId\": \"CUSA35888_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:22:20.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:28:23.530000Z\", \"playDuration\": \"PT5M4S\"}, {\"titleId\": \"CUSA35887_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:18:24.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:22:17.820000Z\", \"playDuration\": \"PT3M42S\"}], \"nextOffset\": 600, \"previousOffset\": 399, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"PPSA15345_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA50636_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T10:57:10.280000Z\", \"lastPlayedDateTime\": \"2023-07-25T12:30:03.830000Z\", \"playDuration\": \"PT1H30M\"}, {\"titleId\": \"CUSA42362_00\", \"name\": \"Pretty Girls 2048 Strike\", \"localizedName\": \"Pretty Girls 2048 Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007966, \"titleIds\": [\"PPSA15345_00\", \"PPSA15346_00\", \"CUSA42362_00\", \"CUSA50636_00\", \"CUSA42363_00\"], \"name\": \"Pretty Girls 2048 Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls 2048 Strike\", \"uk-UA\": \"Pretty Girls 2048 Strike\", \"de-DE\": \"Pretty Girls 2048 Strike\", \"en-US\": \"Pretty Girls 2048 Strike\", \"ko-KR\": \"Pretty Girls 2048 Strike\", \"pt-BR\": \"Pretty Girls 2048 Strike\", \"es-ES\": \"Pretty Girls 2048 Strike\", \"ar-AE\": \"Pretty Girls 2048 Strike\", \"no-NO\": \"Pretty Girls 2048 Strike\", \"fr-CA\": \"Pretty Girls 2048 Strike\", \"it-IT\": \"Pretty Girls 2048 Strike\", \"pl-PL\": \"Pretty Girls 2048 Strike\", \"ru-RU\": \"Pretty Girls 2048 Strike\", \"zh-Hans\": \"Pretty Girls 2048 Strike\", \"nl-NL\": \"Pretty Girls 2048 Strike\", \"pt-PT\": \"Pretty Girls 2048 Strike\", \"zh-Hant\": \"Pretty Girls 2048 Strike\", \"sv-SE\": \"Pretty Girls 2048 Strike\", \"da-DK\": \"Pretty Girls 2048 Strike\", \"tr-TR\": \"Pretty Girls 2048 Strike\", \"fr-FR\": \"Pretty Girls 2048 Strike\", \"en-GB\": \"Pretty Girls 2048 Strike\", \"es-419\": \"Pretty Girls 2048 Strike\", \"ja-JP\": \"Pretty Girls 2048 Strike\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/4375dcf09c428227ef8c4346a8d2aee4f41d491ed55c0fbd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7dd3b739f7153c6b58f07ee482f041ac46bbbcd3a7289e7f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/898325a6c8562e2a4721e4b5f86465234c733a2c86da55eb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/b3271f57972684ed6849994edf52d33088ffb3b41dc9b749.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bb3677852254de427664f5f8aaed96b6b6601c3a2df4d4f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/7888f8f87c518dda8d5a841da61e99ed87a215f7b8fcca9e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/598b9d652f0eccf65a4fd845395238b397599e7feae78128.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/1c79b8acdbc1bf00bec95aaa575d8f26dd41c09dd59d376a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/bc2a72c7018deabc095e152a91b2a4ce7185b235113339a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/31e2454380861091f480bdba9c9a12daa1cecd12e36ca487.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/ed22fd6ab64ad6977f07eae8861a2bbfd8fdc1755f4988c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/a603abb4c89b81c4e2740bd2962906195620ba106b2c05bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/f7adbdb268ab351ce3439c004dd017d99b84b373da44ac0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/18e05b177c4f489524947cb2abab9ba20b418ad496bbf599.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2006/d66863e7719dbb2f15cf434d97f9411e49de76dddd698684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1402/e654a335a0e9e7c0cd726a8ed6f0eb45045a0f7be4fb0a8c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T07:05:25.900000Z\", \"lastPlayedDateTime\": \"2023-07-25T10:44:54.290000Z\", \"playDuration\": \"PT2H39M11S\"}, {\"titleId\": \"PPSA16270_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:46:23.470000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:48:26.230000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"PPSA14213_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:44:42.160000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:46:20.590000Z\", \"playDuration\": \"PT1M28S\"}, {\"titleId\": \"PPSA14214_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:42:17.520000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:44:39.340000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"PPSA16271_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:40:27.980000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:42:14.670000Z\", \"playDuration\": \"PT1M42S\"}, {\"titleId\": \"CUSA43231_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:38:22.570000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:40:02.690000Z\", \"playDuration\": \"PT1M29S\"}, {\"titleId\": \"CUSA41166_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:36:36.890000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:38:19.150000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA41167_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:34:54.690000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:36:33.810000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA43232_00\", \"name\": \"Magic Exposure - Yuri Visual Novel\", \"localizedName\": \"Magic Exposure - Yuri Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007557, \"titleIds\": [\"PPSA16271_00\", \"PPSA16270_00\", \"CUSA41167_00\", \"CUSA41166_00\", \"PPSA14213_00\", \"CUSA43232_00\", \"PPSA14214_00\", \"CUSA43231_00\"], \"name\": \"Magic Exposure - Yuri Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Magic Exposure - Yuri Visual Novel\", \"uk-UA\": \"Magic Exposure - Yuri Visual Novel\", \"de-DE\": \"Magic Exposure - Yuri Visual Novel\", \"en-US\": \"Magic Exposure - Yuri Visual Novel\", \"ko-KR\": \"Magic Exposure - Yuri Visual Novel\", \"pt-BR\": \"Magic Exposure - Yuri Visual Novel\", \"es-ES\": \"Magic Exposure - Yuri Visual Novel\", \"ar-AE\": \"Magic Exposure - Yuri Visual Novel\", \"no-NO\": \"Magic Exposure - Yuri Visual Novel\", \"fr-CA\": \"Magic Exposure - Yuri Visual Novel\", \"it-IT\": \"Magic Exposure - Yuri Visual Novel\", \"pl-PL\": \"Magic Exposure - Yuri Visual Novel\", \"ru-RU\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hans\": \"Magic Exposure - Yuri Visual Novel\", \"nl-NL\": \"Magic Exposure - Yuri Visual Novel\", \"pt-PT\": \"Magic Exposure - Yuri Visual Novel\", \"zh-Hant\": \"Magic Exposure - Yuri Visual Novel\", \"sv-SE\": \"Magic Exposure - Yuri Visual Novel\", \"da-DK\": \"Magic Exposure - Yuri Visual Novel\", \"tr-TR\": \"Magic Exposure - Yuri Visual Novel\", \"fr-FR\": \"Magic Exposure - Yuri Visual Novel\", \"en-GB\": \"Magic Exposure - Yuri Visual Novel\", \"es-419\": \"Magic Exposure - Yuri Visual Novel\", \"ja-JP\": \"Magic Exposure - Yuri Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/5087cd63de45936c6153f0c013698de8d161404452c9aa28.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/802cb08303f7f9c70c8ced09db7c2c226163ae9e081ce001.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/271dbc37bd8d948aefef159b220230a5d4e1316b00475083.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/83cb3c2bcc914ceb9ebdd950c22059163dd5d82c808804d3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/21f388ba036e0907ff79475bf2a832cc12fce1e9e4613df9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a9a3fb7f20fadad44c2945ed5b4cd07de4d5243407943250.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/0d88856d144591a0146485d12fbf1fde74191f53cb80bfff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/8e11913ffd1a53ef738681a809c7538a84f42f5a67005c05.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c522a67ad4d997c0dc86ac2a79778b76af69f9871369d930.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/afcd9cb0fd5d3ac3eb47c2ae81e6a405f31fd5f34dd41738.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/a2a9b498084d2274402dc30469856fe44c044285335cfd1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/b093ef1f4f54df64b0baaa661792df965c9a85e7e7e58b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/66dd5f2c415b5a34daa64e3d8d51f3a8296874c91d82cc5e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/c7c3eea63dff07ef263e40511df99202b62104f9a1aadec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/f0f6472745f758fe1a891183ff4d8e2095df14af4a575879.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0207/fd94c43b0e1a2d69ee2fb8c7806cecdcbd2a0f81f181c395.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2505/cb46367ddffc15a3b7fc35163a747c0245bd6302559f90a2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T06:32:59.530000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:34:52.210000Z\", \"playDuration\": \"PT1M45S\"}, {\"titleId\": \"PPSA15401_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T05:14:21.370000Z\", \"lastPlayedDateTime\": \"2023-07-25T06:22:38.880000Z\", \"playDuration\": \"PT1H8M14S\"}, {\"titleId\": \"PPSA15400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T04:10:18.920000Z\", \"lastPlayedDateTime\": \"2023-07-25T05:14:19.410000Z\", \"playDuration\": \"PT1H3M37S\"}, {\"titleId\": \"CUSA42399_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-25T01:18:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-25T02:49:53.900000Z\", \"playDuration\": \"PT1H12M16S\"}, {\"titleId\": \"CUSA42400_00\", \"name\": \"Agriculture\", \"localizedName\": \"Agriculture\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007982, \"titleIds\": [\"CUSA42400_00\", \"PPSA15400_00\", \"PPSA15401_00\", \"CUSA42399_00\"], \"name\": \"Agriculture\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Agriculture\", \"uk-UA\": \"Agriculture\", \"de-DE\": \"Agriculture\", \"en-US\": \"Agriculture\", \"ko-KR\": \"Agriculture\", \"pt-BR\": \"Agriculture\", \"es-ES\": \"Agriculture\", \"ar-AE\": \"Agriculture\", \"no-NO\": \"Agriculture\", \"fr-CA\": \"Agriculture\", \"it-IT\": \"Agriculture\", \"pl-PL\": \"Agriculture\", \"ru-RU\": \"Agriculture\", \"zh-Hans\": \"Agriculture\", \"nl-NL\": \"Agriculture\", \"pt-PT\": \"Agriculture\", \"zh-Hant\": \"Agriculture\", \"sv-SE\": \"Agriculture\", \"da-DK\": \"Agriculture\", \"tr-TR\": \"Agriculture\", \"fr-FR\": \"Agriculture\", \"en-GB\": \"Agriculture\", \"es-419\": \"Agriculture\", \"ja-JP\": \"Agriculture\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2bdbe564b312cb1e592c182b4c397122a06eff78f9e53dd9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/9d967c50f0a8f3ca7c546d7a3eb0144c2630555e0c9b5e8d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/e143040810354b6087b6505bf5668e07ad9780525125c1de.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1ba999f68a96ab2aa67bd5deff887290da433e4fce83b05a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/6d1834b8ad274c853c90832d8c2772a0cdb7a31c5095fd5f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/0d9f96387f9eb06af030d05a075f8c03cdecca66a1ceaddc.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2fd9ed507b7aa8cd1985a4cfaaa637750ef63744e6b014d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/fc40cb9ae0ac14ccd4cdccfeb0d4f5bf1171e501c9535954.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b5901f302cbdbe00e87258b44ec5fdc656c05bb7dbb91615.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/96bc4e28a712d158e7f3c307932c2972c2f39fd4b297bd41.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ba7c4482e1da823ad7bef8000552e8c53b606fe567d472f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/b92d6e31ccd3e2c7a3878cffd7b49493566a4e82f5506a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/68fee6f03ded264ec8469ac3da159e28d61085ce42eee5f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7e1d43a5081b268c4ac97d0a1dafbd4faf44cf6b70f9aa93.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7c0d3bb0f2988a438aa88333e69cbe42e3e1c78310e29956.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/5f714b09f7ea8d66fa4b0fe7f5b1999c06b343dfb5624f85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1204/676df6f7567bc813123e6a6c54aebd83ab54625018b697f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-24T13:30:18.860000Z\", \"lastPlayedDateTime\": \"2023-07-24T15:35:37.070000Z\", \"playDuration\": \"PT1H38M52S\"}, {\"titleId\": \"PPSA16727_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T14:08:25.840000Z\", \"lastPlayedDateTime\": \"2023-07-23T15:01:02.200000Z\", \"playDuration\": \"PT52M10S\"}, {\"titleId\": \"CUSA43626_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T12:53:01.020000Z\", \"lastPlayedDateTime\": \"2023-07-23T14:07:14.080000Z\", \"playDuration\": \"PT1H11M29S\"}, {\"titleId\": \"PPSA06922_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T10:40:20.330000Z\", \"lastPlayedDateTime\": \"2023-07-23T12:07:45.630000Z\", \"playDuration\": \"PT1H26M50S\"}, {\"titleId\": \"CUSA32774_00\", \"name\": \"9 Clues: The Secret of Serpent Creek\", \"localizedName\": \"9 Clues: The Secret of Serpent Creek\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004722, \"titleIds\": [\"CUSA32774_00\", \"CUSA32775_00\", \"PPSA06923_00\", \"PPSA06922_00\"], \"name\": \"9 Clues: The Secret of Serpent Creek\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"9 Clues: The Secret of Serpent Creek\", \"uk-UA\": \"9 Clues: The Secret of Serpent Creek\", \"de-DE\": \"9 Clues: The Secret of Serpent Creek\", \"en-US\": \"9 Clues: The Secret of Serpent Creek\", \"pt-BR\": \"9 Clues: The Secret of Serpent Creek\", \"es-ES\": \"9 Clues: The Secret of Serpent Creek\", \"ar-AE\": \"9 Clues: The Secret of Serpent Creek\", \"no-NO\": \"9 Clues: The Secret of Serpent Creek\", \"fr-CA\": \"9 Clues: The Secret of Serpent Creek\", \"it-IT\": \"9 Clues: The Secret of Serpent Creek\", \"pl-PL\": \"9 Clues: The Secret of Serpent Creek\", \"ru-RU\": \"9 Clues: The Secret of Serpent Creek\", \"nl-NL\": \"9 Clues: The Secret of Serpent Creek\", \"pt-PT\": \"9 Clues: The Secret of Serpent Creek\", \"sv-SE\": \"9 Clues: The Secret of Serpent Creek\", \"da-DK\": \"9 Clues: The Secret of Serpent Creek\", \"tr-TR\": \"9 Clues: The Secret of Serpent Creek\", \"fr-FR\": \"9 Clues: The Secret of Serpent Creek\", \"en-GB\": \"9 Clues: The Secret of Serpent Creek\", \"es-419\": \"9 Clues: The Secret of Serpent Creek\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/NV18anDR63hLY9qRdklGNg50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/o4LdiouUdTwhHJCU597aI7go.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/qR3Fo7gJtZChJq9Xjgaikw5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/7CYe5wZ07eZoeoJnwpr7F0iK.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2908/s7NTuOddwxqXoVqs7fxPvKHw.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/PvzjFMNARDaIwqlUXy5TN7Wa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Wk5NTUYLoKtR59cYdmBIKQZV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/FR4DrPK7IsETJvpHsOZVxCpg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/sEyP7cIB8282HveuvcGkzRiM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/gp0u0FTrth57pdJZ93TBqk0V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/DEHDU2fi8hn5Ahh9nREFEf5S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/iNx6rfTFiK1MkPJjEoZwymp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/uyRPtpjlyRksK3lowBC7IblH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/HeIM0xvE0WNU4TC3ZWqyHKEp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/Bduq0p0JKVRB4qfr46mzDeTm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2419/SW4GOJAU5cWkNx55hD9zXid2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T05:42:44.530000Z\", \"lastPlayedDateTime\": \"2023-07-23T08:59:47.640000Z\", \"playDuration\": \"PT3H14M49S\"}, {\"titleId\": \"PPSA16622_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T03:49:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-23T05:12:25.360000Z\", \"playDuration\": \"PT1H22M38S\"}, {\"titleId\": \"CUSA43535_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-23T01:43:04.640000Z\", \"lastPlayedDateTime\": \"2023-07-23T03:49:40.890000Z\", \"playDuration\": \"PT2H3M13S\"}, {\"titleId\": \"PPSA15722_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T14:53:27.180000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:54:07.250000Z\", \"playDuration\": \"PT36S\"}, {\"titleId\": \"CUSA42776_00\", \"name\": \"Adventure Pinball Bundle\", \"localizedName\": \"Adventure Pinball Bundle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008120, \"titleIds\": [\"CUSA42707_00\", \"CUSA42708_00\", \"CUSA42775_00\", \"CUSA42777_00\", \"PPSA15722_00\", \"PPSA15721_00\", \"CUSA42776_00\", \"PPSA15824_00\"], \"name\": \"Adventure Pinball Bundle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Adventure Pinball Bundle\", \"uk-UA\": \"Adventure Pinball Bundle\", \"de-DE\": \"Adventure Pinball Bundle\", \"en-US\": \"Adventure Pinball Bundle\", \"pt-BR\": \"Adventure Pinball Bundle\", \"es-ES\": \"Adventure Pinball Bundle\", \"ar-AE\": \"Adventure Pinball Bundle\", \"no-NO\": \"Adventure Pinball Bundle\", \"fr-CA\": \"Adventure Pinball Bundle\", \"it-IT\": \"Adventure Pinball Bundle\", \"pl-PL\": \"Adventure Pinball Bundle\", \"ru-RU\": \"Adventure Pinball Bundle\", \"nl-NL\": \"Adventure Pinball Bundle\", \"pt-PT\": \"Adventure Pinball Bundle\", \"sv-SE\": \"Adventure Pinball Bundle\", \"da-DK\": \"Adventure Pinball Bundle\", \"tr-TR\": \"Adventure Pinball Bundle\", \"fr-FR\": \"Adventure Pinball Bundle\", \"en-GB\": \"Adventure Pinball Bundle\", \"es-419\": \"Adventure Pinball Bundle\", \"ja-JP\": \"\\u30a2\\u30c9\\u30d9\\u30f3\\u30c1\\u30e3\\u30fc\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/e5b321fde54d1191c85481b78709d265fdac4747069d389f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/28e1a0600d4b203223673fbbc1928fef7f3d3a230ee73420.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/a717f2f12c3a75a61f668ca72bd45076ace24ad626efbe0a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/c8696e28276cd167fd1cdaff99de310c95007d5fb108c752.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/266055dd24a748cbc4bc0605df13cf07670bcb13c0b00d4e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/aeea8f468449a34d253acfa6ebff2b5c936eb9f14adc723a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9d53b6272cd7f6e2fda320014259fa221dd4f812468ddc63.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/ece90fcf7c64f1ff13124edd5ca02bc93088497ca5d367fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/59a6e95bfd5bc35ca5d6a5d3ba8717176280920d9e834e3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/bbd112819203cf2005ea5a8d5b788b63c1e572f9854019f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/d58fc7ef2a602fbce805e3f110659316070ec997c0073ae2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/60b6fd11b1a27336ef4823a574905234cef53b3ea1d0e0e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/394c192c4da66c8415a6db3fd4e02706a2a8d8a34eb203a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/0ccce28a7be23490f18f2cb78f0be88ddc9e5169e63c79aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/4cbe7dc1bcb02be0949e4d546d011193c15f61a642b3c2a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/9e948182f87cef26b0272b0cde53bc5636964c8a6bff49cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1211/32fd57b90d3ef60b57c1c6e3a799f52f78de1edc1f7e22c5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T13:02:49.610000Z\", \"lastPlayedDateTime\": \"2023-07-22T14:46:46.880000Z\", \"playDuration\": \"PT57M23S\"}, {\"titleId\": \"PPSA05394_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T12:00:52.620000Z\", \"lastPlayedDateTime\": \"2023-07-22T13:02:46.290000Z\", \"playDuration\": \"PT1H1M43S\"}, {\"titleId\": \"PPSA05395_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T10:33:07.480000Z\", \"lastPlayedDateTime\": \"2023-07-22T12:00:49.190000Z\", \"playDuration\": \"PT58M2S\"}, {\"titleId\": \"CUSA27163_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-22T01:43:01.390000Z\", \"lastPlayedDateTime\": \"2023-07-22T03:01:33.390000Z\", \"playDuration\": \"PT1H18M14S\"}, {\"titleId\": \"CUSA27164_00\", \"name\": \"Ayre and the Crystal Comet\", \"localizedName\": \"Ayre and the Crystal Comet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002549, \"titleIds\": [\"PPSA05395_00\", \"PPSA05394_00\", \"CUSA27163_00\", \"CUSA27165_00\", \"CUSA27164_00\", \"CUSA27166_00\"], \"name\": \"Ayre and the Crystal Comet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ayre and the Crystal Comet\", \"uk-UA\": \"Ayre and the Crystal Comet\", \"de-DE\": \"Ayre and the Crystal Comet\", \"en-US\": \"Ayre and the Crystal Comet\", \"ko-KR\": \"Ayre and the Crystal Comet\", \"pt-BR\": \"Ayre and the Crystal Comet\", \"es-ES\": \"Ayre and the Crystal Comet\", \"ar-AE\": \"Ayre and the Crystal Comet\", \"no-NO\": \"Ayre and the Crystal Comet\", \"fr-CA\": \"Ayre and the Crystal Comet\", \"it-IT\": \"Ayre and the Crystal Comet\", \"pl-PL\": \"Ayre and the Crystal Comet\", \"ru-RU\": \"Ayre and the Crystal Comet\", \"zh-Hans\": \"Ayre and the Crystal Comet\", \"nl-NL\": \"Ayre and the Crystal Comet\", \"pt-PT\": \"Ayre and the Crystal Comet\", \"zh-Hant\": \"Ayre and the Crystal Comet\", \"sv-SE\": \"Ayre and the Crystal Comet\", \"da-DK\": \"Ayre and the Crystal Comet\", \"tr-TR\": \"Ayre and the Crystal Comet\", \"fr-FR\": \"Ayre and the Crystal Comet\", \"en-GB\": \"Ayre and the Crystal Comet\", \"es-419\": \"Ayre and the Crystal Comet\", \"ja-JP\": \"Ayre and the Crystal Comet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/f804e97297f9dc7ab74445759933adaaa3955c803f95ae8e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/7ef0d3391f8932dc910472eb0e6993531f0173ac1218c8a9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1fa46fe6d526bde05526e9eb335b2e8f16833607a9062235.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/3dab0d99a17134b5c7c94a7ab67c00c30500365d71567045.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/c25e0fb84e6c6f10f0c223578b63712409f3625b8fa3cbc5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/80c209b64f052a398c5b23efb8ec5d1ef36e90076314794b.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/5c515bfea678eebbc47e9a24bc900df9fb195fa2b9341c59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/d4c809a7f0313204491fe804b5ee6bc0736b50918d0ad7c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a9202043a55602bcb78a40638b561adeb8df3b6779bb8e27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/238fb8261fc3fd500372e26663d5b2c338f8d6b981b100e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/15b6697806786cab4ddf19955fec3826c9333dd660aec51f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a48c507322ee3f1d04a6fbb09eb6a3e20a5c04f8e9fa884e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a5ef841fa6e3f7895bb6851accf5cc21880f7e6dbeb4c6e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/8e089e7378744c746d49174f6c3eca99da7d137c2c018775.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/a197a3069801dcfc91ea370124e7892cb0108bcc93e25fd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2011/1da923371c2c977b541f813af883ba2b13f4427371700c87.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0809/1sUhSR79IO6wKFZj9DF6gafU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T22:02:59.250000Z\", \"lastPlayedDateTime\": \"2023-07-22T01:42:57.400000Z\", \"playDuration\": \"PT1H15M25S\"}, {\"titleId\": \"CUSA43643_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\", \"PPSA16741_00\", \"PPSA16740_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:27:50.470000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:29:19.150000Z\", \"playDuration\": \"PT1M25S\"}, {\"titleId\": \"CUSA43642_00\", \"name\": \"Platform Game Maker\", \"localizedName\": \"Platform Game Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008500, \"titleIds\": [\"CUSA43642_00\", \"CUSA43643_00\", \"PPSA16741_00\", \"PPSA16740_00\"], \"name\": \"Platform Game Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Platform Game Maker\", \"uk-UA\": \"Platform Game Maker\", \"de-DE\": \"Platform Game Maker\", \"en-US\": \"Platform Game Maker\", \"ko-KR\": \"Platform Game Maker\", \"pt-BR\": \"Platform Game Maker\", \"es-ES\": \"Platform Game Maker\", \"ar-AE\": \"Platform Game Maker\", \"no-NO\": \"Platform Game Maker\", \"fr-CA\": \"Platform Game Maker\", \"it-IT\": \"Platform Game Maker\", \"pl-PL\": \"Platform Game Maker\", \"ru-RU\": \"Platform Game Maker\", \"zh-Hans\": \"Platform Game Maker\", \"nl-NL\": \"Platform Game Maker\", \"pt-PT\": \"Platform Game Maker\", \"zh-Hant\": \"Platform Game Maker\", \"sv-SE\": \"Platform Game Maker\", \"da-DK\": \"Platform Game Maker\", \"tr-TR\": \"Platform Game Maker\", \"fr-FR\": \"Platform Game Maker\", \"en-GB\": \"Platform Game Maker\", \"es-419\": \"Platform Game Maker\", \"ja-JP\": \"Platform Game Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/1804fd638ad1601f675608d134956ef9417836e430a8c55d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4178eadc3f0f53f85274c4ff4571cfd632b0c7e4186ea4af.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/4fdcd3f9e660d16eac31b19aa14e260e3ae04fce2f9fffb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/a0ff5d9325ceb34a9ee59c8102e87a0188cdb3dc32a52215.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/01a873384189fa8ad42ff9bf85c824b9991b093652bd4247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/084fe7a4b7c3849e88d2587992981fc93a13493dc6e54c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/14684f058724c808650b02910597c489429a4cf9822e3969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/460158ec00b78393873905c2f3f98ff9ca34b63cf0570b1b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/5ed7bc5260d7a1d0189f2c38262c7694658589b270d0f874.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/87a54139bc8e40482088a38a30dbcf4646e76cab47ce2c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/8ffbac0a77ff2068b9c4afa5ce3bfd30d3dc1c18dff1fc8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1116/b96c88236c800d192c84ff865415b061d6a25868321c4265.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202411/2206/c6cad6d232b227811c5f813b7721936b827b44747792c250.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1110/afa7191438434a4ceb4e445b2c68dbb18e5b2c3e0f241688.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:22:44.130000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:25:10.090000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"PPSA17157_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:19:08.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:22:40.760000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA17158_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:14:11.550000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:19:05.000000Z\", \"playDuration\": \"PT3M54S\"}, {\"titleId\": \"PPSA17155_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:11:12.690000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:14:08.180000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"PPSA17156_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T13:08:12.650000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:11:09.100000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"CUSA43992_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:57:13.500000Z\", \"lastPlayedDateTime\": \"2023-07-21T13:01:00.440000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"CUSA43990_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:49:00.270000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:57:10.270000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43991_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:45:53.560000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:48:57.100000Z\", \"playDuration\": \"PT2M58S\"}, {\"titleId\": \"CUSA43993_00\", \"name\": \"MetaDude\", \"localizedName\": \"MetaDude\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008679, \"titleIds\": [\"PPSA17158_00\", \"CUSA43993_00\", \"CUSA43992_00\", \"CUSA43990_00\", \"CUSA43991_00\", \"PPSA17157_00\", \"PPSA17155_00\", \"PPSA17156_00\"], \"name\": \"MetaDude\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MetaDude\", \"uk-UA\": \"MetaDude\", \"de-DE\": \"MetaDude\", \"en-US\": \"MetaDude\", \"ko-KR\": \"MetaDude\", \"pt-BR\": \"Meta-Cara\", \"es-ES\": \"MetaDude\", \"ar-AE\": \"MetaDude\", \"no-NO\": \"MetaDude\", \"fr-CA\": \"MetaDude\", \"it-IT\": \"MetaDude\", \"pl-PL\": \"MetaDude\", \"ru-RU\": \"\\u041c\\u0435\\u0442\\u0430\\u0427\\u0443\\u0432\\u0430\\u043a\", \"zh-Hans\": \"MetaDude\", \"nl-NL\": \"MetaDude\", \"pt-PT\": \"Meta-Cara\", \"zh-Hant\": \"MetaDude\", \"sv-SE\": \"MetaDude\", \"da-DK\": \"MetaDude\", \"tr-TR\": \"MetaDude\", \"fr-FR\": \"MetaDude\", \"en-GB\": \"MetaDude\", \"es-419\": \"MetaDude\", \"ja-JP\": \"MetaDude\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/27c17406cbafe09f7256be78150614358793b3edefeb649c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/42054ab19ac4742d57c3cc8177e13d1134eeac0ecce8c83d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/121d1be852e4c0118002aa6171acc6c0f933f4283e58f12d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/4c08d3a0ae5baee34aa61f095216a298a5e636c5ff775672.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/0f6b19ff775dd5f5f3ec1eedc25dc50ad2b1bb0544e37434.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/a991affb2df2b272411264566eb56e1a261b6aa75d6b7171.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/64e8a68d671b182c766a658ba5fde9d37370884b3c52ca2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/295fbfb7fc82abbe8a902b3d1826714456628d41a42698aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/9fd80b2a09048610ed0641b97c3017dc8879050065317f20.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/4c336a35612cbe80c736007d9b324375070abb24909f6259.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/6d6c4457649ef78f4ce8f917e0c884488fe91e4ff4e68c35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1712/eb35e5fa7a54fc45fa596df13c9d8e8cae95b1ae77118112.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1020/05d7720fd2157fd3de4e9ecc1a952d873a9e97044e3691d9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:40:04.060000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:45:50.420000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA44224_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:35:10.370000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:37:43.360000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA44223_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:32:09.640000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:35:07.770000Z\", \"playDuration\": \"PT2M49S\"}, {\"titleId\": \"PPSA12585_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:23:05.000000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:26:55.180000Z\", \"playDuration\": \"PT3M33S\"}, {\"titleId\": \"PPSA12586_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:18:58.510000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:23:03.310000Z\", \"playDuration\": \"PT3M57S\"}, {\"titleId\": \"CUSA39542_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:14:54.110000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:18:56.170000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA39543_00\", \"name\": \"Hungry Monster\", \"localizedName\": \"Hungry Monster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006944, \"titleIds\": [\"CUSA39542_00\", \"PPSA12585_00\", \"CUSA39541_00\", \"CUSA39543_00\", \"CUSA39540_00\", \"PPSA12583_00\", \"PPSA12584_00\", \"PPSA12586_00\"], \"name\": \"Hungry Monster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hungry Monster\", \"uk-UA\": \"Hungry Monster\", \"de-DE\": \"Hungry Monster\", \"en-US\": \"Hungry Monster\", \"ko-KR\": \"Hungry Monster\", \"pt-BR\": \"Hungry Monster\", \"es-ES\": \"Hungry Monster\", \"ar-AE\": \"Hungry Monster\", \"no-NO\": \"Hungry Monster\", \"fr-CA\": \"Hungry Monster\", \"it-IT\": \"Hungry Monster\", \"pl-PL\": \"Hungry Monster\", \"ru-RU\": \"Hungry Monster\", \"zh-Hans\": \"Hungry Monster\", \"nl-NL\": \"Hungry Monster\", \"pt-PT\": \"Hungry Monster\", \"zh-Hant\": \"Hungry Monster\", \"sv-SE\": \"Hungry Monster\", \"da-DK\": \"Hungry Monster\", \"tr-TR\": \"Hungry Monster\", \"fr-FR\": \"Hungry Monster\", \"en-GB\": \"Hungry Monster\", \"es-419\": \"Hungry Monster\", \"ja-JP\": \"Hungry Monster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/oSZryJzCnzGcrH2ByHO1qmr2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/wAcOwrruLjn9y335VnWpOjoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/jM24FToIqcsUTCoYwReFEQin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/8jDIGJkRIzkQSDaEAZkVoBSm.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/w0MtTFdCwFobPzvuXkfbdyMF.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1LgbnFD4JZwGXYuGeWLmbP7q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2cbdd37a9261388cdcf5656d72e69672748d01d7c5f7b06d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/18dfeb2ca32111c12ec0e93758e64ea575acd4068dbddc3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/8669839fdbf147843180c89ac5255fcd40ea16ac486f914a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/fc8091ed0bc7741145ada42861862154743072ef38f81b54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1613/1KDtzrp8yntSWvTElJyu9OPb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T12:10:16.670000Z\", \"lastPlayedDateTime\": \"2023-07-21T12:14:52.050000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA42695_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-21T00:50:53.290000Z\", \"lastPlayedDateTime\": \"2023-07-21T08:01:10.000000Z\", \"playDuration\": \"PT5H52M1S\"}, {\"titleId\": \"CUSA42694_00\", \"name\": \"AMAZE!\", \"localizedName\": \"AMAZE!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008115, \"titleIds\": [\"CUSA42694_00\", \"CUSA42695_00\"], \"name\": \"AMAZE!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"AMAZE!\", \"uk-UA\": \"AMAZE!\", \"de-DE\": \"AMAZE!\", \"en-US\": \"AMAZE!\", \"pt-BR\": \"AMAZE!\", \"es-ES\": \"AMAZE!\", \"ar-AE\": \"AMAZE!\", \"no-NO\": \"AMAZE!\", \"fr-CA\": \"AMAZE!\", \"it-IT\": \"AMAZE!\", \"pl-PL\": \"AMAZE!\", \"ru-RU\": \"AMAZE!\", \"nl-NL\": \"AMAZE!\", \"pt-PT\": \"AMAZE!\", \"sv-SE\": \"AMAZE!\", \"da-DK\": \"AMAZE!\", \"tr-TR\": \"AMAZE!\", \"fr-FR\": \"AMAZE!\", \"en-GB\": \"AMAZE!\", \"es-419\": \"AMAZE!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/58a628abe8489cb66cbbf638ea8484f9161d0bd1abf5aa75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/ede6d9a9b82cc0728daf271747f9cd4a056dfc38b1a76f0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6dc050f4255c58e19051ae70c6f8b51d950f0755ed3ad4b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b5ad56718779b35a803fa5d38718a047e7cfda347f255692.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/a260a4ff6a22b6e4fd1675acac9eac8eef532c42a82b5d21.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b4004ca4c4b717beebe8e32a3d0be128d1fc2524d0e3879a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6a3cb49c2850c0ef45a99f80e56ce9f2c376dd0f54a844e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/5d7cafebddeb06a1244a152dc048ccf51640ae9f1a4e2b59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/87a2f8ebe21ac8d02414971a0fc06d2cbc92188885eb51cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/6c33d6233dde4029a7eaaf262020c76d68c97afb2bbcf12f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/8337d46227179a37e27f69eb6693fc1757726f255a485ff5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/19a812d6e81153a3773015a2efac78b1c041735450441922.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1411/b9de53d5b5c9207870d24f20ecca9d033fd7b05deccddcd7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:54:22.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T15:34:30.760000Z\", \"playDuration\": \"PT8H56M29S\"}, {\"titleId\": \"PPSA15897_00\", \"name\": \"The Complex\", \"localizedName\": \"The Complex\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10000347, \"titleIds\": [\"CUSA32389_00\", \"CUSA32390_00\", \"PPSA15898_00\", \"PPSA15897_00\", \"CUSA18654_00\", \"CUSA18645_00\"], \"name\": \"The Complex\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Complex\", \"uk-UA\": \"The Complex\", \"de-DE\": \"The Complex\", \"en-US\": \"The Complex\", \"ko-KR\": \"The Complex\", \"pt-BR\": \"The Complex\", \"es-ES\": \"The Complex\", \"ar-AE\": \"The Complex\", \"no-NO\": \"The Complex\", \"fr-CA\": \"The Complex\", \"it-IT\": \"The Complex\", \"pl-PL\": \"The Complex\", \"ru-RU\": \"The Complex\", \"zh-Hans\": \"The Complex \\u590d\\u4f53\", \"nl-NL\": \"The Complex\", \"pt-PT\": \"The Complex\", \"zh-Hant\": \"The Complex \\u590d\\u4f53\", \"sv-SE\": \"The Complex\", \"da-DK\": \"The Complex\", \"tr-TR\": \"The Complex\", \"fr-FR\": \"The Complex\", \"en-GB\": \"The Complex\", \"es-419\": \"The Complex\", \"ja-JP\": \"The Complex\\u30af\\u30ed\\u30e6\\u30ea\\u56e3\\u5730\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/MnODNFYBKJbYUnUd0SVrxHBp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/TQIFEqhtk1yJwQmTPRZEAegk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/yGfogfZ0yr7663vXBk6loy3A.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/1012/zHl7XrMGTH61oEWL1Nlyb8fG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113074wONiQiIFae10qpVpwZJ98q3Qqzogn0qpY5Zdi4JYsMYb9F9SWa8zMacdQtMUkGiJvV3HrC5EUFULSuFOqJMUQbAblJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/1130762M7oN38mUnvhSd14VKk9Zpt69cDGCAOShMfknje-5Qdyul-vGfP8J20JNt8cSk7269L88YXG8Uq4dr7-zcnyU4VGLp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113076__J5gf6G7v2jpBJ-nJ8QlqZP74ER5Gun9bDbb7L0rYBR2BwuOKC7TtlWZ_a8-cEQlq3FAH0oafnffr72QmLng2i6_A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307NMQXNNuysVBCm7Eys0W-kWeyFsrNRUaSCCeJamaqJ4ouVIpfzon8WmNzIDzbJlCTPEIIMAEASDOUwzK87-W3fUCv5vL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307W7DQN5aokm4lZkvBt1zvcX7kQ12MQz2Ox5Hjw6n8PBERXExulfcbp9lgDevcLpq6U8hSDac8DF3jkqThWBQL3Mt2jpe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307fad42t0556xU5jS5VSU3StWoAsQypKBRlNN31QwbGaEvNkTNAnjCsN2uTOwp1-Hsl29w0w04MiZqOV4W7tL9qcxheeU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307kKCD6phXrqX8f0sFQnGAhgCCvFclxCbOS9C0QEwsVZ4fUhuOXRmazgfazBDMlLo9sNCfDX9GHBJXn3E6JrecPwoq_9N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lCWe-Y5sgMtJ-buGacNBC9uA7Rc9Ecc5JkYAI01P6W4GTxht0L07jsue76Gg4t0oxsNkUhjPkAlR6cfgSvdbfQUsq3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307yrVpTAHKtbcFtPBSHvXEe3qVzoJ-dOYWfcXIxPamnnky2hr_gcSRQ8zjMsFt6YZOyIm9y8BgxGfv1mYTzokMi0aZItF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/3sXwyKP4ixEpvPdJvxGFjBkC.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/1317/hGUX46m13JP2zv2AwSCfvpuU.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18654_00/2/i_5a639e645cec635da627c2ee639f94824dd8cec5c237e04eb0fcf8b3a3367af2/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-19T05:16:18.540000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:34:32.830000Z\", \"playDuration\": \"PT4H29M32S\"}, {\"titleId\": \"PPSA13287_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:16:32.860000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:29:01.550000Z\", \"playDuration\": \"PT11M31S\"}, {\"titleId\": \"PPSA17415_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:12:55.890000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:15:48.680000Z\", \"playDuration\": \"PT2M33S\"}, {\"titleId\": \"PPSA17414_00\", \"name\": \"Plumber Puzzles\", \"localizedName\": \"Plumber Puzzles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008785, \"titleIds\": [\"CUSA44224_00\", \"CUSA44223_00\", \"PPSA17415_00\", \"PPSA17414_00\"], \"name\": \"Plumber Puzzles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Plumber Puzzles\", \"uk-UA\": \"Plumber Puzzles\", \"de-DE\": \"Plumber Puzzles\", \"en-US\": \"Plumber Puzzles\", \"ko-KR\": \"Plumber Puzzles\", \"pt-BR\": \"Plumber Puzzles\", \"es-ES\": \"Plumber Puzzles\", \"ar-AE\": \"Plumber Puzzles\", \"no-NO\": \"Plumber Puzzles\", \"fr-CA\": \"Plumber Puzzles\", \"it-IT\": \"Plumber Puzzles\", \"pl-PL\": \"Plumber Puzzles\", \"ru-RU\": \"Plumber Puzzles\", \"zh-Hans\": \"Plumber Puzzles\", \"nl-NL\": \"Plumber Puzzles\", \"pt-PT\": \"Plumber Puzzles\", \"zh-Hant\": \"Plumber Puzzles\", \"sv-SE\": \"Plumber Puzzles\", \"da-DK\": \"Plumber Puzzles\", \"tr-TR\": \"Plumber Puzzles\", \"fr-FR\": \"Plumber Puzzles\", \"en-GB\": \"Plumber Puzzles\", \"es-419\": \"Plumber Puzzles\", \"ja-JP\": \"Plumber Puzzles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/2cc3587d0a85d757105b7c153cc2a835be8b6f195942668b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/30f2ab1f2ecf95b22839bdf98c61530d85f62b047d1fbd86.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/ca5d05f71c32faa05f91d64b18cbb0399e16821072369268.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/dd149ef3597806c468ac07ef5f087a6c966adbccf042b028.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/bd9dc7941d5bc0f8301e9c50dbadd5089667f051771d0991.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/c6310dd9d74722a2560543d8025f175da18ebe8b06d97722.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/3143e706c61e0bf64d78b662968959a0ff68f9b36be870b0.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4eb994adc8bdb71892448f9d9d5f87203a35be36b532afc5.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/4c666a3c36b58c35c95bff50cfee2c0eccaa6e9af3ca0889.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0616/6c07133521d24f958141279a508a5bbaef9f621e325ddaff.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:09:43.960000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:12:52.770000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"PPSA17365_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T02:05:16.340000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:09:16.960000Z\", \"playDuration\": \"PT3M31S\"}, {\"titleId\": \"PPSA17364_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:55:17.510000Z\", \"lastPlayedDateTime\": \"2023-07-20T02:05:13.540000Z\", \"playDuration\": \"PT9M44S\"}, {\"titleId\": \"CUSA44178_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:48:34.170000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:54:46.280000Z\", \"playDuration\": \"PT6M8S\"}, {\"titleId\": \"CUSA44179_00\", \"name\": \"Pure Mini Golf\", \"localizedName\": \"Pure Mini Golf\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008765, \"titleIds\": [\"CUSA44179_00\", \"CUSA44178_00\", \"PPSA17365_00\", \"PPSA17364_00\"], \"name\": \"Pure Mini Golf\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pure Mini Golf\", \"uk-UA\": \"Pure Mini Golf\", \"de-DE\": \"Pure Mini Golf\", \"en-US\": \"Pure Mini Golf\", \"ko-KR\": \"Pure Mini Golf\", \"pt-BR\": \"Pure Mini Golf\", \"es-ES\": \"Pure Mini Golf\", \"ar-AE\": \"Pure Mini Golf\", \"no-NO\": \"Pure Mini Golf\", \"fr-CA\": \"Pure Mini Golf\", \"it-IT\": \"Pure Mini Golf\", \"pl-PL\": \"Pure Mini Golf\", \"ru-RU\": \"Pure Mini Golf\", \"zh-Hans\": \"Pure Mini Golf\", \"nl-NL\": \"Pure Mini Golf\", \"pt-PT\": \"Pure Mini Golf\", \"zh-Hant\": \"Pure Mini Golf\", \"sv-SE\": \"Pure Mini Golf\", \"da-DK\": \"Pure Mini Golf\", \"tr-TR\": \"Pure Mini Golf\", \"fr-FR\": \"Pure Mini Golf\", \"en-GB\": \"Pure Mini Golf\", \"es-419\": \"Pure Mini Golf\", \"ja-JP\": \"Pure Mini Golf\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/fb67824e30d79ba79be4fa1b51ae18f0ab49ed4d661e03d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/397c4168c55384cdac770715e24ebcaf437b784686a467b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2814/97156e347c7cee2ba4205f7d9a4263bdfe64f0f87766daf7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/b959f5b8ea221095df0254a3531e54da2fc2119b5ce7917a.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12e8f4e14921e5de7edd42be42a0194e1aafb8d2060139f2.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/9c7ed1951034d290f8ad24b319c9899f3b9b4ed375fb79d4.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/325e2bd56133797a134848362352483d1fb6aef8663f9478.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/6ab4464d055d71ceec66fa3b3beed5136451c452bbcaf576.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/5eef3b4b562b18486db71c364a920e9393f9cf0d25bfe187.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2717/12c40548ce1e63d250d475ecd85c279742601657810e8b89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:34:28.790000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:48:31.680000Z\", \"playDuration\": \"PT4M43S\"}, {\"titleId\": \"CUSA44222_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:19:54.130000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:33:48.030000Z\", \"playDuration\": \"PT13M13S\"}, {\"titleId\": \"CUSA44221_00\", \"name\": \"Pocket Soccer\", \"localizedName\": \"Pocket Soccer\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008784, \"titleIds\": [\"CUSA44222_00\", \"CUSA44221_00\", \"PPSA17412_00\", \"PPSA17413_00\"], \"name\": \"Pocket Soccer\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pocket Soccer\", \"uk-UA\": \"Pocket Soccer\", \"de-DE\": \"Pocket Soccer\", \"en-US\": \"Pocket Soccer\", \"ko-KR\": \"Pocket Soccer\", \"pt-BR\": \"Pocket Soccer\", \"es-ES\": \"Pocket Soccer\", \"ar-AE\": \"Pocket Soccer\", \"no-NO\": \"Pocket Soccer\", \"fr-CA\": \"Pocket Soccer\", \"it-IT\": \"Pocket Soccer\", \"pl-PL\": \"Pocket Soccer\", \"ru-RU\": \"Pocket Soccer\", \"zh-Hans\": \"Pocket Soccer\", \"nl-NL\": \"Pocket Soccer\", \"pt-PT\": \"Pocket Soccer\", \"zh-Hant\": \"Pocket Soccer\", \"sv-SE\": \"Pocket Soccer\", \"da-DK\": \"Pocket Soccer\", \"tr-TR\": \"Pocket Soccer\", \"fr-FR\": \"Pocket Soccer\", \"en-GB\": \"Pocket Soccer\", \"es-419\": \"Pocket Soccer\", \"ja-JP\": \"Pocket Soccer\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/b4ce6eceaac62067846222a458e0ee4990316efb479cb9e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/5a6bb6ab4c3c053904ac7daf8f4ce6f13b43d385483ff32b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/39066bbf93b29bdfa2a6e6a51f491e7106f9bf26af12d822.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/8df52d1a3d2224b6184468391e00d57d01c4d46112345366.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/753edaa4af59ec197a4eebd46db4b906632e380cb9ec6667.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/9a01cb029b9de4c921ae81cf3602957b29b98b043b368b1f.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/94d52e54ecab49dbae3288a00ed91aef8a97a64bb0be2ee3.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/42e45c518b7c9aa68f2b4d08b2e053e68c2a805b698fa58e.jpeg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0416/92d961a2ad26e98ebe9c4a4927336f3c4212e41c7003641e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-20T01:01:10.420000Z\", \"lastPlayedDateTime\": \"2023-07-20T01:19:51.040000Z\", \"playDuration\": \"PT18M6S\"}, {\"titleId\": \"CUSA28035_00\", \"name\": \"OMNO\", \"localizedName\": \"OMNO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 9, \"concept\": {\"id\": 10002920, \"titleIds\": [\"CUSA28681_00\", \"CUSA28035_00\"], \"name\": \"OMNO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"OMNO\", \"uk-UA\": \"OMNO\", \"de-DE\": \"OMNO\", \"en-US\": \"OMNO\", \"ko-KR\": \"OMNO\", \"pt-BR\": \"OMNO\", \"es-ES\": \"OMNO\", \"ar-AE\": \"OMNO\", \"no-NO\": \"OMNO\", \"fr-CA\": \"OMNO\", \"it-IT\": \"OMNO\", \"pl-PL\": \"OMNO\", \"ru-RU\": \"OMNO\", \"zh-Hans\": \"OMNO\", \"nl-NL\": \"OMNO\", \"pt-PT\": \"OMNO\", \"zh-Hant\": \"OMNO\", \"sv-SE\": \"OMNO\", \"da-DK\": \"OMNO\", \"tr-TR\": \"OMNO\", \"fr-FR\": \"OMNO\", \"en-GB\": \"OMNO\", \"es-419\": \"OMNO\", \"ja-JP\": \"OMNO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/6NNvVebNpr0cF1L2mzYcMD3E.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uSlXkNkGPxvXbtCtMPYRF28g.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/R5nYGx7Uc4IBcWylnmrK2HKE.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1011/iuB6NhQBfcelKjp1xycJHbSD.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/NMZhEOx1Mc5V21J9TDOFKYTL.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/m06MsHoGa1uR6nAfQN1cx1UX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/E8V8hJ33RMyAKZky3JP6jkeC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/2BEiEaMEN4FoW4MGU6ChhTUs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/uNLQcx4LjH82geLNIPl9uBrf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/0nM8cUHj2W45yXOyvRdE9uZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/HSuvg9dolgY1QjpIVvca21K0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/SbAHOnXdYRa7v3gu1z3uhhJ4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/U4yCbx3zq5eItwN9YqF2aq09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/BcuteCJz39wSI1Kz0ubkYIKm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/Z2yB7sBUzS4f3I1vETqFcXyq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/1009/KLLCkup4Uy2QiFRv1AgBmuD4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2614/XH1B1VNaFirvpYxYWpFlLuQN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T10:42:00.110000Z\", \"lastPlayedDateTime\": \"2023-07-19T03:02:22.710000Z\", \"playDuration\": \"PT5H44M33S\"}, {\"titleId\": \"PPSA15226_00\", \"name\": \"NARAKA: BLADEPOINT\", \"localizedName\": \"NARAKA: BLADEPOINT\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004405, \"titleIds\": [\"CUSA42174_00\", \"CUSA42663_00\", \"PPSA16591_00\", \"CUSA42749_00\", \"PPSA15226_00\", \"CUSA42669_00\", \"PPSA15239_00\", \"CUSA43513_00\", \"CUSA42670_00\", \"CUSA42176_00\"], \"name\": \"NARAKA: BLADEPOINT\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/0d8d0ccdd599507fc9dd32fcf6067b0e7428e2d0e3e4749e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/0410/9fddde8707cc6217eca855c3e1231c0b2322a97c851d794b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/51678970811202d2465c410ff63829f19cd4ce3e6ce599ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"NARAKA: BLADEPOINT\", \"uk-UA\": \"NARAKA: BLADEPOINT\", \"de-DE\": \"NARAKA: BLADEPOINT\", \"en-US\": \"NARAKA: BLADEPOINT\", \"ko-KR\": \"\\ub098\\ub77c\\uce74:\\ube14\\ub808\\uc774\\ub4dc\\ud3ec\\uc778\\ud2b8\", \"pt-BR\": \"NARAKA: BLADEPOINT\", \"es-ES\": \"NARAKA: BLADEPOINT\", \"ar-AE\": \"NARAKA: BLADEPOINT\", \"no-NO\": \"NARAKA: BLADEPOINT\", \"fr-CA\": \"NARAKA: BLADEPOINT\", \"it-IT\": \"NARAKA: BLADEPOINT\", \"pl-PL\": \"NARAKA: BLADEPOINT\", \"ru-RU\": \"NARAKA: BLADEPOINT\", \"zh-Hans\": \"\\u6c38\\u52ab\\u65e0\\u95f4\", \"nl-NL\": \"NARAKA: BLADEPOINT\", \"pt-PT\": \"NARAKA: BLADEPOINT\", \"zh-Hant\": \"\\u6c38\\u52ab\\u7121\\u9593\", \"sv-SE\": \"NARAKA: BLADEPOINT\", \"da-DK\": \"NARAKA: BLADEPOINT\", \"tr-TR\": \"NARAKA: BLADEPOINT\", \"fr-FR\": \"NARAKA: BLADEPOINT\", \"en-GB\": \"NARAKA: BLADEPOINT\", \"es-419\": \"NARAKA: BLADEPOINT\", \"ja-JP\": \"NARAKA: BLADEPOINT\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/088f86470cefecb1cac5d47e511839f95537721eee916099.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/0d8d0ccdd599507fc9dd32fcf6067b0e7428e2d0e3e4749e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/0410/9fddde8707cc6217eca855c3e1231c0b2322a97c851d794b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0505/6e30a5847da63ab6c2f9082ddf7f503ec2db25b1ccd9917e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/1107/44208e71868da5754680309e296550ecc0b4c0a7ef88221f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/51678970811202d2465c410ff63829f19cd4ce3e6ce599ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/2e4e2e2f8202ba8433956ce522775f48cd3b3c785b8d8f36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/06b67851837ca9a1dda48e345d2ebb007fb9e1acf8867cf1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/3f09a865e06b8bfd7d4bdd7e92f8aebdc83b69a9f4f03990.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f39eb64e875b5045a76b7f1dc5c7744ec374d3efd1b97b5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/af04b66257bc7e6f70509ca526211b5b289448b43c2e4196.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/cb60c9a88c37f441102db0443b6a93c25bbb0cad24724e7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/6b87b9813b69d4cb7f553e4ba0e3ece55d6f9dc5be0d6dc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0413/f5f4747bfa59c356a5cae1dbbfea0b17986d2c385de88f21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1011/5f1de0e3af7d09ea898f49415cab6dc58e16b70db95fefc4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T08:30:42.550000Z\", \"lastPlayedDateTime\": \"2023-07-18T09:15:41.870000Z\", \"playDuration\": \"PT44M49S\"}, {\"titleId\": \"CUSA26140_00\", \"name\": \"I Am Dead\", \"localizedName\": \"I Am Dead\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002127, \"titleIds\": [\"CUSA26137_00\", \"CUSA26138_00\", \"PPSA02616_00\", \"CUSA26139_00\", \"CUSA26140_00\", \"PPSA02618_00\", \"PPSA02617_00\", \"PPSA02619_00\"], \"name\": \"I Am Dead\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I Am Dead\", \"uk-UA\": \"I Am Dead\", \"de-DE\": \"I Am Dead\", \"en-US\": \"I Am Dead\", \"ko-KR\": \"I Am Dead\", \"pt-BR\": \"I Am Dead\", \"es-ES\": \"I Am Dead\", \"ar-AE\": \"I Am Dead\", \"no-NO\": \"I Am Dead\", \"fr-CA\": \"I Am Dead\", \"it-IT\": \"I Am Dead\", \"pl-PL\": \"I Am Dead\", \"ru-RU\": \"I Am Dead\", \"zh-Hans\": \"I Am Dead\", \"nl-NL\": \"I Am Dead\", \"pt-PT\": \"I Am Dead\", \"zh-Hant\": \"I Am Dead\", \"sv-SE\": \"I Am Dead\", \"da-DK\": \"I Am Dead\", \"tr-TR\": \"I Am Dead\", \"fr-FR\": \"I Am Dead\", \"en-GB\": \"I Am Dead\", \"es-419\": \"I Am Dead\", \"ja-JP\": \"\\u30a2\\u30a4\\u30fb\\u30a2\\u30e0\\u30fb\\u30c7\\u30c3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/xb8FDqpJxKDRuPYygGli2atd.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/VdYC2gnXUllrN0ae1yeZXbXp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/hjFhQyfxcPJF0UB6KZGHWShZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0422/BKBqZ5E9vAEjrpRokhprs77g.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/vMj262EIcSgTX5NkGK8QesIi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/EBLnuj72r9frX4uYHYNcM2ME.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/BKRoTPYnGcFdFo5e91osomSw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/zIXSTxUhaXGl8FYw2U0OBlBH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/cgsOl2p1e82IDfg2UuPx8xfE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/CQZIDqhVyYEPFPyYyu8B6neP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/KTLgydQzzDgK9IO60whUtNDb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202104/2120/3gENETQRistyPiRD01uOujLo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T07:53:58.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T08:29:30.440000Z\", \"playDuration\": \"PT34M34S\"}, {\"titleId\": \"PPSA14487_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:56:32.350000Z\", \"lastPlayedDateTime\": \"2023-07-18T07:01:32.080000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA14488_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:48:43.730000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:56:30.200000Z\", \"playDuration\": \"PT7M33S\"}, {\"titleId\": \"CUSA41462_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:18:21.190000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:48:41.550000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA41463_00\", \"name\": \"UltraGoodness\", \"localizedName\": \"UltraGoodness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007675, \"titleIds\": [\"CUSA41463_00\", \"CUSA41462_00\", \"PPSA14487_00\", \"PPSA14488_00\"], \"name\": \"UltraGoodness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UltraGoodness\", \"uk-UA\": \"UltraGoodness\", \"de-DE\": \"UltraGoodness\", \"en-US\": \"UltraGoodness\", \"pt-BR\": \"UltraGoodness\", \"es-ES\": \"UltraGoodness\", \"ar-AE\": \"UltraGoodness\", \"no-NO\": \"UltraGoodness\", \"fr-CA\": \"UltraGoodness\", \"it-IT\": \"UltraGoodness\", \"pl-PL\": \"UltraGoodness\", \"ru-RU\": \"UltraGoodness\", \"nl-NL\": \"UltraGoodness\", \"pt-PT\": \"UltraGoodness\", \"sv-SE\": \"UltraGoodness\", \"da-DK\": \"UltraGoodness\", \"tr-TR\": \"UltraGoodness\", \"fr-FR\": \"UltraGoodness\", \"en-GB\": \"UltraGoodness\", \"es-419\": \"UltraGoodness\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c8\\u30e9\\u30fc\\u30fb\\u30b0\\u30c9\\u30cd\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/cde8ec3c2b521e5f1037a569a19395346b9c95f578225722.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b84b00d503b0d23c8b0560de269994f80ee151960a3fb4db.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/494ce65e784b630d4e987763d275d8edd366c92e560df9ad.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/07a852b47833cbdf7df7c08c8299670c97b6ddf9e8af0e0e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d21aa59b1c8edfb4adbee30d8d83ee38bb98b4eae0698974.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/d5868a1bed7f45597bf62ed1f40a81c113a1adf16d28953e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/65b4e9e03d9c72c993632fff990a34a80c35aeb61344fbe9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/e9103f22f7f35bbf8e9c88844f50bb622725cd44f90a196b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/3fa39b066c690ecc356f33364df1d2ea7d02cee079613c92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/27996b0ba2323b69fb3596a878f1d28011a6728d095a67a4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/b591d9da5f673b839b06fd8029c970169d0b2a174248d9f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/9d8ab1695417dd6110b3c170308a34e3a6498044b6c0c32e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2118/6ba0966f30899cea99f37e3fcfd0dce327ee6be38470e0e8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-18T06:06:05.150000Z\", \"lastPlayedDateTime\": \"2023-07-18T06:18:19.210000Z\", \"playDuration\": \"PT11M27S\"}, {\"titleId\": \"PPSA09448_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-16T04:59:59.000000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:48:46.330000Z\", \"playDuration\": \"PT15H37M30S\"}, {\"titleId\": \"CUSA35737_00\", \"name\": \"Dragon Prana\", \"localizedName\": \"Dragon Prana\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10005776, \"titleIds\": [\"CUSA35737_00\", \"PPSA09448_00\", \"CUSA36809_00\", \"CUSA36810_00\", \"PPSA10526_00\", \"PPSA10527_00\"], \"name\": \"Dragon Prana\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dragon Prana\", \"uk-UA\": \"Dragon Prana\", \"de-DE\": \"Dragon Prana\", \"en-US\": \"Dragon Prana\", \"ko-KR\": \"Dragon Prana\", \"pt-BR\": \"Dragon Prana\", \"es-ES\": \"Dragon Prana\", \"no-NO\": \"Dragon Prana\", \"fr-CA\": \"Dragon Prana\", \"it-IT\": \"Dragon Prana\", \"pl-PL\": \"Dragon Prana\", \"ru-RU\": \"Dragon Prana\", \"zh-Hans\": \"Dragon Prana\", \"nl-NL\": \"Dragon Prana\", \"pt-PT\": \"Dragon Prana\", \"zh-Hant\": \"Dragon Prana\", \"sv-SE\": \"Dragon Prana\", \"da-DK\": \"Dragon Prana\", \"fr-FR\": \"Dragon Prana\", \"en-GB\": \"Dragon Prana\", \"es-419\": \"Dragon Prana\", \"ja-JP\": \"\\u30c9\\u30e9\\u30b4\\u30f3\\u30d7\\u30e9\\u30ca\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pplBkd7pMQxbH6qP0DeIJrzs.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/VLlLBbBfzGw5zZelebZz3Py9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fej1zdrOSVDApR7MtDqO9WG5.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/byRUmNEZ6Vq9rBdymIr69ISk.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/dwpXsWRBkdVJ3mRiz2K09Qd2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/Fgwr2azC4r8fFzchpL3kq216.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/pi1BTomZel7pdJH5kkZXfzrV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RAZmZirz2MFaGGH4ZmL05Xug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/RJnuGf8URq2ocyxuqm70iFNz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/FPxTvGjR6nzVUEvkWNLeMDwD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/eXpN4riWfloh0clO8xYukob3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/70uDSYativQw2J3sQvHcrT71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/b1mD39nxacjzuKuxVeQPrn1z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/KrowhMoo0NEqylu47a5LgeGa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/lIxRlk9EJOIuSJ5gE0mwCn2V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/yYIMtPq8oLmNz1spwKbY4jay.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1205/2x1zpTePAkeLVBvkhJcLLbVA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T07:01:59.500000Z\", \"lastPlayedDateTime\": \"2023-07-18T05:00:54.750000Z\", \"playDuration\": \"PT19H24M33S\"}, {\"titleId\": \"CUSA23986_00\", \"name\": \"Carto\", \"localizedName\": \"Carto\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 10000947, \"titleIds\": [\"CUSA23986_00\", \"CUSA23985_00\"], \"name\": \"Carto\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Carto\", \"uk-UA\": \"Carto\", \"de-DE\": \"Carto\", \"en-US\": \"Carto\", \"ko-KR\": \"Carto\", \"pt-BR\": \"Carto\", \"es-ES\": \"Carto\", \"ar-AE\": \"Carto\", \"no-NO\": \"Carto\", \"fr-CA\": \"Carto\", \"it-IT\": \"Carto\", \"pl-PL\": \"Carto\", \"ru-RU\": \"Carto\", \"zh-Hans\": \"Carto\", \"nl-NL\": \"Carto\", \"pt-PT\": \"Carto\", \"zh-Hant\": \"Carto\", \"sv-SE\": \"Carto\", \"da-DK\": \"Carto\", \"tr-TR\": \"Carto\", \"fr-FR\": \"Carto\", \"en-GB\": \"Carto\", \"es-419\": \"Carto\", \"ja-JP\": \"Carto\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NB1oQ1y8NJdwHUAWKo0BvYEa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ccaMSPiMUvG3sTC3zA0vHqTd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/qIBSGPuJfwNYV38ZxK3MNI13.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/OsrqwaBOJ2PVQN6LVDv2EX0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/kdYDETKn2Zmuv2qYTSqOvICH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/ezjdJ5kItmcY3Iex9uITRUox.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/B84utqWL6SE7d2zxXojbYYTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/3f1coeVRe88F8lLRuUQBFOTO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/NHnRtxq9zGxTZFYgkbL4rwZ6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/5v24vk99PdfFpURpaxtxMMJY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/XikPIXgnlX5DICgpJLKavnJK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/xYmQ9VBCovNCBjWjl6Csb4WE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/3018/f5ZOWF0fwDfq07zIYofNO2Aq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/1223/2NeafzBcQ3D0sCKCwBWyeyPD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:01:08.960000Z\", \"lastPlayedDateTime\": \"2023-07-18T03:27:01.460000Z\", \"playDuration\": \"PT11H9M45S\"}, {\"titleId\": \"PPSA17660_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T05:18:28.380000Z\", \"lastPlayedDateTime\": \"2023-07-15T06:08:13.430000Z\", \"playDuration\": \"PT49M41S\"}, {\"titleId\": \"PPSA17661_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T04:22:02.110000Z\", \"lastPlayedDateTime\": \"2023-07-15T05:18:25.230000Z\", \"playDuration\": \"PT48M36S\"}, {\"titleId\": \"PPSA17658_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T03:33:42.030000Z\", \"lastPlayedDateTime\": \"2023-07-15T04:21:58.970000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"PPSA17659_00\", \"name\": \"CubicBan\", \"localizedName\": \"CubicBan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006283, \"titleIds\": [\"PPSA17661_00\", \"PPSA17660_00\", \"CUSA37208_00\", \"CUSA37209_00\", \"CUSA37211_00\", \"PPSA17658_00\", \"CUSA37210_00\", \"PPSA17659_00\"], \"name\": \"CubicBan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CubicBan\", \"uk-UA\": \"CubicBan\", \"de-DE\": \"CubicBan\", \"en-US\": \"CubicBan\", \"ko-KR\": \"CubicBan\", \"pt-BR\": \"CubicBan\", \"es-ES\": \"CubicBan\", \"ar-AE\": \"CubicBan\", \"no-NO\": \"CubicBan\", \"fr-CA\": \"CubicBan\", \"it-IT\": \"CubicBan\", \"pl-PL\": \"CubicBan\", \"ru-RU\": \"CubicBan\", \"zh-Hans\": \"CubicBan\", \"nl-NL\": \"CubicBan\", \"pt-PT\": \"CubicBan\", \"zh-Hant\": \"CubicBan\", \"sv-SE\": \"CubicBan\", \"da-DK\": \"CubicBan\", \"tr-TR\": \"CubicBan\", \"fr-FR\": \"CubicBan\", \"en-GB\": \"CubicBan\", \"es-419\": \"CubicBan\", \"ja-JP\": \"CubicBan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/FZ2eYNLyeVkrzadBRuOKcImK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/4TuEM62a4O2IaU7U1EPRLw1A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/q0ZGtq7VNcmFX8EnPuEf8Lxr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/GS4tHWupnb8nJo79e9LYonzc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/Hmy8RcF7Q6cT477RPc0JKRxk.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/8JtuCbUxheTHPmk8h8fK7g1n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/uBn7yvn0po87U71LFaajGKzc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/L7tl1bO6v1DNBAiy8zfpnhLa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/qef0JECBWCH5Wubjw09i1Dil.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/0gSUl2m24OcA5M6D4OHPtF5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/UmTGoX5uCFUMIFt5nROnLeKQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1319/InFiehK19dgz2CqDNPGhAB4c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-15T01:55:58.440000Z\", \"lastPlayedDateTime\": \"2023-07-15T03:33:38.800000Z\", \"playDuration\": \"PT1H4M23S\"}, {\"titleId\": \"PPSA16546_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T14:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-07-14T15:21:36.320000Z\", \"playDuration\": \"PT54M3S\"}, {\"titleId\": \"PPSA16545_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:51:17.000000Z\", \"lastPlayedDateTime\": \"2023-07-14T14:01:43.310000Z\", \"playDuration\": \"PT1H34M23S\"}, {\"titleId\": \"PPSA04158_00\", \"name\": \"Goat Simulator 3\", \"localizedName\": \"Goat Simulator 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 25, \"concept\": {\"id\": 10003123, \"titleIds\": [\"PPSA04158_00\", \"PPSA04159_00\", \"CUSA46679_00\", \"CUSA46680_00\"], \"name\": \"Goat Simulator 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/ed0ee1c7b237e9b3c2a0b2f1758801568d14b9849bd346b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/d2cf22c77055c3fd51c889c5a266d6212669fafe99eaddb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Goat Simulator 3\", \"uk-UA\": \"Goat Simulator 3\", \"de-DE\": \"Goat Simulator 3\", \"en-US\": \"Goat Simulator 3\", \"ko-KR\": \"Goat Simulator 3\", \"pt-BR\": \"Goat Simulator 3\", \"es-ES\": \"Project Zero\", \"ar-AE\": \"Goat Simulator 3\", \"no-NO\": \"Goat Simulator 3\", \"fr-CA\": \"Goat Simulator 3\", \"it-IT\": \"Goat Simulator 3\", \"pl-PL\": \"Goat Simulator 3\", \"ru-RU\": \"Goat Simulator 3\", \"zh-Hans\": \"Goat Simulator 3\", \"nl-NL\": \"Goat Simulator 3\", \"pt-PT\": \"Goat Simulator 3\", \"zh-Hant\": \"Goat Simulator 3\", \"sv-SE\": \"Goat Simulator 3\", \"da-DK\": \"Goat Simulator 3\", \"tr-TR\": \"Goat Simulator 3\", \"fr-FR\": \"Goat Simulator 3\", \"en-GB\": \"Goat Simulator 3\", \"es-419\": \"Goat Simulator 3\", \"ja-JP\": \"Goat Simulator 3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/hT4ybSUBFvippbwqCRXCtFQP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/ed0ee1c7b237e9b3c2a0b2f1758801568d14b9849bd346b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/vKDWxTmitAyX87vp8BAFcZct.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0511/wLdjbsT7yPFz8FkXGBPsaYP8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2615/tuF5SsJCtKbq4sb2YKef7ijv.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/d2cf22c77055c3fd51c889c5a266d6212669fafe99eaddb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/C9Pd9k1CpbKeBKBCAvRzeSTN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/ye6zGvedSmL0mZOFuRFsqNLK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/bnlYxZObMeKvbin6oEYBj9rd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/phe21TBwyzY4GnSf2dFo73oA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/fwppamU6Hvtp3sP3gjb7Om1S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/Ib6iLfkf9farVCaj1xxsHuOl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/RSBKIUHWayPjqSbfSbsR6d6k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/KRX0N9fFDNHDchEDNVXwhEC1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/hNijYkcTwFRpxs4O3HVlwArg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2209/TxlpAVxzQZE7CCSSCNzHFpcx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202412/1117/b492a751dd592a970473585a5012dc3c5c7580b7e98fc9c0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-01-27T13:21:22.170000Z\", \"lastPlayedDateTime\": \"2023-07-14T13:47:37.830000Z\", \"playDuration\": \"PT17H52M24S\"}, {\"titleId\": \"CUSA43909_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:44:40.800000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:47:23.430000Z\", \"playDuration\": \"PT2M38S\"}, {\"titleId\": \"CUSA43906_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:37:29.140000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:44:39.150000Z\", \"playDuration\": \"PT3M6S\"}, {\"titleId\": \"CUSA43907_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T10:35:36.470000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:37:27.250000Z\", \"playDuration\": \"PT1M44S\"}, {\"titleId\": \"CUSA43908_00\", \"name\": \"Words Of Wisdom\", \"localizedName\": \"Words Of Wisdom\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008640, \"titleIds\": [\"CUSA43909_00\", \"CUSA43906_00\", \"PPSA19884_00\", \"PPSA20348_00\", \"CUSA43907_00\", \"CUSA43908_00\", \"PPSA20346_00\", \"PPSA20347_00\"], \"name\": \"Words Of Wisdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Words Of Wisdom\", \"uk-UA\": \"Words Of Wisdom\", \"de-DE\": \"Words Of Wisdom\", \"en-US\": \"Words Of Wisdom\", \"ko-KR\": \"Words Of Wisdom\", \"pt-BR\": \"Words Of Wisdom\", \"es-ES\": \"Words Of Wisdom\", \"ar-AE\": \"Words Of Wisdom\", \"no-NO\": \"Words Of Wisdom\", \"fr-CA\": \"Words Of Wisdom\", \"it-IT\": \"Words Of Wisdom\", \"pl-PL\": \"Words Of Wisdom\", \"ru-RU\": \"Words Of Wisdom\", \"zh-Hans\": \"Words Of Wisdom\", \"nl-NL\": \"Words Of Wisdom\", \"pt-PT\": \"Words Of Wisdom\", \"zh-Hant\": \"Words Of Wisdom\", \"sv-SE\": \"Words Of Wisdom\", \"da-DK\": \"Words Of Wisdom\", \"tr-TR\": \"Words Of Wisdom\", \"fr-FR\": \"Words Of Wisdom\", \"en-GB\": \"Words Of Wisdom\", \"es-419\": \"Words Of Wisdom\", \"ja-JP\": \"Words Of Wisdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3c73a95a9e37364a7fd3af41c875bb136a211bd2f6f36050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a10c9a51608b3618c947388e6ff85b6d79348b10c21417e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/6516e684c1dd6c565e3e07b95b944d0a7daeb127ed1b8818.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/89bc31b1b8fc665d14639515aaf208b5a50cf087d1c0d146.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/a1fdb8ac7bbf49e235f24828934c77963a5ce9681c528069.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/3a173bd22d144a9ec35fda90627b9da82f8cec7ad391872d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e61bc38ca3428c3a77a95da9a305bc1aefc8b4fc73b433cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e3599c9df17ff988cda5d12898e5d978d003a7605c9b4d2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/e87d947dfc1e34735c8222590846f97e025203093c0a4eb0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/ce92995152480f8c84792a453bf59521eb4d7191168a5714.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/9effea6c0bc084460de068a6553a751aae68f13cb57201c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/76dc283fffd141bed7a621278ce000fc2eb6bfe68fd2698b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2312/5fc0f69d3e71b2bfd644700e12ecff39ce561d19b0154076.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T09:04:41.410000Z\", \"lastPlayedDateTime\": \"2023-07-14T10:35:34.690000Z\", \"playDuration\": \"PT1H30M41S\"}, {\"titleId\": \"PPSA17078_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:25:45.490000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:39:13.030000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"PPSA17077_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T08:12:07.820000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:25:42.600000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43930_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:58:07.300000Z\", \"lastPlayedDateTime\": \"2023-07-14T08:12:03.990000Z\", \"playDuration\": \"PT13M18S\"}, {\"titleId\": \"CUSA43931_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-14T07:41:53.990000Z\", \"lastPlayedDateTime\": \"2023-07-14T07:58:03.430000Z\", \"playDuration\": \"PT16M\"}, {\"titleId\": \"PPSA11431_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:57:20.090000Z\", \"lastPlayedDateTime\": \"2023-07-13T07:01:30.430000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"PPSA11430_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:52:50.910000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:57:18.250000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA38212_00\", \"name\": \"Hit the Color\", \"localizedName\": \"Hit the Color\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006579, \"titleIds\": [\"CUSA38211_00\", \"PPSA11433_00\", \"CUSA38212_00\", \"CUSA38213_00\", \"PPSA11431_00\", \"PPSA11432_00\", \"PPSA11430_00\", \"CUSA38214_00\"], \"name\": \"Hit the Color\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hit the Color\", \"uk-UA\": \"Hit the Color\", \"de-DE\": \"Hit the Color\", \"en-US\": \"Hit the Color\", \"ko-KR\": \"Hit the Color\", \"pt-BR\": \"Hit the Color\", \"es-ES\": \"Hit the Color\", \"ar-AE\": \"Hit the Color\", \"no-NO\": \"Hit the Color\", \"fr-CA\": \"Hit the Color\", \"it-IT\": \"Hit the Color\", \"pl-PL\": \"Hit the Color\", \"ru-RU\": \"Hit the Color\", \"zh-Hans\": \"Hit the Color\", \"nl-NL\": \"Hit the Color\", \"pt-PT\": \"Hit the Color\", \"zh-Hant\": \"Hit the Color\", \"sv-SE\": \"Hit the Color\", \"da-DK\": \"Hit the Color\", \"tr-TR\": \"Hit the Color\", \"fr-FR\": \"Hit the Color\", \"en-GB\": \"Hit the Color\", \"es-419\": \"Hit the Color\", \"ja-JP\": \"Hit the Color\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/8FhR3WcfKsc6OU6kt6QnoZaQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/6T6MNGfyl2yYdtLSLVEwsxXx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/FUNJBNeS0xsBB34MJWEozJ5K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/QUIhiwqTeNoLMSpP07UMbWa7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/pW19H3lK0WqToQ4AVxt5b8gt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/Tq0FDvktK2UfhiBCSvONWEvf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6a3ce8e2e0530fcf085dd6cf358e87a19b0850687f054dd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/75a9de544bdbb52619b8c7e48e2d958ac9c1b1daba5cd575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/78b22e17adb569f3300976a0ee66001f66881cb8ba20a92d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/7cba02b1b09682ea18d605ba5e5d3408229c56ad4166fa94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/0526eab03f5e963fc5b80b622c5ddc152dd1839b81167bb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0523/5ztBjREdgOxp9QsTLIje1jDs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T06:46:28.980000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:50:28.990000Z\", \"playDuration\": \"PT0S\"}, {\"titleId\": \"PPSA09073_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-13T00:48:56.560000Z\", \"lastPlayedDateTime\": \"2023-07-13T06:43:06.790000Z\", \"playDuration\": \"PT4H16M18S\"}, {\"titleId\": \"CUSA35347_00\", \"name\": \"Silver Nornir\", \"localizedName\": \"Silver Nornir\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005692, \"titleIds\": [\"CUSA35821_00\", \"CUSA35822_00\", \"PPSA09073_00\", \"CUSA35347_00\", \"PPSA09514_00\", \"PPSA09515_00\"], \"name\": \"Silver Nornir\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Silver Nornir\", \"uk-UA\": \"Silver Nornir\", \"de-DE\": \"Silver Nornir\", \"en-US\": \"Silver Nornir\", \"ko-KR\": \"Silver Nornir\", \"pt-BR\": \"Silver Nornir\", \"es-ES\": \"Silver Nornir\", \"no-NO\": \"Silver Nornir\", \"fr-CA\": \"Silver Nornir\", \"it-IT\": \"Silver Nornir\", \"pl-PL\": \"Silver Nornir\", \"ru-RU\": \"Silver Nornir\", \"zh-Hans\": \"Silver Nornir\", \"nl-NL\": \"Silver Nornir\", \"pt-PT\": \"Silver Nornir\", \"zh-Hant\": \"Silver Nornir\", \"sv-SE\": \"Silver Nornir\", \"da-DK\": \"Silver Nornir\", \"fr-FR\": \"Silver Nornir\", \"en-GB\": \"Silver Nornir\", \"es-419\": \"Silver Nornir\", \"ja-JP\": \"\\u767d\\u9280\\u30ce\\u30eb\\u30cb\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/85rvNrbeIyRnrHoq55an8cPQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/DCadZnQbu0HNZwGC70Q4IKOg.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/TH8qMO48RHoIqESYogpaNt2f.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/VeJd7o6HyWGlrovqhHSiKK1M.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vvXb1z4d9S1OO8tKrxyLK948.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/3g3opNosPsx41eFQXmLsL2le.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/ARUvKg6UzlXsQE9AgwFkVPdS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/pCGsBiFx7xmB3BuMuZKppgI2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/tGNegDb6BWVZiJN1nbKv0r5u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qUqT5yZ7cxoHZ2aYP8xuYehV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/oYsmm9dMrXQyufSp4JdwD882.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/qEKemc0xnctm2kYybW8QBThi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/lhrggDRKSxS4qyiQ2l6osdcE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/cBx1FOOE9I6JRQYzFxtNOhgH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/rbGuYGquHMbI6fIXvkFTzTqu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/vpiYPdopaOF0SOlpNXdkAStJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2004/P3lTuz1uscG5LpC9B3Wq46Tu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-11T00:21:09.030000Z\", \"lastPlayedDateTime\": \"2023-07-13T00:48:53.390000Z\", \"playDuration\": \"PT7H59M9S\"}, {\"titleId\": \"PPSA15554_00\", \"name\": \"Dead Cells\", \"localizedName\": \"Dead Cells\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 231053, \"titleIds\": [\"CUSA10485_00\", \"CUSA11253_00\", \"CUSA10484_00\", \"CUSA18439_00\", \"CUSA24085_00\", \"CUSA24086_00\", \"CUSA42849_00\", \"PPSA15554_00\", \"PPSA15552_00\", \"CUSA42830_00\"], \"name\": \"Dead Cells\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Cells\", \"uk-UA\": \"Dead Cells\", \"de-DE\": \"Dead Cells\", \"en-US\": \"Dead Cells\", \"ko-KR\": \"\\ub370\\ub4dc \\uc140 (Dead Cells)\", \"pt-BR\": \"Dead Cells\", \"es-ES\": \"Dead Cells\", \"ar-AE\": \"Dead Cells\", \"no-NO\": \"Dead Cells\", \"fr-CA\": \"Dead Cells\", \"it-IT\": \"Dead Cells\", \"pl-PL\": \"Dead Cells\", \"ru-RU\": \"Dead Cells\", \"zh-Hans\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"nl-NL\": \"Dead Cells\", \"pt-PT\": \"Dead Cells\", \"zh-Hant\": \"\\u6b7b\\u4ea1\\u7d30\\u80de Dead Cells\", \"sv-SE\": \"Dead Cells\", \"da-DK\": \"Dead Cells\", \"tr-TR\": \"Dead Cells\", \"fr-FR\": \"Dead Cells\", \"en-GB\": \"Dead Cells\", \"es-419\": \"Dead Cells\", \"ja-JP\": \"Dead Cells\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT2eQ0Etwo8ZBAesfCqtvN/PREVIEW_SCREENSHOT10_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENT98WmQv7umKfxzdctAUnR/PREVIEW_SCREENSHOT6_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTHk9njvDkAbYR2poifQGL/PREVIEW_SCREENSHOT1_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTIlgKym7GqlTnAY7ptPZg/PREVIEW_SCREENSHOT5_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTJmLV4PvnDuSHQEjGBAFg/PREVIEW_SCREENSHOT8_533577.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTLSR3Z3DQ1HkJNpSmUGDT/PREVIEW_SCREENSHOT7_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTVXUeJ3dptFHo1DpuwHyM/PREVIEW_SCREENSHOT9_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTctt3NOf9XtBZzta6tEX2/PREVIEW_SCREENSHOT3_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/FREE_CONTENTmkD83hLr2Vi4AfsZUDPr/PREVIEW_SCREENSHOT4_533577.png\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3862/CUSA10484_00/yBWNwtzZiTbsRVQtorKYTi06O7iXq5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/41b2b448c589ad6f25cb0aca447a7a976b4a73fb516a3d5a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/44f8e49db201e928d145eae02f8c265de1568331a31cd6fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0814/ea429ee8d94ef63d97ef60d58288fc00bd34ad726bdad833.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10484_00/1/i_5b4acbeddf2a75de6e1ffebf01db558810f0baea2bf3aff462a09cb5b6b39ffe/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:55:08.860000Z\", \"lastPlayedDateTime\": \"2023-07-10T04:43:29.700000Z\", \"playDuration\": \"PT6M53S\"}, {\"titleId\": \"CUSA16005_00\", \"name\": \"Lonely Mountains: Downhill\", \"localizedName\": \"Lonely Mountains: Downhill\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234290, \"titleIds\": [\"CUSA16005_00\", \"CUSA23928_00\", \"CUSA15961_00\"], \"name\": \"Lonely Mountains: Downhill\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lonely Mountains: Downhill\", \"uk-UA\": \"Lonely Mountains: Downhill\", \"de-DE\": \"Lonely Mountains: Downhill\", \"en-US\": \"Lonely Mountains: Downhill\", \"ko-KR\": \"Lonely Mountains: Downhill\", \"pt-BR\": \"Lonely Mountains: Downhill\", \"es-ES\": \"Lonely Mountains: Downhill\", \"ar-AE\": \"Lonely Mountains: Downhill\", \"no-NO\": \"Lonely Mountains: Downhill\", \"fr-CA\": \"Lonely Mountains: Downhill\", \"it-IT\": \"Lonely Mountains: Downhill\", \"pl-PL\": \"Lonely Mountains: Downhill\", \"ru-RU\": \"Lonely Mountains: Downhill\", \"zh-Hans\": \"Lonely Mountains: Downhill\", \"nl-NL\": \"Lonely Mountains: Downhill\", \"pt-PT\": \"Lonely Mountains: Downhill\", \"zh-Hant\": \"Lonely Mountains: Downhill\", \"sv-SE\": \"Lonely Mountains: Downhill\", \"da-DK\": \"Lonely Mountains: Downhill\", \"tr-TR\": \"Lonely Mountains: Downhill\", \"fr-FR\": \"Lonely Mountains: Downhill\", \"en-GB\": \"Lonely Mountains: Downhill\", \"es-419\": \"Lonely Mountains: Downhill\", \"ja-JP\": \"Lonely Mountains: Downhill\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16005_00/2/i_2aabdda4a6fa6e88eb6c591d8bc638c4f4d24161ded0a7a496b91e02046e7f94/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:46:11.770000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:54:20.920000Z\", \"playDuration\": \"PT8M4S\"}, {\"titleId\": \"PPSA05850_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:17:02.160000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:44:16.170000Z\", \"playDuration\": \"PT14M5S\"}, {\"titleId\": \"CUSA31412_00\", \"name\": \"Redout 2\", \"localizedName\": \"Redout 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 2, \"concept\": {\"id\": 10004160, \"titleIds\": [\"PPSA05849_00\", \"PPSA05850_00\", \"CUSA31411_00\", \"CUSA31412_00\"], \"name\": \"Redout 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Redout 2\", \"uk-UA\": \"Redout 2\", \"de-DE\": \"Redout 2\", \"en-US\": \"Redout 2\", \"ko-KR\": \"\\ub808\\ub4dc\\uc544\\uc6c3 2\", \"pt-BR\": \"Redout 2\", \"es-ES\": \"Redout 2\", \"ar-AE\": \"Redout 2\", \"no-NO\": \"Redout 2\", \"fr-CA\": \"Redout 2\", \"it-IT\": \"Redout 2\", \"pl-PL\": \"Redout 2\", \"ru-RU\": \"Redout 2\", \"zh-Hans\": \"Redout 2\", \"nl-NL\": \"Redout 2\", \"pt-PT\": \"Redout 2\", \"zh-Hant\": \"Redout 2\", \"sv-SE\": \"Redout 2\", \"da-DK\": \"Redout 2\", \"tr-TR\": \"Redout 2\", \"fr-FR\": \"Redout 2\", \"en-GB\": \"Redout 2\", \"es-419\": \"Redout 2\", \"ja-JP\": \"Redout 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/9gdC9eHgh2EVaUjlfXG5sQHt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/F0gcOg16OYC5BvJzDlAMB9p0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/1811/YLqWBqb4NSbGtomMqiWxZkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/PaovIqtPKqrKSfMUWnF2VNVj.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/0610/Ugt51kNqXSusZrg0Xv4Ilzr2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:13:16.260000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:39:29.750000Z\", \"playDuration\": \"PT15M35S\"}, {\"titleId\": \"PPSA06577_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:10:03.960000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:11:40.700000Z\", \"playDuration\": \"PT1M31S\"}, {\"titleId\": \"CUSA32294_00\", \"name\": \"Hundred Days - Winemaking Simulator\", \"localizedName\": \"Hundred Days - Winemaking Simulator\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004524, \"titleIds\": [\"CUSA32295_00\", \"PPSA06577_00\", \"PPSA06576_00\", \"PPSA06578_00\", \"PPSA06579_00\", \"CUSA32293_00\", \"CUSA32294_00\", \"CUSA32296_00\"], \"name\": \"Hundred Days - Winemaking Simulator\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hundred Days - Winemaking Simulator\", \"uk-UA\": \"Hundred Days - Winemaking Simulator\", \"de-DE\": \"Hundred Days - Winemaking Simulator\", \"en-US\": \"Hundred Days - Winemaking Simulator\", \"ko-KR\": \"Hundred Days - Winemaking Simulator\", \"pt-BR\": \"Hundred Days - Winemaking Simulator\", \"es-ES\": \"Hundred Days - Winemaking Simulator\", \"ar-AE\": \"Hundred Days - Winemaking Simulator\", \"no-NO\": \"Hundred Days - Winemaking Simulator\", \"fr-CA\": \"Hundred Days - Winemaking Simulator\", \"it-IT\": \"Hundred Days - Winemaking Simulator\", \"pl-PL\": \"Hundred Days - Winemaking Simulator\", \"ru-RU\": \"Hundred Days - Winemaking Simulator\", \"zh-Hans\": \"Hundred Days - Winemaking Simulator\", \"nl-NL\": \"Hundred Days - Winemaking Simulator\", \"pt-PT\": \"Hundred Days - Winemaking Simulator\", \"zh-Hant\": \"Hundred Days - Winemaking Simulator\", \"sv-SE\": \"Hundred Days - Winemaking Simulator\", \"da-DK\": \"Hundred Days - Winemaking Simulator\", \"tr-TR\": \"Hundred Days - Winemaking Simulator\", \"fr-FR\": \"Hundred Days - Winemaking Simulator\", \"en-GB\": \"Hundred Days - Winemaking Simulator\", \"es-419\": \"Hundred Days - Winemaking Simulator\", \"ja-JP\": \"Hundred Days - Winemaking Simulator\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/HTMQrMEKUk5nt2jmhpvPHA5w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FqwLbKp7wcHlUmyS0e8ZxWXi.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/obDJqC5oLcXrIZLfhRNTxi2L.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/FYy7BMt2sdoxsAtO2MRcmqIa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/hBcWN9hCHfbRBctAW6ZAsMAP.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2010/btMMftnBqql91iqzr5ZJksLF.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2009/ihJrJj4t7cijlPj1UwCcVkLr.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:07:49.710000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:09:59.230000Z\", \"playDuration\": \"PT2M2S\"}, {\"titleId\": \"CUSA44349_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T02:02:52.670000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:04:59.570000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA44350_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:57:38.830000Z\", \"lastPlayedDateTime\": \"2023-07-10T02:02:50.280000Z\", \"playDuration\": \"PT2M56S\"}, {\"titleId\": \"PPSA07023_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:48:46.760000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:56:22.110000Z\", \"playDuration\": \"PT6M55S\"}, {\"titleId\": \"CUSA32884_00\", \"name\": \"Inscryption\", \"localizedName\": \"Inscryption\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10004707, \"titleIds\": [\"CUSA32884_00\", \"CUSA32883_00\", \"PPSA07022_00\", \"PPSA07023_00\"], \"name\": \"Inscryption\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inscryption\", \"uk-UA\": \"Inscryption\", \"de-DE\": \"Inscryption\", \"en-US\": \"Inscryption\", \"ko-KR\": \"Inscryption\", \"pt-BR\": \"Inscryption\", \"es-ES\": \"Inscryption\", \"ar-AE\": \"Inscryption\", \"no-NO\": \"Inscryption\", \"fr-CA\": \"Inscryption\", \"it-IT\": \"Inscryption\", \"pl-PL\": \"Inscryption\", \"ru-RU\": \"Inscryption\", \"zh-Hans\": \"Inscryption\", \"nl-NL\": \"Inscryption\", \"pt-PT\": \"Inscryption\", \"zh-Hant\": \"Inscryption\", \"sv-SE\": \"Inscryption\", \"da-DK\": \"Inscryption\", \"tr-TR\": \"Inscryption\", \"fr-FR\": \"Inscryption\", \"en-GB\": \"Inscryption\", \"es-419\": \"Inscryption\", \"ja-JP\": \"Inscryption\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/ah3WHevWzH5vxNBVPNTeMpTE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/Zwf58wGkU5lQvuySFqJeuWqn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/bzvlJHBWDaECvVGKOT5ziBsU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0121/50KZAvowRsEPZkfIbpBPMteD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/QJX6RyBg1GEHirNRq43nXAxR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/FmjAxihfiIiWUsTF8k4mSN9i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/67bctDGpFC9VrVuOsvUpKBdW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/96TZK7IfIdy5WUUALZJCDaJT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/vlKKgh5rA763T0oVUEPKbBkr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/xeHNzPpXB04yH7vl5KwYgmts.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/cLUyBtfmarczDt0XRAYealBj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1700/c9gxO3Cxq5uGKwyGb2gFCioG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1621/OEZOTYnG11FGrewAwYdJ3EQF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-10T01:39:34.480000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:48:16.350000Z\", \"playDuration\": \"PT8M8S\"}, {\"titleId\": \"CUSA18152_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-26T15:20:43.840000Z\", \"lastPlayedDateTime\": \"2023-07-10T01:07:36.840000Z\", \"playDuration\": \"PT18M10S\"}, {\"titleId\": \"CUSA18449_00\", \"name\": \"Stranded Deep\", \"localizedName\": \"Stranded Deep\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 3, \"concept\": {\"id\": 232519, \"titleIds\": [\"CUSA28168_00\", \"CUSA18449_00\", \"CUSA28167_00\", \"CUSA27283_00\", \"CUSA12958_00\", \"CUSA18152_00\", \"CUSA12940_00\"], \"name\": \"Stranded Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Stranded Deep\", \"uk-UA\": \"Stranded Deep\", \"de-DE\": \"Stranded Deep\", \"en-US\": \"Stranded Deep\", \"pt-BR\": \"Stranded Deep\", \"es-ES\": \"Stranded Deep\", \"ar-AE\": \"Stranded Deep\", \"no-NO\": \"Stranded Deep\", \"fr-CA\": \"Stranded Deep\", \"it-IT\": \"Stranded Deep\", \"pl-PL\": \"Stranded Deep\", \"ru-RU\": \"Stranded Deep\", \"nl-NL\": \"Stranded Deep\", \"pt-PT\": \"Stranded Deep\", \"sv-SE\": \"Stranded Deep\", \"da-DK\": \"Stranded Deep\", \"tr-TR\": \"Stranded Deep\", \"fr-FR\": \"Stranded Deep\", \"en-GB\": \"Stranded Deep\", \"es-419\": \"Stranded Deep\", \"ja-JP\": \"\\u30b9\\u30c8\\u30e9\\u30f3\\u30c7\\u30c3\\u30c9 \\u30c7\\u30a3\\u30fc\\u30d7\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0204/EMTTtEAsU93DXeNBlgdlybBZ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202011/0203/i2WZCzjLSFFhPTJHm8RZ5XKK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18152_00/2/i_f3941edae1ef8873be24700392217affe3829e755789bef78bf39a8765e8b9a0/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-05-15T12:08:21.880000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:57:20.800000Z\", \"playDuration\": \"PT22M43S\"}, {\"titleId\": \"PPSA15832_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T13:14:28.190000Z\", \"lastPlayedDateTime\": \"2023-07-10T00:02:26.900000Z\", \"playDuration\": \"PT39M40S\"}, {\"titleId\": \"PPSA15833_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T12:33:54.730000Z\", \"lastPlayedDateTime\": \"2023-07-09T13:13:56.120000Z\", \"playDuration\": \"PT39M36S\"}, {\"titleId\": \"CUSA42784_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T11:45:00.800000Z\", \"lastPlayedDateTime\": \"2023-07-09T12:33:39.050000Z\", \"playDuration\": \"PT44M58S\"}, {\"titleId\": \"CUSA42785_00\", \"name\": \"ChronoBreach Ultra\", \"localizedName\": \"ChronoBreach Ultra\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008148, \"titleIds\": [\"CUSA42784_00\", \"CUSA42785_00\", \"PPSA15833_00\", \"PPSA15832_00\"], \"name\": \"ChronoBreach Ultra\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ChronoBreach Ultra\", \"uk-UA\": \"ChronoBreach Ultra\", \"de-DE\": \"ChronoBreach Ultra\", \"en-US\": \"ChronoBreach Ultra\", \"pt-BR\": \"ChronoBreach Ultra\", \"es-ES\": \"ChronoBreach Ultra\", \"ar-AE\": \"ChronoBreach Ultra\", \"no-NO\": \"ChronoBreach Ultra\", \"fr-CA\": \"ChronoBreach Ultra\", \"it-IT\": \"ChronoBreach Ultra\", \"pl-PL\": \"ChronoBreach Ultra\", \"ru-RU\": \"ChronoBreach Ultra\", \"nl-NL\": \"ChronoBreach Ultra\", \"pt-PT\": \"ChronoBreach Ultra\", \"sv-SE\": \"ChronoBreach Ultra\", \"da-DK\": \"ChronoBreach Ultra\", \"tr-TR\": \"ChronoBreach Ultra\", \"fr-FR\": \"ChronoBreach Ultra\", \"en-GB\": \"ChronoBreach Ultra\", \"es-419\": \"ChronoBreach Ultra\", \"ja-JP\": \"ChronoBreach Ultra\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/0036a568d21a8ad57e2938ae2624167b1864abb9bb73e3cc.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/df327b3aa9d512dec2b8efc0985f21a8876d2564059df0d7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f351f2308d5a0dd4abebdf4e924709115b49ce48a5e68a5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/174a3df7617817e09ea68a5e3f58ec6b0c9073479825eeb1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/811664a0f85c1dbec55648431a3df6c66fa0cdbfd7fd407c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6a60117a36603f0af3f6ce893a26065c597b30c999d562e3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/746548bdb3ab3e9fdc93fe8c946d410f5533c6a722a55dc2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/6670f3866b04029a192d577d73a60a0ec783469e0126a52f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/9d3fc011ba8ce8648ed69b1b1bd58d9281e5097f59fb38dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a3dcf4d72c4d75e1e3abfb33d7d4ca4b0adbe61c51ee524f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f3b256d7a63d2d0b217a72cb5acce29f1de158e1d30ed95c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/a0bf9f0bfcbeb3b2adbc432b60f36118641e17697db6c7eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1117/f9e3b5cea02a10777c261af9d397be2bcd03d0a558cd49e4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T08:56:48.460000Z\", \"lastPlayedDateTime\": \"2023-07-09T11:44:58.610000Z\", \"playDuration\": \"PT1H27S\"}, {\"titleId\": \"PPSA16522_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T07:45:23.650000Z\", \"lastPlayedDateTime\": \"2023-07-09T08:37:21.820000Z\", \"playDuration\": \"PT47M7S\"}, {\"titleId\": \"PPSA16523_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T05:02:50.300000Z\", \"lastPlayedDateTime\": \"2023-07-09T07:45:21.860000Z\", \"playDuration\": \"PT1H1M5S\"}, {\"titleId\": \"CUSA43442_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T02:42:12.080000Z\", \"lastPlayedDateTime\": \"2023-07-09T04:31:10.520000Z\", \"playDuration\": \"PT47M37S\"}, {\"titleId\": \"CUSA43441_00\", \"name\": \"Feeble Light\", \"localizedName\": \"Feeble Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008408, \"titleIds\": [\"PPSA16522_00\", \"PPSA16523_00\", \"CUSA43441_00\", \"CUSA43442_00\"], \"name\": \"Feeble Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Feeble Light\", \"uk-UA\": \"Feeble Light\", \"de-DE\": \"Feeble Light\", \"en-US\": \"Feeble Light\", \"ko-KR\": \"Feeble Light\", \"pt-BR\": \"Feeble Light\", \"es-ES\": \"Feeble Light\", \"ar-AE\": \"Feeble Light\", \"no-NO\": \"Feeble Light\", \"fr-CA\": \"Feeble Light\", \"it-IT\": \"Feeble Light\", \"pl-PL\": \"Feeble Light\", \"ru-RU\": \"Feeble Light\", \"zh-Hans\": \"Feeble Light\", \"nl-NL\": \"Feeble Light\", \"pt-PT\": \"Feeble Light\", \"zh-Hant\": \"Feeble Light\", \"sv-SE\": \"Feeble Light\", \"da-DK\": \"Feeble Light\", \"tr-TR\": \"Feeble Light\", \"fr-FR\": \"Feeble Light\", \"en-GB\": \"Feeble Light\", \"es-419\": \"Feeble Light\", \"ja-JP\": \"Feeble Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/f9a74c8fed1140a624bbd498c9e508ed54ee405b5300acb3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/499611c301b79b649702e9cd26ef0654c28e25f7362a7642.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/3d518fd33eeb485b7d48ba2922a2471f764845cddf21717b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/7a7160c3f93df1db2822564ef30370028678a4854a772db2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/2d506cf76d9168aed25210f03bea8694789229b74e87d6b6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/c32fe08dede3247a578c549e28c8d576d0096bb07a3b00df.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/0065766742bf0a35e1efd3f1f400a506413f0b16c89ea6e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/8b13ea106ecb72b86c535d5fd5e33f153e69e4665d3d93ad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6541a42812cbd20d346e562a362cb17b21c23ff940190825.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/69afa0cae087162f3302edebca625d30d3a35988a95c227f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/6f9abd7d42127947fd262bd05c4b9c2967ff155978f637ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/e0a5997044e76ac82da7620a063a5bd21349bb0e3720f11e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/9f10be2f2bb033fa63e07141caa704d381b54b72b64839f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b4649ebe3747d0313e3da08c5421828a59a5558499c7e0de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/43574565278853a15d53a626e1bda240594de4a1698e42f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3109/b1369c04ae80e5ebaeefc0d997ca0042f8a9d9453739a721.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3106/05a8f04fb8327ae0f4dc66aefaa2023b847c396e52cd18d3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:39:52.610000Z\", \"lastPlayedDateTime\": \"2023-07-09T02:36:09.680000Z\", \"playDuration\": \"PT1H55M7S\"}, {\"titleId\": \"PPSA05326_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-09T00:15:42.000000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:18:24.340000Z\", \"playDuration\": \"PT42S\"}, {\"titleId\": \"CUSA30449_00\", \"name\": \"Sonic Origins\", \"localizedName\": \"Sonic Origins\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 4, \"concept\": {\"id\": 10003797, \"titleIds\": [\"CUSA30446_00\", \"PPSA05324_00\", \"PPSA05325_00\", \"PPSA05326_00\", \"CUSA40844_00\", \"CUSA30449_00\", \"CUSA30448_00\", \"CUSA40843_00\", \"CUSA40842_00\"], \"name\": \"Sonic Origins\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sonic Origins\", \"uk-UA\": \"Sonic Origins\", \"de-DE\": \"Sonic Origins\", \"en-US\": \"Sonic Origins\", \"ko-KR\": \"\\uc18c\\ub2c9 \\uc624\\ub9ac\\uc9c4\\uc2a4\", \"pt-BR\": \"Sonic Origins\", \"es-ES\": \"Sonic Origins\", \"ar-AE\": \"Sonic Origins\", \"no-NO\": \"Sonic Origins\", \"fr-CA\": \"Sonic Origins\", \"it-IT\": \"Sonic Origins\", \"pl-PL\": \"Sonic Origins\", \"ru-RU\": \"Sonic Origins\", \"zh-Hans\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"nl-NL\": \"Sonic Origins\", \"pt-PT\": \"Sonic Origins\", \"zh-Hant\": \"\\u7d22\\u5c3c\\u514b \\u8d77\\u6e90\", \"sv-SE\": \"Sonic Origins\", \"da-DK\": \"Sonic Origins\", \"tr-TR\": \"Sonic Origins\", \"fr-FR\": \"Sonic Origins\", \"en-GB\": \"Sonic Origins\", \"es-419\": \"Sonic Origins\", \"ja-JP\": \"\\u30bd\\u30cb\\u30c3\\u30af\\u30aa\\u30ea\\u30b8\\u30f3\\u30ba\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/f26g3I1Nx94OwvprmUZ6aDGp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/kaZY6t8jw9M9b1zT2qZddCKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1102/JnqTseQrg7gnHYzx0f3kl93Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/Z9pCoE8usrSaKltUayOWWVIn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/yk55raQMHaUJ8ceGtpYVvAgG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/YgQrhKp7vX7lFHqm3HC05VH8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/F0UzD6Y5d77fRtycltGb0D3g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mNGWsYP0Z0ThmqLAj8KRfEHb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/jnpWBhn9wbfLbXSOoP92uVsI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/93AW4W4CIWKfloHQSkia8j8V.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/dJOF5Zle5L81dqdqpykwM35z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/l55NZQCzlKnbFhKG1MAoG6n3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/9l1YUjRaBz9rp7qY9d4458EA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/d1okmNmWEq35qGgzDzvIoo1m.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/mBLvyDanSdheHl9WWdjirZqL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/2017/wGUvfCr88RKXCD0e1jeVQdrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1103/cMPUrcoTKvKYEmdXBOtcVHPi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:58:22.150000Z\", \"lastPlayedDateTime\": \"2023-07-09T00:17:11.490000Z\", \"playDuration\": \"PT5H55M\"}, {\"titleId\": \"PPSA17389_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:37:55.500000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:46:35.570000Z\", \"playDuration\": \"PT7M56S\"}, {\"titleId\": \"PPSA17391_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:30:19.440000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:37:52.550000Z\", \"playDuration\": \"PT5M55S\"}, {\"titleId\": \"PPSA17392_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:23:40.570000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:30:16.690000Z\", \"playDuration\": \"PT6M2S\"}, {\"titleId\": \"PPSA17390_00\", \"name\": \"Cubic Light\", \"localizedName\": \"Cubic Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007305, \"titleIds\": [\"CUSA40632_00\", \"PPSA17390_00\", \"PPSA17391_00\", \"CUSA40631_00\", \"CUSA40633_00\", \"CUSA40630_00\", \"PPSA17392_00\", \"PPSA17389_00\"], \"name\": \"Cubic Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Light\", \"uk-UA\": \"Cubic Light\", \"de-DE\": \"Cubic Light\", \"en-US\": \"Cubic Light\", \"ko-KR\": \"Cubic Light\", \"pt-BR\": \"Cubic Light\", \"es-ES\": \"Cubic Light\", \"ar-AE\": \"Cubic Light\", \"no-NO\": \"Cubic Light\", \"fr-CA\": \"Cubic Light\", \"it-IT\": \"Cubic Light\", \"pl-PL\": \"Cubic Light\", \"ru-RU\": \"Cubic Light\", \"zh-Hans\": \"Cubic Light\", \"nl-NL\": \"Cubic Light\", \"pt-PT\": \"Cubic Light\", \"zh-Hant\": \"Cubic Light\", \"sv-SE\": \"Cubic Light\", \"da-DK\": \"Cubic Light\", \"tr-TR\": \"Cubic Light\", \"fr-FR\": \"Cubic Light\", \"en-GB\": \"Cubic Light\", \"es-419\": \"Cubic Light\", \"ja-JP\": \"Cubic Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/6v7wiFHCooolyUGpwzmIWCPK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/8DSSsr5qrSAyqArOHasWxWyY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/HFIWnp2vQBZenQXHqsxlv55t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/iIaeZWUKvkF7HOb7j0rccDAC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/MZ2VWMWiArHIisVVyyQ0t5K5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/SspDxog2AeWYAHBkBJsewmhF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/z2JnT58b83lcCDWBTDV8nJhK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/zF63mGh2dV4kQ9MAsBkvZ9c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/J9TSBuF1qPFWnZr1m3M6SCjD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/Hf5bpSK6Z69v1sFtVAGVvaJp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/GFQTIRjqDP22M8P0me0ytnlf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2719/mNMgt5ufKJs6fVpXpXZ7WU5Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T10:11:02.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T10:23:37.720000Z\", \"playDuration\": \"PT9M8S\"}, {\"titleId\": \"CUSA43838_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:27:24.050000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:30:25.160000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA44124_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T08:23:03.870000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:27:20.640000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"PPSA16728_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T07:30:56.460000Z\", \"lastPlayedDateTime\": \"2023-07-07T08:23:01.930000Z\", \"playDuration\": \"PT48M40S\"}, {\"titleId\": \"CUSA43627_00\", \"name\": \"Speed or Death\", \"localizedName\": \"Speed or Death\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006908, \"titleIds\": [\"PPSA18728_00\", \"CUSA43627_00\", \"CUSA43626_00\", \"CUSA45331_00\", \"PPSA16727_00\", \"PPSA16728_00\"], \"name\": \"Speed or Death\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Speed or Death\", \"uk-UA\": \"Speed or Death\", \"de-DE\": \"Speed or Death\", \"en-US\": \"Speed or Death\", \"ko-KR\": \"Speed or Death\", \"pt-BR\": \"Speed or Death\", \"es-ES\": \"Speed or Death\", \"ar-AE\": \"Speed or Death\", \"no-NO\": \"Speed or Death\", \"fr-CA\": \"Speed or Death\", \"it-IT\": \"Speed or Death\", \"pl-PL\": \"Speed or Death\", \"ru-RU\": \"Speed or Death\", \"zh-Hans\": \"Speed or Death\", \"nl-NL\": \"Speed or Death\", \"pt-PT\": \"Speed or Death\", \"zh-Hant\": \"Speed or Death\", \"sv-SE\": \"Speed or Death\", \"da-DK\": \"Speed or Death\", \"tr-TR\": \"Speed or Death\", \"fr-FR\": \"Speed or Death\", \"en-GB\": \"Speed or Death\", \"es-419\": \"Speed or Death\", \"ja-JP\": \"Speed or Death\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202311/0606/971ecfbc178a8b2f56f4abf18db74280c216a5e3382ef717.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2c907a57bd975bd847c90f90f2499bf7e586de587b9dc944.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/2f6e690e67513b4153000be77b950bcfb3d3480ca118fd9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/6e2ec82ad4c637dd689b12f5ca0e17005b84b8ff0da0d61e.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/1b7bc9e560fed8a360b1b945d9aaf2a83adc17b374d9af56.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/4e23642841b97ff8c12e3b269726a3136afa2ae0ed2d33bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/edbb70967524c603a507bdd7a3624099f46c435d3c745564.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/d3f4051ce4acc296ee947752f7fc9f7eb8851417b1cffe97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/46d3d10f93a09e2678c8aaa8eeb94f0b723be46ebf476314.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/646db934346d9573537710c362d6b1bca710f23e2874ab34.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/9c3aeed834e817ef32e4f9a79a86359801af568acc742df2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/59df07e698ec091690e933a6f034f669e91afa67d9dc02ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/827be375d83a29fe398f005d2124da2622cc4cd0aa681dee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2910/a02cdd9e284d43b8458780bd0228e9310b1332aea6cf9cad.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T04:03:21.900000Z\", \"lastPlayedDateTime\": \"2023-07-07T07:30:54.120000Z\", \"playDuration\": \"PT3H14M22S\"}, {\"titleId\": \"PPSA16140_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T03:57:34.810000Z\", \"lastPlayedDateTime\": \"2023-07-07T04:01:33.730000Z\", \"playDuration\": \"PT3M23S\"}, {\"titleId\": \"CUSA43034_00\", \"name\": \"City Limits\", \"localizedName\": \"City Limits\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008242, \"titleIds\": [\"CUSA43036_00\", \"PPSA16140_00\", \"PPSA16142_00\", \"CUSA43034_00\", \"CUSA43035_00\", \"CUSA43033_00\", \"PPSA16139_00\", \"PPSA16143_00\"], \"name\": \"City Limits\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"City Limits\", \"uk-UA\": \"City Limits\", \"de-DE\": \"City Limits\", \"en-US\": \"City Limits\", \"ko-KR\": \"City Limits\", \"pt-BR\": \"City Limits\", \"es-ES\": \"City Limits\", \"ar-AE\": \"City Limits\", \"no-NO\": \"City Limits\", \"fr-CA\": \"City Limits\", \"it-IT\": \"City Limits\", \"pl-PL\": \"City Limits\", \"ru-RU\": \"City Limits\", \"zh-Hans\": \"City Limits\", \"nl-NL\": \"City Limits\", \"pt-PT\": \"City Limits\", \"zh-Hant\": \"City Limits\", \"sv-SE\": \"City Limits\", \"da-DK\": \"City Limits\", \"tr-TR\": \"City Limits\", \"fr-FR\": \"City Limits\", \"en-GB\": \"City Limits\", \"es-419\": \"City Limits\", \"ja-JP\": \"City Limits\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1fca6e883ff1a10eb8c6cf79be1331c4cf62e7f544ebc6ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/832a718bb6deb824dff2c9f501435057ac6daef3961d49dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/1f650c2e8b0d14bc5f62fe7f046820e62b7505310f33df51.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/7df9e66e201f19e931a08a3a921a115c7ff90b79962c7889.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/cee6193bcba1c3d0cacd0affb9933d7df32c922bf5c1b41b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/2861111c6ee91fbb937ce406dc958f02575f8f90db644bab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/4ad93068855d54e6aa924b4f38a5d4f6008bb5c4dbaf3357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/ea2ec97104ca020e6cdcc4ce7f9b9ea22277b63aae3daddd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/69eac773ecbf17983e675f713903657fb84b3cb0e90f9f1e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0210/03b239ea8f55ca42e36347ff91a3d6abac26a0b02bb0c51a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:34:14.580000Z\", \"lastPlayedDateTime\": \"2023-07-07T03:57:33.060000Z\", \"playDuration\": \"PT47M6S\"}, {\"titleId\": \"PPSA17076_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:17:54.510000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:32:19.620000Z\", \"playDuration\": \"PT14M22S\"}, {\"titleId\": \"PPSA17075_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T02:03:38.720000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:17:51.750000Z\", \"playDuration\": \"PT13M52S\"}, {\"titleId\": \"CUSA43928_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:48:06.310000Z\", \"lastPlayedDateTime\": \"2023-07-07T02:03:34.860000Z\", \"playDuration\": \"PT13M12S\"}, {\"titleId\": \"CUSA43929_00\", \"name\": \"Boat Trip\", \"localizedName\": \"Boat Trip\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008646, \"titleIds\": [\"PPSA17075_00\", \"PPSA17076_00\", \"CUSA43931_00\", \"PPSA17078_00\", \"CUSA43929_00\", \"PPSA17077_00\", \"CUSA43928_00\", \"CUSA43930_00\"], \"name\": \"Boat Trip\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boat Trip\", \"uk-UA\": \"Boat Trip\", \"de-DE\": \"Boat Trip\", \"en-US\": \"Boat Trip\", \"ko-KR\": \"Boat Trip\", \"pt-BR\": \"Boat Trip\", \"es-ES\": \"Boat Trip\", \"ar-AE\": \"Boat Trip\", \"no-NO\": \"Boat Trip\", \"fr-CA\": \"Boat Trip\", \"it-IT\": \"Boat Trip\", \"pl-PL\": \"Boat Trip\", \"ru-RU\": \"Boat Trip\", \"zh-Hans\": \"Boat Trip\", \"nl-NL\": \"Boat Trip\", \"pt-PT\": \"Boat Trip\", \"zh-Hant\": \"Boat Trip\", \"sv-SE\": \"Boat Trip\", \"da-DK\": \"Boat Trip\", \"tr-TR\": \"Boat Trip\", \"fr-FR\": \"Boat Trip\", \"en-GB\": \"Boat Trip\", \"es-419\": \"Boat Trip\", \"ja-JP\": \"Boat Trip\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/2fb5dc642e9d0daf1d6d98ad2258961f009f6c14f4ba8fdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42815ea83b02f37d11d120bab3396e4f57348f99406465e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/42b5d3fe4e7a4dc90650e430a62cc606e61dc1b6430d8645.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/696266cd12aa08330e1a95555d3ad8978b2b7b10a3b283c6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/be8d1025a541e616e62dc05146e9e0b97074e29705b0a392.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1275d910df3fdcccf6c25d26b81e51e2d21483ec5226dcda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/0e389634a20cb49167ebfea26742297ae6224afef1f26ff4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T01:02:34.070000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:48:02.420000Z\", \"playDuration\": \"PT13M43S\"}, {\"titleId\": \"PPSA11359_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:58:54.000000Z\", \"lastPlayedDateTime\": \"2023-07-07T01:02:10.250000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"PPSA11360_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:58:52.970000Z\", \"playDuration\": \"PT2M11S\"}, {\"titleId\": \"CUSA38099_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:53:17.680000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:56:32.960000Z\", \"playDuration\": \"PT2M43S\"}, {\"titleId\": \"CUSA38100_00\", \"name\": \"Zen Pong\", \"localizedName\": \"Zen Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006552, \"titleIds\": [\"PPSA11358_00\", \"PPSA11359_00\", \"CUSA38098_00\", \"CUSA38099_00\", \"CUSA38097_00\", \"PPSA11356_00\", \"CUSA38100_00\", \"PPSA11360_00\"], \"name\": \"Zen Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zen Pong\", \"uk-UA\": \"Zen Pong\", \"de-DE\": \"Zen Pong\", \"en-US\": \"Zen Pong\", \"ko-KR\": \"Zen Pong\", \"pt-BR\": \"Zen Pong\", \"es-ES\": \"Zen Pong\", \"ar-AE\": \"Zen Pong\", \"no-NO\": \"Zen Pong\", \"fr-CA\": \"Zen Pong\", \"it-IT\": \"Zen Pong\", \"pl-PL\": \"Zen Pong\", \"ru-RU\": \"Zen Pong\", \"zh-Hans\": \"Zen Pong\", \"nl-NL\": \"Zen Pong\", \"pt-PT\": \"Zen Pong\", \"zh-Hant\": \"Zen Pong\", \"sv-SE\": \"Zen Pong\", \"da-DK\": \"Zen Pong\", \"tr-TR\": \"Zen Pong\", \"fr-FR\": \"Zen Pong\", \"en-GB\": \"Zen Pong\", \"es-419\": \"Zen Pong\", \"ja-JP\": \"Zen Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/0uCLWFjPKigs9TidBH7JfjfN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/Lbgxa7XRkHFJUMT4b6aHwJGC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/UWP6hgm0EAJArztOAsbdutTh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/OeDjV7dQTHcvoJV8ASnCIeM6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2216/18cdc95ce14a1ae3d6bb5a2152b1b4090c30aea3f274a197.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/ckYv1OYpM27Vwup8k5aIYc4U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/da62b37a45ffb67ce156d06324396bf425b8164b941a02bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6c02a4e026eab9fc97bdcf10957ca2b5ca5e7ca8b12c1ba9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/085be84419400e4416ea6d900ea4836b3793a45be34c38e9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/2bfd2bd7d202e8c89f4c99ff2059bdc8d562c5296a493164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/51ca5093ccee04a890334b06739e2028d47f5da67c363164.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/4d2301d675262fb4a95be7cc8e888a4a8df58919c1ab72d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2119/WmbpVeR0cLGSqNuhiQ929Rau.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-07T00:49:24.480000Z\", \"lastPlayedDateTime\": \"2023-07-07T00:53:05.710000Z\", \"playDuration\": \"PT2M55S\"}, {\"titleId\": \"CUSA42524_00\", \"name\": \"Russian Subway Dogs\", \"localizedName\": \"Russian Subway Dogs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231153, \"titleIds\": [\"CUSA11099_00\", \"CUSA42524_00\"], \"name\": \"Russian Subway Dogs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Russian Subway Dogs\", \"uk-UA\": \"Russian Subway Dogs\", \"de-DE\": \"Russian Subway Dogs\", \"en-US\": \"Russian Subway Dogs\", \"pt-BR\": \"Russian Subway Dogs\", \"es-ES\": \"Russian Subway Dogs\", \"ar-AE\": \"Russian Subway Dogs\", \"no-NO\": \"Russian Subway Dogs\", \"fr-CA\": \"Russian Subway Dogs\", \"it-IT\": \"Russian Subway Dogs\", \"pl-PL\": \"Russian Subway Dogs\", \"ru-RU\": \"Russian Subway Dogs\", \"zh-Hans\": \"Russian Subway Dogs\", \"nl-NL\": \"Russian Subway Dogs\", \"pt-PT\": \"Russian Subway Dogs\", \"zh-Hant\": \"Russian Subway Dogs\", \"sv-SE\": \"Russian Subway Dogs\", \"da-DK\": \"Russian Subway Dogs\", \"tr-TR\": \"Russian Subway Dogs\", \"fr-FR\": \"Russian Subway Dogs\", \"en-GB\": \"Russian Subway Dogs\", \"es-419\": \"Russian Subway Dogs\", \"ja-JP\": \"Russian Subway Dogs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/c0947c14d422b7b4e2ad347b5f21b718c0c61ea4b7551d2d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/59be7f75a30ee29138a93a1e4d572a6a3c0a899213310fcc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/779d66b30bd8eb38983002adefe11886fb648b3e5b0ec2f4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1104/e1cc2ba9de8da5b76386330047152af1161b91028c499bf9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1b4758e7c4cba3127923d0de58de52c8d2f1df0e62e4f7b7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/7644640965327a9eb3b2586c79fd168d9dc5235ea3609106.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/55abd8fe09c6983c4da4c675377f629cb1304c127585acc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/4f9ce61d60bc2c94958c5536416b950f45b399cb1b5e30c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/10fca5fa1c10f5a3b99f25c94ccb49eb008427610e0bd4f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/1d7239ee1855929e0d02ad2479c953b7ce2eec3a5d7dd4e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/6ba944e791d972de8eb74c8d3094bab582e4a920ca2915a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/d6bad6f205c7392dbed61393eda614c0a0ee02f27b4b4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/592c6e85415c99d075aab308b1bdba06f16a81f94d0a8046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/028c6cf08221ef8f0d14129515f047219301aad7594cf3b8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/a67ad9d5a558418f2df1595199ea226b84d160b382699b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1103/b80ac99021a75d6262552ae34af0bc7a9c6072bd4e031206.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0322/9d56cf9c0205eb28f295de46fdce49c3defdecccf720661a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T14:13:37.430000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:16:09.460000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA27043_00\", \"name\": \"Dead Island 2\", \"localizedName\": \"Dead Island 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 201061, \"titleIds\": [\"CUSA36373_00\", \"CUSA35681_00\", \"CUSA36372_00\", \"PPSA03099_00\", \"CUSA35646_00\", \"CUSA36368_00\", \"CUSA36369_00\", \"PPSA03098_00\", \"PPSA09377_00\", \"CUSA00936_00\", \"CUSA29825_00\", \"CUSA01826_00\", \"CUSA01014_00\", \"CUSA27043_00\", \"CUSA36370_00\", \"CUSA36371_00\"], \"name\": \"Dead Island 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Island 2\", \"uk-UA\": \"Dead Island 2\", \"de-DE\": \"Dead Island 2\", \"en-US\": \"Dead Island 2\", \"ko-KR\": \"Dead Island 2\", \"pt-BR\": \"Dead Island 2\", \"es-ES\": \"Dead Island 2\", \"ar-AE\": \"Dead Island 2\", \"no-NO\": \"Dead Island 2\", \"fr-CA\": \"Dead Island 2\", \"it-IT\": \"Dead Island 2\", \"pl-PL\": \"Dead Island 2\", \"ru-RU\": \"Dead Island 2\", \"zh-Hans\": \"Dead Island 2\", \"nl-NL\": \"Dead Island 2\", \"pt-PT\": \"Dead Island 2\", \"zh-Hant\": \"Dead Island 2\", \"sv-SE\": \"Dead Island 2\", \"da-DK\": \"Dead Island 2\", \"tr-TR\": \"Dead Island 2\", \"fr-FR\": \"Dead Island 2\", \"en-GB\": \"Dead Island 2\", \"es-419\": \"Dead Island 2\", \"ja-JP\": \"Dead Island 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-06T13:10:25.250000Z\", \"lastPlayedDateTime\": \"2023-07-06T14:12:33.530000Z\", \"playDuration\": \"PT1H1M8S\"}, {\"titleId\": \"CUSA43561_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T15:45:11.830000Z\", \"lastPlayedDateTime\": \"2023-07-05T16:04:25.680000Z\", \"playDuration\": \"PT19M10S\"}, {\"titleId\": \"CUSA43562_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:56:01.570000Z\", \"lastPlayedDateTime\": \"2023-07-05T15:45:09.670000Z\", \"playDuration\": \"PT49M3S\"}, {\"titleId\": \"CUSA43560_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T14:02:37.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:55:50.730000Z\", \"playDuration\": \"PT52M52S\"}, {\"titleId\": \"CUSA43559_00\", \"name\": \"Toadomination\", \"localizedName\": \"Toadomination\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008448, \"titleIds\": [\"PPSA20343_00\", \"CUSA43560_00\", \"PPSA19885_00\", \"PPSA20344_00\", \"CUSA43561_00\", \"CUSA43562_00\", \"PPSA20345_00\", \"CUSA43559_00\"], \"name\": \"Toadomination\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Toadomination\", \"uk-UA\": \"Toadomination\", \"de-DE\": \"Toadomination\", \"en-US\": \"Toadomination\", \"ko-KR\": \"Toadomination\", \"pt-BR\": \"Toadomination\", \"es-ES\": \"Toadomination\", \"ar-AE\": \"Toadomination\", \"no-NO\": \"Toadomination\", \"fr-CA\": \"Toadomination\", \"it-IT\": \"Toadomination\", \"pl-PL\": \"Toadomination\", \"ru-RU\": \"Toadomination\", \"zh-Hans\": \"Toadomination\", \"nl-NL\": \"Toadomination\", \"pt-PT\": \"Toadomination\", \"zh-Hant\": \"Toadomination\", \"sv-SE\": \"Toadomination\", \"da-DK\": \"Toadomination\", \"tr-TR\": \"Toadomination\", \"fr-FR\": \"Toadomination\", \"en-GB\": \"Toadomination\", \"es-419\": \"Toadomination\", \"ja-JP\": \"Toadomination\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/9940643d80d67d45969aaf5ba49f3ac8e0afef8f1fcceeb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/c30a3503391cc76f4c381426d0d5f12f3fe1fa214ad792fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/61cb6661aedbbcc8388a9da61bd9c098cefb1bdbdb2504b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/5872022910b55e39fa35f6096b7aea2aa00b4dd486114845.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/ca304dfa049ffbbb023fa39124a1d4fe4fcc11bbf1f7e640.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/de289450390c22c636e5b91760befffc01cd3b3af880f561.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/067ff3b4a9c5e12b1662ff58355bf2bd3b8fe73f09dbc0e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/f409525e402029af4ea8c52bc1d49bc2aa83624a2d8cc1ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/3f9d99663c1d1d8c2e206cb039e6a6beb43e888c8de09567.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/fb2551e2a2c82f9be70740580bce1a2f62e4056cc99cb76f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/12b2e54c043592b6423b57efde274561821771662e28352f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/e555ec7e22537a82d340523c438b41001c5b485a0c9268ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1419/4bf59b04f6c2e328d1aeea653be0e31469e44ef72d422d70.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T13:21:30.400000Z\", \"lastPlayedDateTime\": \"2023-07-05T14:01:26.520000Z\", \"playDuration\": \"PT39M42S\"}, {\"titleId\": \"CUSA43353_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:17:03.880000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:31:56.250000Z\", \"playDuration\": \"PT8M45S\"}, {\"titleId\": \"CUSA43354_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T12:07:13.630000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:17:02.380000Z\", \"playDuration\": \"PT9M38S\"}, {\"titleId\": \"CUSA43356_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:53:48.540000Z\", \"lastPlayedDateTime\": \"2023-07-05T12:06:31.320000Z\", \"playDuration\": \"PT12M13S\"}, {\"titleId\": \"CUSA43355_00\", \"name\": \"Everlune\", \"localizedName\": \"Everlune\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008365, \"titleIds\": [\"CUSA43355_00\", \"PPSA20272_00\", \"PPSA20271_00\", \"CUSA43353_00\", \"CUSA43356_00\", \"PPSA20273_00\", \"CUSA43354_00\", \"PPSA20274_00\"], \"name\": \"Everlune\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Everlune\", \"uk-UA\": \"Everlune\", \"de-DE\": \"Everlune\", \"en-US\": \"Everlune\", \"ko-KR\": \"Everlune\", \"pt-BR\": \"Everlune\", \"es-ES\": \"Everlune\", \"ar-AE\": \"Everlune\", \"no-NO\": \"Everlune\", \"fr-CA\": \"Everlune\", \"it-IT\": \"Everlune\", \"pl-PL\": \"Everlune\", \"ru-RU\": \"Everlune\", \"zh-Hans\": \"Everlune\", \"nl-NL\": \"Everlune\", \"pt-PT\": \"Everlune\", \"zh-Hant\": \"Everlune\", \"sv-SE\": \"Everlune\", \"da-DK\": \"Everlune\", \"tr-TR\": \"Everlune\", \"fr-FR\": \"Everlune\", \"en-GB\": \"Everlune\", \"es-419\": \"Everlune\", \"ja-JP\": \"Everlune\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/c0049097d2eadd6cc46b593b38f218ed3692d08d6b868bf2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/5ad62ec87e1a8c28b7c57724b77e8e6551aba4fe7ffe40e4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/e6a12f813e129c6740c630d1e202aa01bd3e9b9eef4ca972.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/1d5aaa00138a8efc1123cfe5c912cf8a3f2474685806bb0d.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/b6de108ff90eecd221c48c42efd778ea31a5810a849d802b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/0e5b037476de52a31380eba323c626e5e1b4c359f29ca981.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/48207d807f9b39a2c1b3c56fdf92d918c54400b8b0bf01f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2909/5f2443539ba95ac14e95eba4e752533843ccfdd23498dd92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2500/509604f51ee9883f806f8813b0f6419edc61b88c85834e04.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:36:05.510000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:53:47.100000Z\", \"playDuration\": \"PT14M40S\"}, {\"titleId\": \"PPSA16103_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:12:26.770000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:14:54.860000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"PPSA16102_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:10:03.690000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:12:23.790000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"PPSA16101_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:06:06.120000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:09:58.630000Z\", \"playDuration\": \"PT3M38S\"}, {\"titleId\": \"PPSA16100_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T11:03:24.960000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:06:02.580000Z\", \"playDuration\": \"PT2M22S\"}, {\"titleId\": \"CUSA43011_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:57:52.030000Z\", \"lastPlayedDateTime\": \"2023-07-05T11:03:21.420000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"CUSA43009_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:53:48.930000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:57:48.940000Z\", \"playDuration\": \"PT3M43S\"}, {\"titleId\": \"CUSA43008_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:50:11.060000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:53:45.810000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"CUSA43010_00\", \"name\": \"I'LL KILL HER\", \"localizedName\": \"I'LL KILL HER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008234, \"titleIds\": [\"PPSA16102_00\", \"PPSA16103_00\", \"CUSA43009_00\", \"CUSA43010_00\", \"CUSA43011_00\", \"CUSA43008_00\", \"PPSA16100_00\", \"PPSA16101_00\"], \"name\": \"I'LL KILL HER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"I'LL KILL HER\", \"uk-UA\": \"I'LL KILL HER\", \"de-DE\": \"I'LL KILL HER\", \"en-US\": \"I'LL KILL HER\", \"ko-KR\": \"I'LL KILL HER\", \"pt-BR\": \"I'LL KILL HER\", \"es-ES\": \"I'LL KILL HER\", \"ar-AE\": \"I'LL KILL HER\", \"no-NO\": \"I'LL KILL HER\", \"fr-CA\": \"I'LL KILL HER\", \"it-IT\": \"I'LL KILL HER\", \"pl-PL\": \"I'LL KILL HER\", \"ru-RU\": \"\\u042f \\u0423\\u0411\\u042c\\u042e \\u0415\\u0401\", \"zh-Hans\": \"\\u6211\\u8981\\u6740\\u4e86\\u5979\", \"nl-NL\": \"I'LL KILL HER\", \"pt-PT\": \"I'LL KILL HER\", \"zh-Hant\": \"I'LL KILL HER\", \"sv-SE\": \"I'LL KILL HER\", \"da-DK\": \"I'LL KILL HER\", \"tr-TR\": \"I'LL KILL HER\", \"fr-FR\": \"I'LL KILL HER\", \"en-GB\": \"I'LL KILL HER\", \"es-419\": \"I'LL KILL HER\", \"ja-JP\": \"I'LL KILL HER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/54208a90460d97d949c6e10b85cb8eb0aa961483523b629d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/fa4947cea07f7ec51af401e69c873f132bdadbb4fa432008.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2619/a7c35678621068e5bc76b5c5d5eca6c3535ea7e51ec40620.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/ee7a0f187072517e9587b3cdc76b321db9511798413d0d9d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/bfd2db2e1102d667205a422cd66100d6d71ed23284658e38.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/eb0c2733aaba84610b3a30d01b3795e44fea6bea986d2f69.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/4804c508d7dfee75988639eed4b0d334d38b54ea55ad2cab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/677fb71b63ddd27f323595a6dad8760699fa9d7cd094184d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/e1ba448a9742e4dfb59e9949aab2de318b74b9bfb160a72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9fcac7ac71d1830b3d397b1f8f5122e41bb67585c86e3356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/c1aa06595db8695a75480323ff2bd65b0e65b853ce0423d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/97dffdfdba9f4e0601b3b6f905fff39d9a3f64e934be60dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/9690813f39dc2d2d83386df3945ec89e594308ccf30daf92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/df7f34912bc5ba6427da1cc869650dac945cc7b63b4e54ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/da2b16c2b653b694fe42f10a34b08dea0ea6578f4e63fa9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2013/f0b7189ceb14c79d5ff1b4051960799c8ae70a9ca19020ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2713/002f0e3499e583f520f89bb9f8bf125baa29761717d412f6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-05T10:43:35.780000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:50:08.030000Z\", \"playDuration\": \"PT4M58S\"}, {\"titleId\": \"CUSA39493_00\", \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"localizedName\": \"The Quintessential Quintuplets Gotopuzu Story\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 9, \"concept\": {\"id\": 10006924, \"titleIds\": [\"CUSA39493_00\"], \"name\": \"The Quintessential Quintuplets Gotopuzu Story\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"The Quintessential Quintuplets Gotopuzu Story\", \"en-GB\": \"The Quintessential Quintuplets Gotopuzu Story\", \"ja-JP\": \"\\u4e94\\u7b49\\u5206\\u306e\\u82b1\\u5ac1 \\u3054\\u3068\\u3071\\u305a\\u30b9\\u30c8\\u30fc\\u30ea\\u30fc\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/353703ee7b05c86297e1ec8d6033567471c4c779925e8fa7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/016fdfc2e73c59224bfc7b05604cb5d69d21ce34a2ddcc1f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2812/ca86254b326d502e067ce4cbeb405a1d6fdf5818a778661c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/89f7a8dda7990bbd7a4fa442e9ad8b1035b9c6cf8cffee78.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/0904d478454e454073c820d10a8e17430b360f56fe00af62.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1900/2bb58da370d31cd256f8940b2410a35e52d187e2f458ee80.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/2ff6b361e77cda6ec6475f72b053a1e448d454cb608803cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/03b91916dfab71b384d013be76adcbc2fd8432d1d74c69ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/87d30d0e84218f2c2d3d62536897bee64a3f168b2653495d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/fe3862b5b1aee19e6ff1bde300d047979f53def90b9d99f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/8a3b980787c0b7c2dfbeda41c0c8c542941eecec24ce98de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0218/d95d4ebc7f47b086e928a601f2a9e257236426ffdd08c3aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1109/aed450d2c98c9fbd62ac6f102edd4c1f13f631ad3689dcb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-04T10:01:36.180000Z\", \"lastPlayedDateTime\": \"2023-07-05T10:39:02.790000Z\", \"playDuration\": \"PT8H30M27S\"}, {\"titleId\": \"CUSA43267_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-03T00:51:14.750000Z\", \"lastPlayedDateTime\": \"2023-07-03T01:21:08.020000Z\", \"playDuration\": \"PT28M43S\"}, {\"titleId\": \"CUSA43266_00\", \"name\": \"Dofamine\", \"localizedName\": \"Dofamine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008337, \"titleIds\": [\"CUSA43266_00\", \"CUSA43267_00\"], \"name\": \"Dofamine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dofamine\", \"uk-UA\": \"Dofamine\", \"de-DE\": \"Dofamine\", \"en-US\": \"Dofamine\", \"pt-BR\": \"Dofamine\", \"es-ES\": \"Dofamine\", \"ar-AE\": \"Dofamine\", \"no-NO\": \"Dofamine\", \"fr-CA\": \"Dofamine\", \"it-IT\": \"Dofamine\", \"pl-PL\": \"Dofamine\", \"ru-RU\": \"Dofamine\", \"nl-NL\": \"Dofamine\", \"pt-PT\": \"Dofamine\", \"sv-SE\": \"Dofamine\", \"da-DK\": \"Dofamine\", \"tr-TR\": \"Dofamine\", \"fr-FR\": \"Dofamine\", \"en-GB\": \"Dofamine\", \"es-419\": \"Dofamine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1799455e51888cb2755daab76259968f5dbe726109ae90b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/ee8e63e9d7f2ed689d4950664ebed88758f9f156870643bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/bbd5264b2617e70f2283ee9783c78db80c1c0ab33c411ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3011/1aebe5215a3fa63e263af6b2998867d23058d454880175e1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/8d068da378c69dafa11bdeb7d9ed1b4f3fb49e4cd4994205.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/c5132916810c51fd258e9687f2033cb3315d6646fd722c7b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/752bd50c767b1307edf6dd1b25de206c3fc64997d17f9266.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/7d29e70346b469fe1ffb9f8b18c838304ceee5c030e9a4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/34d133f2d70f40016c64f01beb495bf7e15865b2b03a3187.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/bf9f43bf95d13d8f1b5bda541d18c6b1cc3935265e13a831.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2821/d33d539fce2eb70d6314c31587739464a6323ecd892758f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T11:23:34.990000Z\", \"lastPlayedDateTime\": \"2023-07-02T13:11:03.500000Z\", \"playDuration\": \"PT1H40M37S\"}, {\"titleId\": \"CUSA41310_00\", \"name\": \"Houkago Cinderella 2\", \"localizedName\": \"Houkago Cinderella 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007608, \"titleIds\": [\"CUSA41311_00\", \"CUSA41310_00\"], \"name\": \"Houkago Cinderella 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Houkago Cinderella 2\", \"en-GB\": \"Houkago Cinderella 2\", \"ja-JP\": \"\\u653e\\u8ab2\\u5f8c\\u30b7\\u30f3\\u30c7\\u30ec\\u30e9\\uff12\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/bb63751f7c2b56970e36a64a8cc3bd439cf01f3da2d20955.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/e77f95373cbd6832614e1bdf1592c71f240847f0648c6008.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ac407285e6f17833080567ae0777ca789319b945cba9f4ce.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/08bd3ab03f693a8f9e8f249ed609645c6ea076642b46b11e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2701/676b560b8feb64c7ef65f63fce7022b12e29056ddd1c1134.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d1495464122f62b433df9d5e7c40a10f2a08309708bc98c4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d0d82daf63c0cdd92b9c52b42c52c990f15f6ff8623ac1d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/a55c9b0efb5075c6f297f903f72a3bf68d12b9474928a366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5a2e6647212af172d03e83043da0787c5d9509126ec919de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/6a35b2af4cc62fdddedf96d5afb4d94c8f86ce6bb091efdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/d5b53032b2a87bde8c622676f160266512ff20a4fea96d7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/1537bc0625268dcad69508e1bc7a613547454329edfac3f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/ad255a683c3c5262f5bee56d8805181ad0524368d24cfc3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/5ac84210dba25a3109ab0d70ca652cd4ebe903c15319bf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/c1254bdbb93f60dc7c48fd3bf449b85066a699c02cecfaa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1009/2da1a22cbe2d5ef3f6ac5091bb56798fd1b9a3b0f83ca17f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1003/4b4d1585b3ae5eaa35dfdbdc7654a88bb2ea4fd7b92111c9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-02T07:15:30.840000Z\", \"lastPlayedDateTime\": \"2023-07-02T11:11:18.320000Z\", \"playDuration\": \"PT2H51M15S\"}, {\"titleId\": \"PPSA13286_00\", \"name\": \"CARRION\", \"localizedName\": \"CARRION\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002805, \"titleIds\": [\"CUSA27770_00\", \"CUSA27769_00\", \"CUSA30212_00\", \"CUSA30213_00\", \"PPSA13287_00\", \"PPSA13286_00\"], \"name\": \"CARRION\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CARRION\", \"uk-UA\": \"CARRION\", \"de-DE\": \"CARRION\", \"en-US\": \"CARRION\", \"ko-KR\": \"CARRION\", \"pt-BR\": \"CARRION\", \"es-ES\": \"CARRION\", \"ar-AE\": \"CARRION\", \"no-NO\": \"CARRION\", \"fr-CA\": \"CARRION\", \"it-IT\": \"CARRION\", \"pl-PL\": \"CARRION\", \"ru-RU\": \"CARRION\", \"zh-Hans\": \"\\u300a\\u7ea2\\u602a\\u300b\", \"nl-NL\": \"CARRION\", \"pt-PT\": \"CARRION\", \"zh-Hant\": \"\\u300a\\u7d05\\u602a\\u300b\", \"sv-SE\": \"CARRION\", \"da-DK\": \"CARRION\", \"tr-TR\": \"CARRION\", \"fr-FR\": \"CARRION\", \"en-GB\": \"CARRION\", \"es-419\": \"CARRION\", \"ja-JP\": \"CARRION\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/1DwYa4hl5v85YnAky7qnTshV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/X2ugOmSgLQiJZgDohe9HKr1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lR8UzQ2eXje53GL0jK6GeHqT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/KatGDHG4eNOjxC1aBPSDF2cC.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/0300/pv8xbrUUfQJkYJ8LtGMCvGdV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/81T7YNSM6COLR3HSZVEbFoKC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/t2pyWK3IaiCHyXrWWfJgjVzj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/lr260BWaFZqj38w4kQxFwIhn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/ncSDIGl39zGJc79frTF3zrCd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/8FtRElIih7yCyT8jzpb379d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/iNettf5GQYZNGFxbIGIb8jhl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/h2UCd5eq5AfuVgOArDCtgDAq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/xpGwIwL6NrcWm37Tk4nxed0k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/adlVRSINKerlKhl9Wog8TFY2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/6ErugemGkjEF9MMGFZiDs6I4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0800/O16L1ujS6wdE34JnUfwDF6xP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/0620/NH2ucTdNQgwnaACWmxo4iAPF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T13:17:31.730000Z\", \"lastPlayedDateTime\": \"2023-07-01T13:44:34.180000Z\", \"playDuration\": \"PT24M27S\"}, {\"titleId\": \"PPSA15895_00\", \"name\": \"Late Shift\", \"localizedName\": \"Late Shift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 227163, \"titleIds\": [\"CUSA07805_00\", \"CUSA07898_00\", \"CUSA16459_00\", \"CUSA14449_00\", \"PPSA15895_00\", \"PPSA15896_00\"], \"name\": \"Late Shift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Late Shift\", \"uk-UA\": \"Late Shift\", \"de-DE\": \"Late Shift\", \"en-US\": \"Late Shift\", \"ko-KR\": \"Late Shift\", \"pt-BR\": \"Late Shift\", \"es-ES\": \"Late Shift\", \"ar-AE\": \"Late Shift\", \"no-NO\": \"Late Shift\", \"fr-CA\": \"Late Shift\", \"it-IT\": \"Late Shift\", \"pl-PL\": \"Late Shift\", \"ru-RU\": \"Late Shift\", \"zh-Hans\": \"Late Shift\", \"nl-NL\": \"Late Shift\", \"pt-PT\": \"Late Shift\", \"zh-Hant\": \"Late Shift\", \"sv-SE\": \"Late Shift\", \"da-DK\": \"Late Shift\", \"tr-TR\": \"Late Shift\", \"fr-FR\": \"Late Shift\", \"en-GB\": \"Late Shift\", \"es-419\": \"Late Shift\", \"ja-JP\": \"Late Shift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/7a6ea0dd2379118c875586691a96e5ed238c1e6cde3eec75.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/55c4c976eb8f9a5566de105c34098dfe9a11ba5af6711152.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA07805_00/3/i_d195800797eb952c36cdc9ba06c0385f5d80b819ba0d159020316e4d41f52ef8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/cdd3f7743f01cb0f612f5ea02320203bd7780225e2cbbf76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/83994d43068fad3f3d469e2c493e934302148abcaa6f0dd1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/6b73876be28b208bbf9854fbc979cf9e924374916ebbc9b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/77c63a7bca3954df8fddcfdd946597af282f0e4f21ae022e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/eba101170f5307606bda3ec776267b775384c7a01bb0f612.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/30b673fdeb30a930db0b60a75aa969f3bd1940ad39dc2efb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/1788210aa76606defa4fe2f6af3ba6b7dec143a0e5e1aad5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/283c253b86f42afe9e073cf02340ff3d1fc1907d1da724be.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/d8228cc84dd7a24908c91197b3dbc1809216208d6fbddc58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1813/c448815a7b3994b7a9325b4dd336fcd03ce959c76c94ca17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/a0ebc2c30507ea8f8c7aa453c93772afda72cbe04e64f9ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0111/2e7def48cfbbddea87e772e158e276990d8edaded94abb1c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:45:36.520000Z\", \"lastPlayedDateTime\": \"2023-07-01T12:55:17.010000Z\", \"playDuration\": \"PT5H48M11S\"}, {\"titleId\": \"PPSA16415_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:57.400000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:25:13.260000Z\", \"playDuration\": \"PT13S\"}, {\"titleId\": \"PPSA16417_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:27.640000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:54.990000Z\", \"playDuration\": \"PT23S\"}, {\"titleId\": \"PPSA16414_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:24:07.320000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:25.280000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"PPSA16416_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:23:44.590000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:24:04.990000Z\", \"playDuration\": \"PT14S\"}, {\"titleId\": \"CUSA43351_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T05:08:31.630000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:23:10.170000Z\", \"playDuration\": \"PT14M25S\"}, {\"titleId\": \"CUSA43350_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:53:01.620000Z\", \"lastPlayedDateTime\": \"2023-07-01T05:08:26.340000Z\", \"playDuration\": \"PT14M19S\"}, {\"titleId\": \"CUSA43349_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:35:07.450000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:52:52.560000Z\", \"playDuration\": \"PT15M9S\"}, {\"titleId\": \"CUSA43352_00\", \"name\": \"Archers Dream - PS4 & PS5\", \"localizedName\": \"Archers Dream - PS4 & PS5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008363, \"titleIds\": [\"CUSA45673_00\", \"PPSA16416_00\", \"CUSA45672_00\", \"PPSA16414_00\", \"PPSA16417_00\", \"CUSA45674_00\", \"PPSA16415_00\", \"CUSA43352_00\", \"CUSA43351_00\", \"CUSA43349_00\", \"CUSA43350_00\", \"PPSA19182_00\", \"CUSA45671_00\", \"PPSA19181_00\", \"PPSA19183_00\", \"PPSA19184_00\"], \"name\": \"Archers Dream - PS4 & PS5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Archers Dream - PS4 & PS5\", \"uk-UA\": \"Archers Dream - PS4 & PS5\", \"de-DE\": \"Archers Dream - PS4 & PS5\", \"en-US\": \"Archers Dream - PS4 & PS5\", \"ko-KR\": \"Archers Dream - PS4 & PS5\", \"pt-BR\": \"Archers Dream - PS4 & PS5\", \"es-ES\": \"Archers Dream - PS4 & PS5\", \"ar-AE\": \"Archers Dream - PS4 & PS5\", \"no-NO\": \"Archers Dream - PS4 & PS5\", \"fr-CA\": \"Archers Dream - PS4 & PS5\", \"it-IT\": \"Archers Dream - PS4 & PS5\", \"pl-PL\": \"Archers Dream - PS4 & PS5\", \"ru-RU\": \"Archers Dream - PS4 & PS5\", \"zh-Hans\": \"Archers Dream - PS4 & PS5\", \"nl-NL\": \"Archers Dream - PS4 & PS5\", \"pt-PT\": \"Archers Dream - PS4 & PS5\", \"zh-Hant\": \"Archers Dream - PS4 & PS5\", \"sv-SE\": \"Archers Dream - PS4 & PS5\", \"da-DK\": \"Archers Dream - PS4 & PS5\", \"tr-TR\": \"Archers Dream - PS4 & PS5\", \"fr-FR\": \"Archers Dream - PS4 & PS5\", \"en-GB\": \"Archers Dream - PS4 & PS5\", \"es-419\": \"Archers Dream - PS4 & PS5\", \"ja-JP\": \"Archers Dream - PS4 & PS5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6c112c125877c1217f03bc66a18f0bd3252142bb706cfdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/b0126de5224cf14cb0b70244d012c9e61eb3c581eb777279.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/6c2c2cee393d0f0ed32325b7be51938b983c7bdcc70a3ade.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/42df445761b595b932bfe88bca0fad016004ac01d1518302.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/882a83f82777e4f9b4432d293923caa004b2d8a50c284871.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/87dfb07506dfcddfb3092b63ae3a679f374b0812b6d3f8ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/2b05b93e55f6d5d749a789b6dcf0c6787ebaf53cd69e47b2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d698414f832c0ec522218a4566f3be0fb748aa023afc7a83.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/36784de4cad217acbbbd25f613a86f2241de370b6aa53c0a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/883f40e8e31503ffe91b7e0b766e84f190ed311e6a952a0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/e9e1d5d3db23d6f6ebf14ec48c7f23a745cbfe498127b08b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/d6cdf715584d42cf47ad45a6e07be9d4b4079cb20ca101e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1411/7180970299c6afbfb74d4473f2f91515c8ef7c7afb6bbc9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T04:08:15.570000Z\", \"lastPlayedDateTime\": \"2023-07-01T04:29:05.640000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"PPSA17314_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:05:04.480000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:08:29.720000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA17315_00\", \"name\": \"Aliens Attack\", \"localizedName\": \"Aliens Attack\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008598, \"titleIds\": [\"CUSA43838_00\", \"PPSA17315_00\", \"PPSA17314_00\", \"PPSA17316_00\", \"CUSA44124_00\", \"CUSA44132_00\"], \"name\": \"Aliens Attack\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aliens Attack\", \"uk-UA\": \"Aliens Attack\", \"de-DE\": \"Aliens Attack\", \"en-US\": \"Aliens Attack\", \"pt-BR\": \"Aliens Attack\", \"es-ES\": \"Aliens Attack\", \"ar-AE\": \"Aliens Attack\", \"no-NO\": \"Aliens Attack\", \"fr-CA\": \"Aliens Attack\", \"it-IT\": \"Aliens Attack\", \"pl-PL\": \"Aliens Attack\", \"ru-RU\": \"Aliens Attack\", \"nl-NL\": \"Aliens Attack\", \"pt-PT\": \"Aliens Attack\", \"sv-SE\": \"Aliens Attack\", \"da-DK\": \"Aliens Attack\", \"tr-TR\": \"Aliens Attack\", \"fr-FR\": \"Aliens Attack\", \"en-GB\": \"Aliens Attack\", \"es-419\": \"Aliens Attack\", \"ja-JP\": \"Aliens Attack\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/7250ddd14e8e4aa054b0e049626d972d15822c3d8e63de2a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/e93516d074206bbb1518e9dc9f9f68a038fa5f910af769e3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/685d008d1176a9c9cd26e32e3c6b8305c49f5b5cf323dfa6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/996e80a2568f33b8a98a21d90a82eab33361a235e73d57c3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/2a2cbd0ca3c7d6c8958f7d0127b91ada1a3dc2c1205efbc8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/ad56f46166ded31272d671b12a711d39fe1d8d015ab56f65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/136e89943ae1db74c09d076a645c76c0312e936bec90f618.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/cfa9921751e3bed0fe28c5e52759811e12921626fa73a3c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/20db8b9d6f96429145ec8a5ed0440b490712730cf61c09cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/60279766589cf0f6265cf76c446b861913fbc21e923cf6a6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/05f4b77ad4deac33b14cf12c8b8c91ee3511c87353aecba0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/16538aa4062d55c2a8a745e097c4e229fab59fb20b8c705d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/66d90f29a2631fbe7b7bf7bdf5ee746c265257fa85ade43b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/0ad07e9a145acb6fd053051272e3bc9359e1d4e47c830d85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/4b7bb644b6ba5ba39f8926b933c31fb850612132eb3205d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2220/a251d3af18af453887436b0e7224ff2026409f351324a891.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1019/a059da52c3b38c8fd653cf1eb30316621b9035b73fdc7f39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-07-01T03:01:42.180000Z\", \"lastPlayedDateTime\": \"2023-07-01T03:05:02.100000Z\", \"playDuration\": \"PT3M13S\"}, {\"titleId\": \"CUSA05443_00\", \"name\": \"Fantasy Strike\", \"localizedName\": \"Fantasy Strike\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 28, \"concept\": {\"id\": 233566, \"titleIds\": [\"CUSA05443_00\", \"CUSA16518_00\"], \"name\": \"Fantasy Strike\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"FIGHTING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fantasy Strike\", \"uk-UA\": \"Fantasy Strike\", \"de-DE\": \"Fantasy Strike\", \"en-US\": \"Fantasy Strike\", \"pt-BR\": \"Fantasy Strike\", \"es-ES\": \"Fantasy Strike\", \"ar-AE\": \"Fantasy Strike\", \"no-NO\": \"Fantasy Strike\", \"fr-CA\": \"Fantasy Strike\", \"it-IT\": \"Fantasy Strike\", \"pl-PL\": \"Fantasy Strike\", \"ru-RU\": \"Fantasy Strike\", \"nl-NL\": \"Fantasy Strike\", \"pt-PT\": \"Fantasy Strike\", \"sv-SE\": \"Fantasy Strike\", \"da-DK\": \"Fantasy Strike\", \"tr-TR\": \"Fantasy Strike\", \"fr-FR\": \"Fantasy Strike\", \"en-GB\": \"Fantasy Strike\", \"es-419\": \"Fantasy Strike\", \"ja-JP\": \"\\u30d5\\u30a1\\u30f3\\u30bf\\u30b8\\u30fc\\u30b9\\u30c8\\u30e9\\u30a4\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16518_00/2/i_e89786b2ffeabb8898456e9938dadf5abeacaa1f075f65e60bd16fa3acb7bb7f/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202006/1521/QSJhSIWi0VgSNykuGFjwc7de.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2020-07-26T04:29:45.470000Z\", \"lastPlayedDateTime\": \"2023-07-01T02:52:43.160000Z\", \"playDuration\": \"PT13H17M25S\"}, {\"titleId\": \"CUSA35809_00\", \"name\": \"Crazy Chicken Shooter Edition\", \"localizedName\": \"Crazy Chicken Shooter Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002523, \"titleIds\": [\"PPSA03116_00\", \"CUSA35809_00\", \"PPSA03117_00\", \"CUSA35810_00\"], \"name\": \"Crazy Chicken Shooter Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Crazy Chicken Shooter Edition\", \"uk-UA\": \"Crazy Chicken Shooter Edition\", \"de-DE\": \"Moorhuhn Shooter Edition\", \"en-US\": \"Crazy Chicken Shooter Edition\", \"pt-BR\": \"Crazy Chicken Shooter Edition\", \"es-ES\": \"Crazy Chicken Shooter Edition\", \"ar-AE\": \"Crazy Chicken Shooter Edition\", \"no-NO\": \"Crazy Chicken Shooter Edition\", \"fr-CA\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"it-IT\": \"Crazy Chicken Shooter Edition\", \"pl-PL\": \"Crazy Chicken Shooter Edition\", \"ru-RU\": \"Crazy Chicken Shooter Edition\", \"nl-NL\": \"Crazy Chicken Shooter Edition\", \"pt-PT\": \"Crazy Chicken Shooter Edition\", \"sv-SE\": \"Crazy Chicken Shooter Edition\", \"da-DK\": \"Crazy Chicken Shooter Edition\", \"tr-TR\": \"Crazy Chicken Shooter Edition\", \"fr-FR\": \"Moorhuhn Crazy Chicken Shooter Edition\", \"en-GB\": \"Crazy Chicken Shooter Edition\", \"es-419\": \"Crazy Chicken Shooter Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/651Pv2vdmGAjwPmW5M41PSQC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/X1qYagCPbaPWm8CfWsT0T2vR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IkWbKeFqtBJJzfm3cv9506tp.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/IAUpnrQEaszY1ku0PqCzf4Ab.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/hGah4jiMtUAvO3JCckNTYoX2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/3gFsWGtRgnnoDXYOpjomVE35.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/aBKtJxsKL77kMEVGGVFU7HXT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/xNJu3jmHEih5HX5BSCiKTB6h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/RDBuGzRJMVfhOE0Q27bQvatK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/pB6g3MYWP2RfJU2i07iJMKbX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/Hl3Tq7Zl01jfuv9ifmVrALYn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/0614/UHKW4pFOnL0W0hAPXcIF95gf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2609/z2FtbvTqZrc3pcfeP1vnnqPo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T09:09:29.710000Z\", \"lastPlayedDateTime\": \"2023-06-30T13:34:50.690000Z\", \"playDuration\": \"PT2H48M25S\"}, {\"titleId\": \"PPSA16450_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:36:45.940000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:42:37.340000Z\", \"playDuration\": \"PT5M40S\"}, {\"titleId\": \"PPSA16451_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T10:29:06.880000Z\", \"lastPlayedDateTime\": \"2023-06-30T10:36:43.900000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"PPSA04476_00\", \"name\": \"Fall Guys\", \"localizedName\": \"Fall Guys\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10003354, \"titleIds\": [\"CUSA31669_00\", \"CUSA29380_00\", \"CUSA29381_00\", \"CUSA29237_00\", \"CUSA29236_00\", \"PPSA04478_00\", \"PPSA04621_00\", \"PPSA04476_00\", \"PPSA04622_00\"], \"name\": \"Fall Guys\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/b3af97cd2ba460834ac4201c7dee2f19cf88f65446bf14bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/904e1ae213215571bb24c8c7d8459772e46fcafe068f6298.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/223313d501df552d905da27fd4e03ac75d372517668daad0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/744c1557cc22d264ce900d9e89b81e767a52a48d0449744b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/5a36d196253b9b33bf8ea1db2a5ce874695704646f31c990.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Fall Guys\", \"uk-UA\": \"Fall Guys\", \"de-DE\": \"Fall Guys\", \"en-US\": \"Fall Guys\", \"ko-KR\": \"Fall Guys\", \"pt-BR\": \"Fall Guys\", \"es-ES\": \"Fall Guys\", \"ar-AE\": \"Fall Guys\", \"no-NO\": \"Fall Guys\", \"fr-CA\": \"Fall Guys\", \"it-IT\": \"Fall Guys\", \"pl-PL\": \"Fall Guys\", \"ru-RU\": \"Fall Guys\", \"zh-Hans\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"nl-NL\": \"Fall Guys\", \"pt-PT\": \"Fall Guys\", \"zh-Hant\": \"\\u300a\\u7cd6\\u8c46\\u4eba\\u300b\", \"sv-SE\": \"Fall Guys\", \"da-DK\": \"Fall Guys\", \"tr-TR\": \"Fall Guys\", \"fr-FR\": \"Fall Guys\", \"en-GB\": \"Fall Guys\", \"es-419\": \"Fall Guys\", \"ja-JP\": \"Fall Guys\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/b3af97cd2ba460834ac4201c7dee2f19cf88f65446bf14bb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/904e1ae213215571bb24c8c7d8459772e46fcafe068f6298.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/223313d501df552d905da27fd4e03ac75d372517668daad0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/2711/bc940b3cd3183f34c60246010c7bbf25b1da4b50b4b29f48.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/744c1557cc22d264ce900d9e89b81e767a52a48d0449744b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/5a36d196253b9b33bf8ea1db2a5ce874695704646f31c990.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/06d584bf28012de43f0801c47c4d89bcfb9d18fa060e2c91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3bce6c915b46e602b5f785671f0833c8b725935557a74524.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/f104b81ba4258d40081c4257250832713434371bfc7f1558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/b7abe40103063f315b6804edd92cfa2bf26fa0500e831454.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/3f5e2911273465c7184f49804dbba8088d77800f94cd5091.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0916/45ddbdf132ceefbe8f067ed2094e36f93368e8587c9679c6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0721/00dd43384a1ed60cd7453428dd5c6897b35b013d4b98965d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-06-21T08:07:57.700000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:58:16.000000Z\", \"playDuration\": \"PT9M12S\"}, {\"titleId\": \"PPSA08439_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-30T06:11:01.950000Z\", \"lastPlayedDateTime\": \"2023-06-30T08:47:46.760000Z\", \"playDuration\": \"PT2H36M33S\"}, {\"titleId\": \"CUSA34504_00\", \"name\": \"Geometric Sniper\", \"localizedName\": \"Geometric Sniper\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005399, \"titleIds\": [\"CUSA34503_00\", \"PPSA08440_00\", \"CUSA34505_00\", \"PPSA08438_00\", \"CUSA34504_00\", \"PPSA08439_00\"], \"name\": \"Geometric Sniper\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Geometric Sniper\", \"uk-UA\": \"Geometric Sniper\", \"de-DE\": \"Geometric Sniper\", \"en-US\": \"Geometric Sniper\", \"ko-KR\": \"Geometric Sniper\", \"pt-BR\": \"Geometric Sniper\", \"es-ES\": \"Geometric Sniper\", \"ar-AE\": \"Geometric Sniper\", \"no-NO\": \"Geometric Sniper\", \"fr-CA\": \"Geometric Sniper\", \"it-IT\": \"Geometric Sniper\", \"pl-PL\": \"Geometric Sniper\", \"ru-RU\": \"Geometric Sniper\", \"zh-Hans\": \"Geometric Sniper\", \"nl-NL\": \"Geometric Sniper\", \"pt-PT\": \"Geometric Sniper\", \"zh-Hant\": \"Geometric Sniper\", \"sv-SE\": \"Geometric Sniper\", \"da-DK\": \"Geometric Sniper\", \"tr-TR\": \"Geometric Sniper\", \"fr-FR\": \"Geometric Sniper\", \"en-GB\": \"Geometric Sniper\", \"es-419\": \"Geometric Sniper\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/AVBXyy78RH4dVNA3EMdmrWb5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/idIYau46Ur9gK7fD8EptURK3.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iiDtJmVPGknaXK1JOyhBAOQG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/XdXcMpWCthP33fX0qg5VUSUG.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/kqb111XgtDkvtGJwNpQXZcIg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/w5TV25EhkWZn2m2nkV5psmSR.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/pS9AbDlVzsyZiBTljSxxsXNq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/W2sQPAXpajRdDpgXlMAEVGU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/tIDj1eN7Emzr7m7OekZOoFVI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/mNdGxp1vjMqmhadSvdLORaT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/z6Zy8DudDyidue8MmIH1DlEZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/4D573iqwstWOGycytcavnRdL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Rbnei0HOLPav8krSzhDRJhYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/3E3vfo7JBNikcTJs9WCGXXqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/Re88x31B3ADWJRK9zpxK4FVr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/eBGnh7vN3cumMN0dcoYh3n80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2609/iLBmXTrLnTMnndMMu6jl8Otq.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T14:25:15.930000Z\", \"lastPlayedDateTime\": \"2023-06-30T05:32:00.880000Z\", \"playDuration\": \"PT3H44M30S\"}, {\"titleId\": \"CUSA24787_00\", \"name\": \"Double Pug Switch\", \"localizedName\": \"Double Pug Switch\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 234008, \"titleIds\": [\"CUSA15758_00\", \"CUSA24787_00\"], \"name\": \"Double Pug Switch\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Double Pug Switch\", \"uk-UA\": \"Double Pug Switch\", \"de-DE\": \"Double Pug Switch\", \"en-US\": \"Double Pug Switch\", \"pt-BR\": \"Double Pug Switch\", \"es-ES\": \"Double Pug Switch\", \"ar-AE\": \"Double Pug Switch\", \"no-NO\": \"Double Pug Switch\", \"fr-CA\": \"Double Pug Switch\", \"it-IT\": \"Double Pug Switch\", \"pl-PL\": \"Double Pug Switch\", \"ru-RU\": \"Double Pug Switch\", \"nl-NL\": \"Double Pug Switch\", \"pt-PT\": \"Double Pug Switch\", \"sv-SE\": \"Double Pug Switch\", \"da-DK\": \"Double Pug Switch\", \"tr-TR\": \"Double Pug Switch\", \"fr-FR\": \"Double Pug Switch\", \"en-GB\": \"Double Pug Switch\", \"es-419\": \"Double Pug Switch\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/BlLoyM6HvO8Ui9PTj6IqPKXM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/Fb2wQAwvX8LdgeFd7yoqDmOC.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/ypdKDoonpxWH3EeGk75ihOo0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/5nVHeBTzFpfEdj0xv2qIVxYJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2615/Up9YKT8eQA6zDEu9VbUm3H6U.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6hTRKIr0rYs5v1RI1mKZZV6W.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/hhxPYNeSfLgBuHfmFz2Ls45q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/16wfEsMGaXezde7LYCViDOxq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/vLR3UUDHeSjUXvYcDAtaBZvn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/sYuDm3zBDx7vRnChBtdw6Ucv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/N4MlGhIsroZjdsUko7M0dHCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/KdodjaItZcU4EYx9nOB3VodM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/6wfTUEuqdcqIHygL52JdJMhS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cyl8uUVdlG4bYiYkGPhHuLbp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/BTD8JzWYCYGREJhFYC72DtRX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202009/0712/cTnT3WtzfESKvTTtxnHB4bpf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/2012/jDXf5amLKcdoN5Zr1T2Awphi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T06:05:00.970000Z\", \"lastPlayedDateTime\": \"2023-06-29T09:00:15.010000Z\", \"playDuration\": \"PT1H59M13S\"}, {\"titleId\": \"CUSA29776_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T04:12:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-29T05:54:30.790000Z\", \"playDuration\": \"PT1H41M19S\"}, {\"titleId\": \"PPSA11427_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T03:02:16.330000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:19:39.390000Z\", \"playDuration\": \"PT17M20S\"}, {\"titleId\": \"PPSA11426_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:56:10.890000Z\", \"lastPlayedDateTime\": \"2023-06-29T03:02:14.440000Z\", \"playDuration\": \"PT5M57S\"}, {\"titleId\": \"CUSA38207_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:48:20.860000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:56:09.050000Z\", \"playDuration\": \"PT6M11S\"}, {\"titleId\": \"CUSA38208_00\", \"name\": \"Rocket Lift\", \"localizedName\": \"Rocket Lift\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006578, \"titleIds\": [\"CUSA38209_00\", \"CUSA38210_00\", \"PPSA11426_00\", \"PPSA11427_00\", \"CUSA38207_00\", \"PPSA11429_00\", \"CUSA38208_00\", \"PPSA11428_00\"], \"name\": \"Rocket Lift\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rocket Lift\", \"uk-UA\": \"Rocket Lift\", \"de-DE\": \"Rocket Lift\", \"en-US\": \"Rocket Lift\", \"ko-KR\": \"Rocket Lift\", \"pt-BR\": \"Rocket Lift\", \"es-ES\": \"Rocket Lift\", \"ar-AE\": \"Rocket Lift\", \"no-NO\": \"Rocket Lift\", \"fr-CA\": \"Rocket Lift\", \"it-IT\": \"Rocket Lift\", \"pl-PL\": \"Rocket Lift\", \"ru-RU\": \"Rocket Lift\", \"zh-Hans\": \"Rocket Lift\", \"nl-NL\": \"Rocket Lift\", \"pt-PT\": \"Rocket Lift\", \"zh-Hant\": \"Rocket Lift\", \"sv-SE\": \"Rocket Lift\", \"da-DK\": \"Rocket Lift\", \"tr-TR\": \"Rocket Lift\", \"fr-FR\": \"Rocket Lift\", \"en-GB\": \"Rocket Lift\", \"es-419\": \"Rocket Lift\", \"ja-JP\": \"Rocket Lift\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/9a3e81344c6fb7d9db8cecea1def6482faf401ef5e08d821.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/OTpKPS6Jh4Jv7iPnNLDlW6Zb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/f2sTYYeapPx9xtuVxUn4zhW7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2520/d159d6b34f4bfad4c3959e0de00d601542d9bc233d342b81.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/yTFjCnFVQFwRvwofdLRn4jth.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/vC1kcaP2imdFvpTdkfqSdgRB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3cae9a532264772bfa0f17dbdf6d2da1e618b9fe1614e08e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/99e615318924c1ed9d01f9bd0641f7010436c138831a4bc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/8d27f6c07c15657db9e6495e6ea14228a34d99938d835f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3638d615a6133f8926fb123f4a5f65e2493210cbd8832a01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/88123c88dd78485550297bcdda1864870fd87597667fbdbf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c8e3ffaae512ac7a6ea538cda45ec91ff16c82252918329.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0422/zK9hCWjRizYaRaybUlFqIHAD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-29T02:39:07.530000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:48:18.620000Z\", \"playDuration\": \"PT6M36S\"}, {\"titleId\": \"CUSA42290_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:39:56.500000Z\", \"lastPlayedDateTime\": \"2023-06-29T02:39:02.110000Z\", \"playDuration\": \"PT52M36S\"}, {\"titleId\": \"CUSA28677_00\", \"name\": \"Inked: A Tale of Love\", \"localizedName\": \"Inked: A Tale of Love\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003122, \"titleIds\": [\"CUSA28677_00\", \"CUSA29776_00\", \"CUSA29777_00\", \"CUSA29778_00\"], \"name\": \"Inked: A Tale of Love\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inked: A Tale of Love\", \"uk-UA\": \"Inked: A Tale of Love\", \"de-DE\": \"Inked: A Tale of Love\", \"en-US\": \"Inked: A Tale of Love\", \"ko-KR\": \"Inked: A Tale of Love\", \"pt-BR\": \"Inked: A Tale of Love\", \"es-ES\": \"Inked: A Tale of Love\", \"ar-AE\": \"Inked: A Tale of Love\", \"no-NO\": \"Inked: A Tale of Love\", \"fr-CA\": \"Inked: A Tale of Love\", \"it-IT\": \"Inked: A Tale of Love\", \"pl-PL\": \"Inked: A Tale of Love\", \"ru-RU\": \"Inked: A Tale of Love\", \"zh-Hans\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"nl-NL\": \"Inked: A Tale of Love\", \"pt-PT\": \"Inked: A Tale of Love\", \"zh-Hant\": \"Inked: A Tale of Love \\u6d07\\u5ba2\", \"sv-SE\": \"Inked: A Tale of Love\", \"da-DK\": \"Inked: A Tale of Love\", \"tr-TR\": \"Inked: A Tale of Love\", \"fr-FR\": \"Inked: A Tale of Love\", \"en-GB\": \"Inked: A Tale of Love\", \"es-419\": \"Inked: A Tale of Love\", \"ja-JP\": \"Inked: A Tale of Love\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/yQbkTfuRIb2szgkAwAwOlhpi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/2mJbJ9rDvBeLwbZdV5wdF4y4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/0613/3qHuxqWcQdluxlEa5Q0dX5Zq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/3110/D8eJ1NaDACO8Fbes2MMLyD9e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/WJYdLn8keza1HTYRGGsSLPVO.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CcU4QUHZ3zZkUQO4igmfxcXA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/Ntg3cIsO7AxtQaf79QsQQVkb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/RIMjzQGLPunkIyI8S2z8rWQF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/ul3JFvdD0iH3Q8bNs952hqjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/GbOybC4BL6AGoDGGt4xfcNT7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/CES4L1jUthViICE3ZzgYwF55.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/fcwUS7ngSrKG9ieGSu5SdlJq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/owrpzhgnXC3We3tyKeQtho6U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/TCs6jOwDjgzZJ887Z8gDgU3J.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/bkpPz8F9TRwTXRWJgcHZuuo6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2009/STaAozXT8fEsuus6N8RKhA3Z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T11:49:30.320000Z\", \"lastPlayedDateTime\": \"2023-06-28T15:33:17.730000Z\", \"playDuration\": \"PT3H28M10S\"}, {\"titleId\": \"CUSA30060_00\", \"name\": \"Creepy Tale\", \"localizedName\": \"Creepy Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003675, \"titleIds\": [\"CUSA30095_00\", \"CUSA30060_00\"], \"name\": \"Creepy Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Creepy Tale\", \"uk-UA\": \"Creepy Tale\", \"de-DE\": \"Creepy Tale\", \"en-US\": \"Creepy Tale\", \"pt-BR\": \"Creepy Tale\", \"es-ES\": \"Creepy Tale\", \"ar-AE\": \"Creepy Tale\", \"no-NO\": \"Creepy Tale\", \"fr-CA\": \"Creepy Tale\", \"it-IT\": \"Creepy Tale\", \"pl-PL\": \"Creepy Tale\", \"ru-RU\": \"Creepy Tale\", \"nl-NL\": \"Creepy Tale\", \"pt-PT\": \"Creepy Tale\", \"sv-SE\": \"Creepy Tale\", \"da-DK\": \"Creepy Tale\", \"tr-TR\": \"Creepy Tale\", \"fr-FR\": \"Creepy Tale\", \"en-GB\": \"Creepy Tale\", \"es-419\": \"Creepy Tale\", \"ja-JP\": \"Creepy Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/73e5ae88b79ae744b4efe66cdbeab0cddbff8a796baaffb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/9e5022bcdfe01fa71240d1c82d6e5d74704e668bcfc5cbe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/53dfd86de4539441a0beb930d90f23c4e5809b36785f4e51.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/698611f0d13f8b57be32c1539ac9afc356b8ec841ca428a1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/b00dfb43d48999bb7a6b529b5b17d8f8f7b9db8f2f985de0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/6e748e68e54195df47b0b0465d032c93a3064dc3f193934e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/c858fc792187c1dac45d7674114748233b324b47d4a33a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/df00db25e416f66a9d49b998e7131e7f02ef11dd7de53bc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/068a666350312cebd50d0ee35d3c83f3f081195b995e1ac6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/eb6c970ff2d90ad636897a496b40da5de677b27986d0690e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/9a502d5101421d9b4258320afba66c29d8a84dc8ce6cddcf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/a008b6cc832de163e9710fcd6d37c9ad444e8ae0a8ca3d33.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/ea64c73e30ac20b20880fcabf0606e3c7709ca3a53377ed6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3114/4e32fb00437615c26871207115e91cb03fd2bb4c4587b3f0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T10:40:10.530000Z\", \"lastPlayedDateTime\": \"2023-06-28T11:22:17.280000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"PPSA12436_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:21:50.280000Z\", \"lastPlayedDateTime\": \"2023-06-28T06:10:47.480000Z\", \"playDuration\": \"PT1H41M55S\"}, {\"titleId\": \"CUSA43662_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:15:49.570000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:18:59.010000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA44028_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:07:29.270000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:15:02.040000Z\", \"playDuration\": \"PT7M29S\"}, {\"titleId\": \"CUSA44027_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:04:08.510000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:07:25.430000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA44026_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T04:00:48.250000Z\", \"lastPlayedDateTime\": \"2023-06-28T04:04:04.780000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA44029_00\", \"name\": \"Rainbow Snake\", \"localizedName\": \"Rainbow Snake\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008695, \"titleIds\": [\"CUSA44027_00\", \"CUSA44026_00\", \"CUSA44028_00\", \"CUSA44029_00\"], \"name\": \"Rainbow Snake\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rainbow Snake\", \"uk-UA\": \"Rainbow Snake\", \"de-DE\": \"Rainbow Snake\", \"en-US\": \"Rainbow Snake\", \"ko-KR\": \"Rainbow Snake\", \"pt-BR\": \"Rainbow Snake\", \"es-ES\": \"Rainbow Snake\", \"ar-AE\": \"Rainbow Snake\", \"no-NO\": \"Rainbow Snake\", \"fr-CA\": \"Rainbow Snake\", \"it-IT\": \"Rainbow Snake\", \"pl-PL\": \"Rainbow Snake\", \"ru-RU\": \"Rainbow Snake\", \"zh-Hans\": \"Rainbow Snake\", \"nl-NL\": \"Rainbow Snake\", \"pt-PT\": \"Rainbow Snake\", \"zh-Hant\": \"Rainbow Snake\", \"sv-SE\": \"Rainbow Snake\", \"da-DK\": \"Rainbow Snake\", \"tr-TR\": \"Rainbow Snake\", \"fr-FR\": \"Rainbow Snake\", \"en-GB\": \"Rainbow Snake\", \"es-419\": \"Rainbow Snake\", \"ja-JP\": \"Rainbow Snake\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/13da6b208dd886d553f5206b9b3e46cb2c874582560c6ab2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/30db5bac571a760ce6edc0eb3b33568a8224cb3dceb33416.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/53aa7119c624b3191e52c5f149712b713ba4d4a54ed686b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/56a30c21bba1783b751e0d74b499106308a7de91a96aa842.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/600816c02d2dfea6ce4e6f7a8fb0457424dfa18efe83bfe8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/7e54523482d52429b8be7b910242bbb967b60614ee1e4cc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/88f4f2b45cd7b34de0ab20bacb0529b56bc2c2d11e093552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bb411c53eaa7734ce9c5df29e24b5396719bbc3d1f286d2f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/bc0d859be98eb9e6856e3d83e44f0e0bbebd12f2b49e7552.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1414/c0897311a45844709a0bf683c9f7e748df3163777e4a81f1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-28T03:56:02.750000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:59:33.820000Z\", \"playDuration\": \"PT3M26S\"}, {\"titleId\": \"CUSA39403_00\", \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"localizedName\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006884, \"titleIds\": [\"PPSA12436_00\", \"PPSA12437_00\", \"CUSA39403_00\", \"CUSA39404_00\"], \"name\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"BRAIN_TRAINING\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"uk-UA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"de-DE\": \"Rush Hour\\u00ae Deluxe \\u2013 Das ultimative Stauspiel!\", \"en-US\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-BR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-ES\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ar-AE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"no-NO\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-CA\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"it-IT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pl-PL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"ru-RU\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"nl-NL\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"pt-PT\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"sv-SE\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"da-DK\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"tr-TR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"fr-FR\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"en-GB\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\", \"es-419\": \"Rush Hour\\u00ae Deluxe \\u2013 The ultimate traffic jam game!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/8c7tACekxfUsrh8miNw1uFuy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/DbcYjgrcJtdv31psI1Juj1St.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ZBgEZeklINuC82NAJvvZywiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/tzhHmoYV6gKIM4wAn4vCDHAI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/5eywD2eLshZwTMUvWompMBnQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1009/ue7luuLdfacXMCayFhcQH1fu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/Rtwh7MK8DTSi2cXMITM9y5RI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/wYc9Jn8lPPerjP4skTc3Yg2j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/nGSEx7gUZJ3LlKtRBShjqlbR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/NtLJKBTu3irPkhmFeEQbGeyj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/bftsXavrUrXkRSddJmVZwKpM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0612/tKio09wqfbgu51pFtoOsdTyf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/0916/0pEToRObsT2S4AB2yINfZJ6h.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T09:08:50.920000Z\", \"lastPlayedDateTime\": \"2023-06-28T03:11:19.000000Z\", \"playDuration\": \"PT2H3M31S\"}, {\"titleId\": \"PPSA14477_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T12:24:24.300000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:46:29.720000Z\", \"playDuration\": \"PT20M13S\"}, {\"titleId\": \"PPSA14478_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:59:21.000000Z\", \"lastPlayedDateTime\": \"2023-06-27T12:24:22.220000Z\", \"playDuration\": \"PT24M43S\"}, {\"titleId\": \"PPSA04895_00\", \"name\": \"Very Very Valet\", \"localizedName\": \"Very Very Valet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003435, \"titleIds\": [\"PPSA04894_00\", \"PPSA04895_00\"], \"name\": \"Very Very Valet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PARTY\", \"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"uk-UA\": \"Very Very Valet\", \"de-DE\": \"Very Very Valet\", \"en-US\": \"Very Very Valet\", \"ko-KR\": \"Very Very Valet\", \"es-ES\": \"Very Very Valet\", \"fr-CA\": \"Very Very Valet\", \"it-IT\": \"Very Very Valet\", \"ru-RU\": \"Very Very Valet\", \"zh-Hans\": \"Very Very Valet\", \"zh-Hant\": \"Very Very Valet\", \"fr-FR\": \"Very Very Valet\", \"en-GB\": \"Very Very Valet\", \"es-419\": \"Very Very Valet\", \"ja-JP\": \"Very Very Valet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/TEPM7CPcVen7H4rgGrKwPJun.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/1020/QiIMmXfJ8VgfjWwwqZ6qLVws.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T07:16:30.450000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:59:14.260000Z\", \"playDuration\": \"PT1H51M29S\"}, {\"titleId\": \"CUSA41450_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T11:19:23.290000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:56:53.100000Z\", \"playDuration\": \"PT24M7S\"}, {\"titleId\": \"CUSA41451_00\", \"name\": \"Tricks Magician\", \"localizedName\": \"Tricks Magician\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007664, \"titleIds\": [\"CUSA41451_00\", \"CUSA41450_00\", \"PPSA14477_00\", \"PPSA14478_00\"], \"name\": \"Tricks Magician\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tricks Magician\", \"uk-UA\": \"Tricks Magician\", \"de-DE\": \"Tricks Magician\", \"en-US\": \"Tricks Magician\", \"pt-BR\": \"Tricks Magician\", \"es-ES\": \"Tricks Magician\", \"ar-AE\": \"Tricks Magician\", \"no-NO\": \"Tricks Magician\", \"fr-CA\": \"Tricks Magician\", \"it-IT\": \"Tricks Magician\", \"pl-PL\": \"Tricks Magician\", \"ru-RU\": \"Tricks Magician\", \"nl-NL\": \"Tricks Magician\", \"pt-PT\": \"Tricks Magician\", \"sv-SE\": \"Tricks Magician\", \"da-DK\": \"Tricks Magician\", \"tr-TR\": \"Tricks Magician\", \"fr-FR\": \"Tricks Magician\", \"en-GB\": \"Tricks Magician\", \"es-419\": \"Tricks Magician\", \"ja-JP\": \"\\u30c8\\u30ea\\u30c3\\u30af\\u30b9\\u30fb\\u30de\\u30b8\\u30b7\\u30e3\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f94bbee92864dce1e3ae6365f6c9894513bfb60839143620.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0e7e837581a48d9e98b091e88bcc9e1d2a5a0e764ced5efe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a385edb618cdd1b55d272f06dfb92605a2523b558e850f5e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8ab50609018844307dc595682ddb391ad0eec36d85955ee2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/0b7c519580c19700030f945bf27540c1e0f8e79e63acec9f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/b14ae4d0f2c615ea5fed77b50217f06f0041b7a20f1bb836.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/03e8900b060006d9d9fe20c7af6fa0004acd137d916f6998.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/f99ef2e6afaa6f3f2ff5782a0955252c23247524a43d2c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/8135c4d0e365fcc6158675cd085ff60a1eed762b99a5b72a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/e30d4d34b3e7f9c2caeea545a48f7cf586b6c0091dd2af19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/882d30ec5ddb3765bfa36a019089b3944c652d8dc38a30c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/a3bdec083a3259eae61419291236a185c5236223011e4be0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0216/97dd38117422fc401dae7771d20b063c3ac82f00011ba3f4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T10:25:00.750000Z\", \"lastPlayedDateTime\": \"2023-06-27T11:19:21.130000Z\", \"playDuration\": \"PT31M38S\"}, {\"titleId\": \"CUSA44001_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T05:48:59.680000Z\", \"lastPlayedDateTime\": \"2023-06-27T07:11:32.910000Z\", \"playDuration\": \"PT1H22M25S\"}, {\"titleId\": \"CUSA44000_00\", \"name\": \"A Frog Game\", \"localizedName\": \"A Frog Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008682, \"titleIds\": [\"CUSA44000_00\", \"CUSA44001_00\"], \"name\": \"A Frog Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"A Frog Game\", \"uk-UA\": \"A Frog Game\", \"de-DE\": \"A Frog Game\", \"en-US\": \"A Frog Game\", \"pt-BR\": \"A Frog Game\", \"es-ES\": \"A Frog Game\", \"ar-AE\": \"A Frog Game\", \"no-NO\": \"A Frog Game\", \"fr-CA\": \"A Frog Game\", \"it-IT\": \"A Frog Game\", \"pl-PL\": \"A Frog Game\", \"ru-RU\": \"A Frog Game\", \"nl-NL\": \"A Frog Game\", \"pt-PT\": \"A Frog Game\", \"sv-SE\": \"A Frog Game\", \"da-DK\": \"A Frog Game\", \"tr-TR\": \"A Frog Game\", \"fr-FR\": \"A Frog Game\", \"en-GB\": \"A Frog Game\", \"es-419\": \"A Frog Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/dd0e6f168d5d96adac9fc23186987c85c9d210debb15696a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/ce5daf4ec966bf8a9091a9b4fddb4cfd6e66cb2763d42318.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1bcedc5be1f5af3a843d1cd30b5b600602cb0d02f3115bab.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f7d1b46c31162420c479c06789ff33d0ec0cf29d24a656cb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/1f162bd8a275759f196627025dbbd202f42c56edf575b1a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/0adb299bec61b1f8db11e1c605e49f373dfd47b1a3b0842c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/51c615b74301e09bdcaa1592f669d7f1f57078a8c2f4e0cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a004023ad6b2dd654dff6d55bae28b02120e13450c27ec89.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-27T03:53:02.810000Z\", \"lastPlayedDateTime\": \"2023-06-27T05:43:50.150000Z\", \"playDuration\": \"PT1H50M43S\"}, {\"titleId\": \"CUSA29947_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T14:35:09.730000Z\", \"lastPlayedDateTime\": \"2023-06-27T02:53:57.440000Z\", \"playDuration\": \"PT1H58M12S\"}, {\"titleId\": \"PPSA04955_00\", \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"localizedName\": \"Bibi & Tina \\u2013 New adventures with horses\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003639, \"titleIds\": [\"PPSA04956_00\", \"PPSA04955_00\", \"CUSA29947_00\", \"CUSA29948_00\"], \"name\": \"Bibi & Tina \\u2013 New adventures with horses\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"SIMULATION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bibi & Tina \\u2013 New adventures with horses\", \"uk-UA\": \"Bibi & Tina \\u2013 New adventures with horses\", \"de-DE\": \"Bibi & Tina \\u2013 Das Pferdeabenteuer\", \"en-US\": \"Bibi & Tina \\u2013 New adventures with horses\", \"pt-BR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-ES\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\", \"ar-AE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"no-NO\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-CA\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"it-IT\": \"Bibi & Tina \\u2013 Nuove avventure a cavallo\", \"pl-PL\": \"Bibi & Tina \\u2013 New adventures with horses\", \"ru-RU\": \"Bibi & Tina \\u2013 New adventures with horses\", \"nl-NL\": \"Bibi & Tina \\u2013 Nieuwe avonturen met paarden\", \"pt-PT\": \"Bibi & Tina \\u2013 New adventures with horses\", \"sv-SE\": \"Bibi & Tina \\u2013 New adventures with horses\", \"da-DK\": \"Bibi & Tina \\u2013 New adventures with horses\", \"tr-TR\": \"Bibi & Tina \\u2013 New adventures with horses\", \"fr-FR\": \"Bibi & Tina \\u2013 Nouvelles aventures \\u00e0 cheval\", \"en-GB\": \"Bibi & Tina \\u2013 New adventures with horses\", \"es-419\": \"Bibi & Tina \\u2013 Nuevas aventuras a caballo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/nDN2SqCDhYYBbokrPxjR6pH0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/E1WdHm8QNQOD0xLd2VgM9afX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/HM84yiybjts3ydvkeISkl1m5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/FtAQ0Bopoh93D4oPuNZFzw4Q.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/DjS9j6h23e3zlKhNj3CeNlh3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/1hmghRLWXmPoI0Z3ji0aKLdO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/2816/kocYaSlQ6elWYu0APP37YTsP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:56:03.960000Z\", \"lastPlayedDateTime\": \"2023-06-26T14:35:07.590000Z\", \"playDuration\": \"PT3H50M12S\"}, {\"titleId\": \"CUSA43661_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:22:04.710000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:27:36.420000Z\", \"playDuration\": \"PT5M28S\"}, {\"titleId\": \"CUSA43659_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:18:33.700000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:21:25.100000Z\", \"playDuration\": \"PT2M48S\"}, {\"titleId\": \"CUSA43660_00\", \"name\": \"Road Bustle 2\", \"localizedName\": \"Road Bustle 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008508, \"titleIds\": [\"CUSA43659_00\", \"CUSA43660_00\", \"CUSA43661_00\", \"CUSA43662_00\"], \"name\": \"Road Bustle 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Road Bustle 2\", \"uk-UA\": \"Road Bustle 2\", \"de-DE\": \"Road Bustle 2\", \"en-US\": \"Road Bustle 2\", \"ko-KR\": \"Road Bustle 2\", \"pt-BR\": \"Road Bustle 2\", \"es-ES\": \"Road Bustle 2\", \"ar-AE\": \"Road Bustle 2\", \"no-NO\": \"Road Bustle 2\", \"fr-CA\": \"Road Bustle 2\", \"it-IT\": \"Road Bustle 2\", \"pl-PL\": \"Road Bustle 2\", \"ru-RU\": \"Road Bustle 2\", \"zh-Hans\": \"Road Bustle 2\", \"nl-NL\": \"Road Bustle 2\", \"pt-PT\": \"Road Bustle 2\", \"zh-Hant\": \"Road Bustle 2\", \"sv-SE\": \"Road Bustle 2\", \"da-DK\": \"Road Bustle 2\", \"tr-TR\": \"Road Bustle 2\", \"fr-FR\": \"Road Bustle 2\", \"en-GB\": \"Road Bustle 2\", \"es-419\": \"Road Bustle 2\", \"ja-JP\": \"\\u30ed\\u30fc\\u30c9\\u30d0\\u30b9\\u30eb2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/1ecdca0fad84d550974e62f145c576844fbfa1d73443156e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/219ac778d4cc339ee8b2c6f90ef2750af2e08c7e748e5ee6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/50db084af14860787b3f2ce46d7f2d48e3c8cfb33e64a01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/68db3829c5047cf3edf4bf3c84a2ae127d5b56378e5c11fa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/763d23260bc75a55a9928fd51379657993a2a516de44e3ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/84e921992bc07da966ffc9d8fc66960db98da59e80dfc867.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/901600b04cfe3a1ba228b6d5fd4aa1602d77bab8417bc0fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/9a2e92ff4d961f6067126b76c1d49ee587e88574a238aa58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/a90a54a612d66b9a30f55b1ba23e4cbb536e8fa8f4f928cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/b05c7f5be81e255176e124d13ef0b6c8bb3b427258ebdc92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/cde6f4fc55728fa636e036b4e8838c9ead4ba8b774c60177.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2612/d95a0cee057742e7effb1980eea578e548f2b2148157d32a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2207/a4560de97ba25231ab69c86a193f66d0e1820ad87f134874.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2211/f4477e41a09c5858f3dc684b31fb20dafcd2d0c9ea749c37.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:08:40.240000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:18:30.140000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"CUSA42512_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-26T05:04:05.740000Z\", \"lastPlayedDateTime\": \"2023-06-26T05:08:17.750000Z\", \"playDuration\": \"PT4M1S\"}, {\"titleId\": \"CUSA44060_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:46:28.610000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:58:22.790000Z\", \"playDuration\": \"PT11M50S\"}, {\"titleId\": \"CUSA44059_00\", \"name\": \"Tower Up\", \"localizedName\": \"Tower Up\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008709, \"titleIds\": [\"CUSA44060_00\", \"CUSA44059_00\"], \"name\": \"Tower Up\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tower Up\", \"uk-UA\": \"Tower Up\", \"de-DE\": \"Tower Up\", \"en-US\": \"Tower Up\", \"pt-BR\": \"Tower Up\", \"es-ES\": \"Tower Up\", \"ar-AE\": \"Tower Up\", \"no-NO\": \"Tower Up\", \"fr-CA\": \"Tower Up\", \"it-IT\": \"Tower Up\", \"pl-PL\": \"Tower Up\", \"ru-RU\": \"Tower Up\", \"nl-NL\": \"Tower Up\", \"pt-PT\": \"Tower Up\", \"sv-SE\": \"Tower Up\", \"da-DK\": \"Tower Up\", \"tr-TR\": \"Tower Up\", \"fr-FR\": \"Tower Up\", \"en-GB\": \"Tower Up\", \"es-419\": \"Tower Up\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/8cb078e76471054c1b37be1bac1e67409e3b354fb04a110c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/2b2089994f10f4b61d879059965b125d063c53b258523a5d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/99b8b979f854b572f12c7f1747c08a6c7c2940c197f40152.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/4091a54493e86ccc5dcef5192486609906ed9b4974257098.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/e40b7dd049490ccc5d58aca67b9410175e348555ec71e8f8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/7e53bb4d97fe912c85b6fafff8827ba014b04d2c47f65f61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/f32ea4cf443777c71ebaca4dfc404dff8a54e42908d4f23e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/a6c31b33653c21e18fd3ce701662c49b7cfa0ae47ba981bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0908/6f4c92ed9e744b3230fc9bffedaf3c86deaea44763693143.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:09:28.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:46:27.140000Z\", \"playDuration\": \"PT12M31S\"}, {\"titleId\": \"CUSA42511_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T12:02:07.230000Z\", \"lastPlayedDateTime\": \"2023-06-25T12:08:43.430000Z\", \"playDuration\": \"PT4M16S\"}, {\"titleId\": \"CUSA35675_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:54:11.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:58:23.970000Z\", \"playDuration\": \"PT4M9S\"}, {\"titleId\": \"CUSA35674_00\", \"name\": \"Elliot - My First Date RPG\", \"localizedName\": \"Elliot - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005656, \"titleIds\": [\"CUSA36135_00\", \"CUSA35437_00\", \"CUSA35438_00\", \"CUSA35256_00\", \"CUSA35675_00\", \"CUSA35257_00\", \"CUSA35674_00\", \"CUSA36137_00\", \"CUSA36136_00\", \"CUSA36134_00\"], \"name\": \"Elliot - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Elliot - My First Date RPG\", \"uk-UA\": \"Elliot - My First Date RPG\", \"de-DE\": \"Elliot - My First Date RPG\", \"en-US\": \"Elliot - My First Date RPG\", \"pt-BR\": \"Elliot - My First Date RPG\", \"es-ES\": \"Elliot - My First Date RPG\", \"ar-AE\": \"Elliot - My First Date RPG\", \"no-NO\": \"Elliot - My First Date RPG\", \"fr-CA\": \"Elliot - My First Date RPG\", \"it-IT\": \"Elliot - My First Date RPG\", \"pl-PL\": \"Elliot - My First Date RPG\", \"ru-RU\": \"Elliot - My First Date RPG\", \"nl-NL\": \"Elliot - My First Date RPG\", \"pt-PT\": \"Elliot - My First Date RPG\", \"sv-SE\": \"Elliot - My First Date RPG\", \"da-DK\": \"Elliot - My First Date RPG\", \"tr-TR\": \"Elliot - My First Date RPG\", \"fr-FR\": \"Elliot - My First Date RPG\", \"en-GB\": \"Elliot - My First Date RPG\", \"es-419\": \"Elliot - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2113/6bkLZNr6PhbTIt4x1mpvhx8F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/hNWASeqSVQd6bh3WAWf5jIQE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qzoSGZG8yNCCN0QGvukT6pny.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/BgJDAyIMXVEFrWctWu6oD5rX.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2321/qF3BeEaLPHvOxNEw59pQ25YE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:34:01.380000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:54:09.760000Z\", \"playDuration\": \"PT10M\"}, {\"titleId\": \"CUSA35889_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:28:25.400000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:33:29.890000Z\", \"playDuration\": \"PT4M31S\"}], \"nextOffset\": 600, \"previousOffset\": 399, \"totalItemCount\": 13571}" } } }, @@ -360,56 +356,56 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:13 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive", "Transfer-Encoding" ], "X-Psn-Request-Id": [ - "c03934c0-8443-1031-bf26-41df208fe1e0" + "912ac0c0-94d0-1031-b424-300c43bd6bf1" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "c03934c0-8443-1031-bf25-41df208fe1e0" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "912ac0c0-94d0-1031-b423-300c43bd6bf1" ], "Transfer-Encoding": [ "chunked" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Expires": [ + "Sun, 12 Jan 2025 03:19:13 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Max-Age": [ + "3600" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:03 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:03 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"CUSA35890_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:13:32.170000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:18:22.250000Z\", \"playDuration\": \"PT4M11S\"}, {\"titleId\": \"PPSA11350_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:01:46.560000Z\", \"lastPlayedDateTime\": \"2023-06-25T10:50:55.110000Z\", \"playDuration\": \"PT53S\"}, {\"titleId\": \"PPSA11349_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:00:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:01:43.910000Z\", \"playDuration\": \"PT48S\"}, {\"titleId\": \"PPSA16939_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:57:14.440000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:00:46.320000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA16942_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:53:50.870000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:57:11.560000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA16940_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:49:17.750000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:53:47.970000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA43807_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:27:04.350000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:49:14.300000Z\", \"playDuration\": \"PT4M31S\"}, {\"titleId\": \"PPSA08030_00\", \"name\": \"FINAL FANTASY XVI\", \"localizedName\": \"FINAL FANTASY XVI\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 10, \"concept\": {\"id\": 10002100, \"titleIds\": [\"PPSA08030_00\", \"PPSA13801_00\", \"PPSA13802_00\", \"PPSA13803_00\", \"PPSA13804_00\", \"PPSA10666_00\", \"PPSA10664_00\", \"PPSA10665_00\"], \"name\": \"FINAL FANTASY XVI\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"FINAL FANTASY XVI\", \"uk-UA\": \"FINAL FANTASY XVI\", \"de-DE\": \"FINAL FANTASY XVI\", \"en-US\": \"FINAL FANTASY XVI\", \"ko-KR\": \"FINAL FANTASY XVI\", \"pt-BR\": \"FINAL FANTASY XVI\", \"es-ES\": \"FINAL FANTASY XVI\", \"ar-AE\": \"FINAL FANTASY XVI\", \"no-NO\": \"FINAL FANTASY XVI\", \"fr-CA\": \"FINAL FANTASY XVI\", \"it-IT\": \"FINAL FANTASY XVI\", \"pl-PL\": \"FINAL FANTASY XVI\", \"ru-RU\": \"FINAL FANTASY XVI\", \"zh-Hans\": \"\\u6700\\u7ec8\\u5e7b\\u60f3 16\", \"nl-NL\": \"FINAL FANTASY XVI\", \"pt-PT\": \"FINAL FANTASY XVI\", \"zh-Hant\": \"FINAL FANTASY XVI\", \"sv-SE\": \"FINAL FANTASY XVI\", \"da-DK\": \"FINAL FANTASY XVI\", \"tr-TR\": \"FINAL FANTASY XVI\", \"fr-FR\": \"FINAL FANTASY XVI\", \"en-GB\": \"FINAL FANTASY XVI\", \"es-419\": \"FINAL FANTASY XVI\", \"ja-JP\": \"FINAL FANTASY XVI\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T05:05:01.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:26:58.710000Z\", \"playDuration\": \"PT45H4M10S\"}, {\"titleId\": \"CUSA25953_00\", \"name\": \"Let's Cook Together\", \"localizedName\": \"Let's Cook Together\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 19, \"concept\": {\"id\": 10002052, \"titleIds\": [\"CUSA25954_00\", \"CUSA25953_00\"], \"name\": \"Let's Cook Together\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Cook Together\", \"uk-UA\": \"Let's Cook Together\", \"de-DE\": \"Let's Cook Together\", \"en-US\": \"Let's Cook Together\", \"ko-KR\": \"Let's Cook Together\", \"pt-BR\": \"Let's Cook Together\", \"es-ES\": \"Let's Cook Together\", \"ar-AE\": \"Let's Cook Together\", \"no-NO\": \"Let's Cook Together\", \"fr-CA\": \"Let's Cook Together\", \"it-IT\": \"Let's Cook Together\", \"pl-PL\": \"Let's Cook Together\", \"ru-RU\": \"Let's Cook Together\", \"zh-Hans\": \"Let's Cook Together\", \"nl-NL\": \"Let's Cook Together\", \"pt-PT\": \"Let's Cook Together\", \"zh-Hant\": \"Let's Cook Together\", \"sv-SE\": \"Let's Cook Together\", \"da-DK\": \"Let's Cook Together\", \"tr-TR\": \"Let's Cook Together\", \"fr-FR\": \"Let's Cook Together\", \"en-GB\": \"Let's Cook Together\", \"es-419\": \"Let's Cook Together\", \"ja-JP\": \"Let's Cook Together\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-27T06:59:58.430000Z\", \"lastPlayedDateTime\": \"2023-06-25T02:03:08.710000Z\", \"playDuration\": \"PT5H51M12S\"}, {\"titleId\": \"CUSA38091_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:17:36.410000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:18:37.650000Z\", \"playDuration\": \"PT58S\"}, {\"titleId\": \"CUSA38092_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:16:14.430000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:17:34.510000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA42528_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T03:32:10.970000Z\", \"lastPlayedDateTime\": \"2023-06-22T05:04:45.550000Z\", \"playDuration\": \"PT1H31M58S\"}, {\"titleId\": \"CUSA42526_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T00:58:36.860000Z\", \"lastPlayedDateTime\": \"2023-06-22T03:32:06.830000Z\", \"playDuration\": \"PT1H50M3S\"}, {\"titleId\": \"CUSA42525_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:54:53.690000Z\", \"lastPlayedDateTime\": \"2023-06-21T13:35:30.080000Z\", \"playDuration\": \"PT1H40M16S\"}, {\"titleId\": \"CUSA42592_00\", \"name\": \"Balloon Girl\", \"localizedName\": \"Balloon Girl\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007891, \"titleIds\": [\"CUSA42593_00\", \"CUSA42592_00\", \"CUSA42594_00\", \"CUSA42591_00\"], \"name\": \"Balloon Girl\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Balloon Girl\", \"uk-UA\": \"Balloon Girl\", \"de-DE\": \"Balloon Girl\", \"en-US\": \"Balloon Girl\", \"ko-KR\": \"Balloon Girl\", \"pt-BR\": \"Balloon Girl\", \"es-ES\": \"Balloon Girl\", \"ar-AE\": \"Balloon Girl\", \"no-NO\": \"Balloon Girl\", \"fr-CA\": \"Balloon Girl\", \"it-IT\": \"Balloon Girl\", \"pl-PL\": \"Balloon Girl\", \"ru-RU\": \"Balloon Girl\", \"zh-Hans\": \"Balloon Girl\", \"nl-NL\": \"Balloon Girl\", \"pt-PT\": \"Balloon Girl\", \"zh-Hant\": \"Balloon Girl\", \"sv-SE\": \"Balloon Girl\", \"da-DK\": \"Balloon Girl\", \"tr-TR\": \"Balloon Girl\", \"fr-FR\": \"Balloon Girl\", \"en-GB\": \"Balloon Girl\", \"es-419\": \"Balloon Girl\", \"ja-JP\": \"Balloon Girl\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:27:02.140000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:48:03.340000Z\", \"playDuration\": \"PT20M54S\"}, {\"titleId\": \"PPSA08558_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:08:05.850000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:23:32.170000Z\", \"playDuration\": \"PT15M22S\"}, {\"titleId\": \"PPSA08559_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:51:25.460000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:08:04.080000Z\", \"playDuration\": \"PT16M9S\"}, {\"titleId\": \"CUSA34667_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:33:21.910000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:49:54.160000Z\", \"playDuration\": \"PT16M29S\"}, {\"titleId\": \"CUSA34668_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:08:07.480000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:33:20.380000Z\", \"playDuration\": \"PT24M19S\"}, {\"titleId\": \"PPSA13396_00\", \"name\": \"Living with Horses: My Horse Farm\", \"localizedName\": \"Living with Horses: My Horse Farm\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007183, \"titleIds\": [\"PPSA13396_00\", \"PPSA13397_00\"], \"name\": \"Living with Horses: My Horse Farm\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hevosel\\u00e4m\\u00e4\\u00e4: Oma hevostilani\", \"uk-UA\": \"\\u0416\\u0438\\u0442\\u0442\\u044f \\u0437 \\u043a\\u0456\\u043d\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u0456\\u043d\\u043d\\u0430 \\u0444\\u0435\\u0440\\u043c\\u0430\", \"de-DE\": \"Mein Reiterhof - Pferde, Turniere, Abenteuer\", \"en-US\": \"Living with Horses: My Horse Farm\", \"pt-BR\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"es-ES\": \"Vida entre caballos: mi granja equina\", \"ar-AE\": \"\\u0627\\u0644\\u0639\\u064a\\u0634 \\u0645\\u0639 \\u0627\\u0644\\u062e\\u064a\\u0648\\u0644: \\u0645\\u0632\\u0631\\u0639\\u0629 \\u062e\\u064a\\u0648\\u0644\\u064a\", \"no-NO\": \"Livet med hester: Min hesteg\\u00e5rd\", \"fr-CA\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"it-IT\": \"Una vita a cavallo: Il mio maneggio\", \"pl-PL\": \"\\u017bycie z ko\\u0144mi: Moja farma koni\", \"ru-RU\": \"\\u0416\\u0438\\u0437\\u043d\\u044c \\u0441 \\u043b\\u043e\\u0448\\u0430\\u0434\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u043e\\u043d\\u043d\\u0430\\u044f \\u0444\\u0435\\u0440\\u043c\\u0430\", \"nl-NL\": \"Leven met paarden: Mijn manege\", \"pt-PT\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"sv-SE\": \"Leva med h\\u00e4star: Min h\\u00e4stg\\u00e5rd\", \"da-DK\": \"Livet med heste: Min hestefarm\", \"tr-TR\": \"Atlarla Ya\\u015famak: At \\u00c7iftli\\u011fim\", \"fr-FR\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"en-GB\": \"Living with Horses: My Horse Farm\", \"es-419\": \"Vida entre caballos: mi granja equina\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:08:12.420000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:41:26.070000Z\", \"playDuration\": \"PT32M19S\"}, {\"titleId\": \"CUSA37885_00\", \"name\": \"Touchdown Pinball\", \"localizedName\": \"Touchdown Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004659, \"titleIds\": [\"CUSA37885_00\", \"CUSA37884_00\", \"PPSA06804_00\", \"PPSA06805_00\", \"PPSA07907_00\"], \"name\": \"Touchdown Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Touchdown Pinball\", \"uk-UA\": \"Touchdown Pinball\", \"de-DE\": \"Touchdown Pinball\", \"en-US\": \"Touchdown Pinball\", \"pt-BR\": \"Touchdown Pinball\", \"es-ES\": \"Touchdown Pinball\", \"ar-AE\": \"Touchdown Pinball\", \"no-NO\": \"Touchdown Pinball\", \"fr-CA\": \"Touchdown Pinball\", \"it-IT\": \"Touchdown Pinball\", \"pl-PL\": \"Touchdown Pinball\", \"ru-RU\": \"Touchdown Pinball\", \"nl-NL\": \"Touchdown Pinball\", \"pt-PT\": \"Touchdown Pinball\", \"sv-SE\": \"Touchdown Pinball\", \"da-DK\": \"Touchdown Pinball\", \"tr-TR\": \"Touchdown Pinball\", \"fr-FR\": \"Touchdown Pinball\", \"en-GB\": \"Touchdown Pinball\", \"es-419\": \"Touchdown Pinball\", \"ja-JP\": \"\\u30bf\\u30c3\\u30c1\\u30c0\\u30a6\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T06:17:35.670000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:07:32.800000Z\", \"playDuration\": \"PT49M29S\"}, {\"titleId\": \"CUSA37883_00\", \"name\": \"Titans Pinball\", \"localizedName\": \"Titans Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004803, \"titleIds\": [\"PPSA07100_00\", \"PPSA11148_00\", \"PPSA07101_00\", \"CUSA37882_00\", \"CUSA37883_00\"], \"name\": \"Titans Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Titans Pinball\", \"uk-UA\": \"Titans Pinball\", \"de-DE\": \"Titans Pinball\", \"en-US\": \"Titans Pinball\", \"pt-BR\": \"Titans Pinball\", \"es-ES\": \"Titans Pinball\", \"ar-AE\": \"Titans Pinball\", \"no-NO\": \"Titans Pinball\", \"fr-CA\": \"Titans Pinball\", \"it-IT\": \"Titans Pinball\", \"pl-PL\": \"Titans Pinball\", \"ru-RU\": \"Titans Pinball\", \"nl-NL\": \"Titans Pinball\", \"pt-PT\": \"Titans Pinball\", \"sv-SE\": \"Titans Pinball\", \"da-DK\": \"Titans Pinball\", \"tr-TR\": \"Titans Pinball\", \"fr-FR\": \"Titans Pinball\", \"en-GB\": \"Titans Pinball\", \"es-419\": \"Titans Pinball\", \"ja-JP\": \"\\u30bf\\u30a4\\u30bf\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T05:37:29.840000Z\", \"lastPlayedDateTime\": \"2023-06-21T06:17:32.900000Z\", \"playDuration\": \"PT21M4S\"}, {\"titleId\": \"CUSA18686_00\", \"name\": \"Doodle God: Evolution\", \"localizedName\": \"Doodle God: Evolution\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 235296, \"titleIds\": [\"CUSA18084_00\", \"CUSA26598_00\", \"CUSA27103_00\", \"CUSA18686_00\"], \"name\": \"Doodle God: Evolution\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Doodle God: Evolution\", \"uk-UA\": \"Doodle God: Evolution\", \"de-DE\": \"Doodle God: Evolution\", \"en-US\": \"Doodle God: Evolution\", \"pt-BR\": \"Doodle God: Evolution\", \"es-ES\": \"Doodle God: Evolution\", \"ar-AE\": \"Doodle God: Evolution\", \"no-NO\": \"Doodle God: Evolution\", \"fr-CA\": \"Doodle God: Evolution\", \"it-IT\": \"Doodle God: Evolution\", \"pl-PL\": \"Doodle God: Evolution\", \"ru-RU\": \"Doodle God: Evolution\", \"nl-NL\": \"Doodle God: Evolution\", \"pt-PT\": \"Doodle God: Evolution\", \"sv-SE\": \"Doodle God: Evolution\", \"da-DK\": \"Doodle God: Evolution\", \"tr-TR\": \"Doodle God: Evolution\", \"fr-FR\": \"Doodle God: Evolution\", \"en-GB\": \"Doodle God: Evolution\", \"es-419\": \"Doodle God: Evolution\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:42:59.130000Z\", \"lastPlayedDateTime\": \"2023-06-21T04:43:25.740000Z\", \"playDuration\": \"PT5H50M9S\"}, {\"titleId\": \"CUSA29604_00\", \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"localizedName\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 6, \"concept\": {\"id\": 10003498, \"titleIds\": [\"CUSA29604_00\"], \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"uk-UA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"de-DE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-US\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-BR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-ES\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ar-AE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"no-NO\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-CA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"it-IT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pl-PL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ru-RU\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"nl-NL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-PT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"sv-SE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"da-DK\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"tr-TR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-FR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-GB\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-419\": \"Neptunia x SENRAN KAGURA: Ninja Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T11:03:14.970000Z\", \"lastPlayedDateTime\": \"2023-06-21T03:03:29.130000Z\", \"playDuration\": \"PT14H18M33S\"}, {\"titleId\": \"PPSA15070_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:57:56.270000Z\", \"lastPlayedDateTime\": \"2023-06-20T20:02:30.840000Z\", \"playDuration\": \"PT4M21S\"}, {\"titleId\": \"PPSA15071_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:55:09.970000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:57:53.980000Z\", \"playDuration\": \"PT2M37S\"}, {\"titleId\": \"CUSA42067_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:52:20.780000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:55:07.560000Z\", \"playDuration\": \"PT2M28S\"}, {\"titleId\": \"CUSA42069_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:29:56.250000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:52:19.010000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA42527_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T15:27:09.620000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:48:40.430000Z\", \"playDuration\": \"PT2H23M46S\"}, {\"titleId\": \"CUSA31464_00\", \"name\": \"ExitMan Deluxe\", \"localizedName\": \"ExitMan Deluxe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004176, \"titleIds\": [\"CUSA31464_00\", \"CUSA31465_00\", \"CUSA31463_00\", \"CUSA31462_00\"], \"name\": \"ExitMan Deluxe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ExitMan Deluxe\", \"uk-UA\": \"ExitMan Deluxe\", \"de-DE\": \"ExitMan Deluxe\", \"en-US\": \"ExitMan Deluxe\", \"ko-KR\": \"ExitMan Deluxe\", \"pt-BR\": \"ExitMan Deluxe\", \"es-ES\": \"ExitMan Deluxe\", \"ar-AE\": \"ExitMan Deluxe\", \"no-NO\": \"ExitMan Deluxe\", \"fr-CA\": \"ExitMan Deluxe\", \"it-IT\": \"ExitMan Deluxe\", \"pl-PL\": \"ExitMan Deluxe\", \"ru-RU\": \"ExitMan Deluxe\", \"zh-Hans\": \"ExitMan Deluxe\", \"nl-NL\": \"ExitMan Deluxe\", \"pt-PT\": \"ExitMan Deluxe\", \"zh-Hant\": \"ExitMan Deluxe\", \"sv-SE\": \"ExitMan Deluxe\", \"da-DK\": \"ExitMan Deluxe\", \"tr-TR\": \"ExitMan Deluxe\", \"fr-FR\": \"ExitMan Deluxe\", \"en-GB\": \"ExitMan Deluxe\", \"es-419\": \"ExitMan Deluxe\", \"ja-JP\": \"ExitMan Deluxe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T17:01:19.220000Z\", \"lastPlayedDateTime\": \"2023-06-20T18:56:21.880000Z\", \"playDuration\": \"PT1H53M47S\"}, {\"titleId\": \"CUSA33496_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:31:54.680000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:25:58.210000Z\", \"playDuration\": \"PT1H33M58S\"}, {\"titleId\": \"CUSA33495_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:10:24.360000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:19:49.710000Z\", \"playDuration\": \"PT1H49M56S\"}, {\"titleId\": \"CUSA38002_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:25:32.270000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:28:46.700000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA43835_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:20:33.170000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:25:30.100000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"CUSA42211_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:18:03.890000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:19:08.810000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA42212_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:16:32.470000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:18:02.510000Z\", \"playDuration\": \"PT1M23S\"}, {\"titleId\": \"CUSA43806_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:06:53.640000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:14:53.200000Z\", \"playDuration\": \"PT7M40S\"}, {\"titleId\": \"CUSA43737_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:03:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:06:50.510000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35901_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:56:43.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:02:15.670000Z\", \"playDuration\": \"PT3M46S\"}, {\"titleId\": \"CUSA35900_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:51:28.810000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:56:41.330000Z\", \"playDuration\": \"PT4M55S\"}, {\"titleId\": \"CUSA35902_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:47:41.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:51:20.210000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"CUSA35899_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:35:47.380000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:46:56.550000Z\", \"playDuration\": \"PT10M44S\"}, {\"titleId\": \"PPSA12391_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:22:37.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:35:24.690000Z\", \"playDuration\": \"PT11M6S\"}, {\"titleId\": \"PPSA12392_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:13:39.510000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:22:33.230000Z\", \"playDuration\": \"PT8M23S\"}, {\"titleId\": \"PPSA12393_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:03:57.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:13:37.440000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"PPSA12390_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T06:42:45.820000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:03:55.910000Z\", \"playDuration\": \"PT18M56S\"}, {\"titleId\": \"PPSA08305_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 23, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T01:05:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:37:36.350000Z\", \"playDuration\": \"PT12H22M36S\"}, {\"titleId\": \"PPSA08304_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 22, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T22:18:51.680000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:06:06.020000Z\", \"playDuration\": \"PT12H38M59S\"}, {\"titleId\": \"CUSA34367_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T12:12:18.050000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:43:30.960000Z\", \"playDuration\": \"PT16H18M49S\"}, {\"titleId\": \"CUSA37712_00\", \"name\": \"Deep Ones\", \"localizedName\": \"Deep Ones\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 231072, \"titleIds\": [\"CUSA18978_00\", \"PCSB01212_00\", \"CUSA14737_00\", \"CUSA10838_00\", \"CUSA14703_00\", \"CUSA10821_00\", \"CUSA37712_00\"], \"name\": \"Deep Ones\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Deep Ones\", \"uk-UA\": \"Deep Ones\", \"de-DE\": \"Deep Ones\", \"en-US\": \"Deep Ones\", \"ko-KR\": \"Deep Ones\", \"pt-BR\": \"Deep Ones\", \"es-ES\": \"Deep Ones\", \"ar-AE\": \"Deep Ones\", \"no-NO\": \"Deep Ones\", \"fr-CA\": \"Deep Ones\", \"it-IT\": \"Deep Ones\", \"pl-PL\": \"Deep Ones\", \"ru-RU\": \"Deep Ones\", \"zh-Hans\": \"Deep Ones\", \"nl-NL\": \"Deep Ones\", \"pt-PT\": \"Deep Ones\", \"zh-Hant\": \"Deep Ones\", \"sv-SE\": \"Deep Ones\", \"da-DK\": \"Deep Ones\", \"tr-TR\": \"Deep Ones\", \"fr-FR\": \"Deep Ones\", \"en-GB\": \"Deep Ones\", \"es-419\": \"Deep Ones\", \"ja-JP\": \"Deep Ones\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T06:24:03.750000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:11:35.620000Z\", \"playDuration\": \"PT2H33M50S\"}, {\"titleId\": \"CUSA25037_00\", \"name\": \"Persian Nights 2: Moonlight Veil\", \"localizedName\": \"Persian Nights 2: Moonlight Veil\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001680, \"titleIds\": [\"CUSA25038_00\", \"CUSA25037_00\"], \"name\": \"Persian Nights 2: Moonlight Veil\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Persian Nights 2: Moonlight Veil\", \"uk-UA\": \"Persian Nights 2: Moonlight Veil\", \"de-DE\": \"Persian Nights 2: Moonlight Veil\", \"en-US\": \"Persian Nights 2: Moonlight Veil\", \"pt-BR\": \"Persian Nights 2: Moonlight Veil\", \"es-ES\": \"Persian Nights 2: Moonlight Veil\", \"ar-AE\": \"Persian Nights 2: Moonlight Veil\", \"no-NO\": \"Persian Nights 2: Moonlight Veil\", \"fr-CA\": \"Persian Nights 2: Moonlight Veil\", \"it-IT\": \"Persian Nights 2: Moonlight Veil\", \"pl-PL\": \"Persian Nights 2: Moonlight Veil\", \"ru-RU\": \"Persian Nights 2: Moonlight Veil\", \"nl-NL\": \"Persian Nights 2: Moonlight Veil\", \"pt-PT\": \"Persian Nights 2: Moonlight Veil\", \"sv-SE\": \"Persian Nights 2: Moonlight Veil\", \"da-DK\": \"Persian Nights 2: Moonlight Veil\", \"tr-TR\": \"Persian Nights 2: Moonlight Veil\", \"fr-FR\": \"Persian Nights 2: Moonlight Veil\", \"en-GB\": \"Persian Nights 2: Moonlight Veil\", \"es-419\": \"Persian Nights 2: Moonlight Veil\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T02:14:17.830000Z\", \"lastPlayedDateTime\": \"2023-06-18T06:23:00.120000Z\", \"playDuration\": \"PT2H21M46S\"}, {\"titleId\": \"CUSA30539_00\", \"name\": \"Inspector Waffles\", \"localizedName\": \"Inspector Waffles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003854, \"titleIds\": [\"CUSA30540_00\", \"CUSA30539_00\"], \"name\": \"Inspector Waffles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inspector Waffles\", \"uk-UA\": \"Inspector Waffles\", \"de-DE\": \"Inspector Waffles\", \"en-US\": \"Inspector Waffles\", \"pt-BR\": \"Inspector Waffles\", \"es-ES\": \"Inspector Waffles\", \"ar-AE\": \"Inspector Waffles\", \"no-NO\": \"Inspector Waffles\", \"fr-CA\": \"Inspector Waffles\", \"it-IT\": \"Inspector Waffles\", \"pl-PL\": \"Inspector Waffles\", \"ru-RU\": \"Inspector Waffles\", \"nl-NL\": \"Inspector Waffles\", \"pt-PT\": \"Inspector Waffles\", \"sv-SE\": \"Inspector Waffles\", \"da-DK\": \"Inspector Waffles\", \"tr-TR\": \"Inspector Waffles\", \"fr-FR\": \"Inspector Waffles\", \"en-GB\": \"Inspector Waffles\", \"es-419\": \"Inspector Waffles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T11:58:51.560000Z\", \"lastPlayedDateTime\": \"2023-06-17T14:09:44.990000Z\", \"playDuration\": \"PT2H50S\"}, {\"titleId\": \"PPSA12406_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T08:48:37.410000Z\", \"lastPlayedDateTime\": \"2023-06-17T11:51:06.970000Z\", \"playDuration\": \"PT49M55S\"}, {\"titleId\": \"CUSA39375_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T07:41:08.680000Z\", \"lastPlayedDateTime\": \"2023-06-17T08:31:37.270000Z\", \"playDuration\": \"PT49M49S\"}, {\"titleId\": \"CUSA18793_00\", \"name\": \"MOZART'S REQUIEM\", \"localizedName\": \"MOZART'S REQUIEM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 5, \"concept\": {\"id\": 10000493, \"titleIds\": [\"CUSA28337_00\", \"CUSA18793_00\"], \"name\": \"MOZART'S REQUIEM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MOZART REQUIEM\", \"uk-UA\": \"MOZART REQUIEM\", \"de-DE\": \"MOZART REQUIEM\", \"en-US\": \"MOZART'S REQUIEM\", \"ko-KR\": \"MOZART REQUIEM\", \"pt-BR\": \"MOZART REQUIEM\", \"es-ES\": \"MOZART REQUIEM\", \"ar-AE\": \"MOZART REQUIEM\", \"no-NO\": \"MOZART REQUIEM\", \"fr-CA\": \"MOZART REQUIEM\", \"it-IT\": \"MOZART REQUIEM\", \"pl-PL\": \"MOZART REQUIEM\", \"ru-RU\": \"MOZART REQUIEM\", \"nl-NL\": \"MOZART REQUIEM\", \"pt-PT\": \"MOZART REQUIEM\", \"sv-SE\": \"MOZART REQUIEM\", \"da-DK\": \"MOZART REQUIEM\", \"tr-TR\": \"MOZART REQUIEM\", \"fr-FR\": \"MOZART REQUIEM\", \"en-GB\": \"MOZART'S REQUIEM\", \"es-419\": \"MOZART REQUIEM\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T09:07:10.390000Z\", \"lastPlayedDateTime\": \"2023-06-17T07:22:51.420000Z\", \"playDuration\": \"PT1H18M49S\"}, {\"titleId\": \"CUSA32560_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T15:44:05.860000Z\", \"lastPlayedDateTime\": \"2023-06-15T17:12:58.820000Z\", \"playDuration\": \"PT1H26M26S\"}, {\"titleId\": \"CUSA32558_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:29:22.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T15:33:11.300000Z\", \"playDuration\": \"PT1H51M13S\"}, {\"titleId\": \"PPSA11423_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:11:12.130000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:12:29.620000Z\", \"playDuration\": \"PT32S\"}, {\"titleId\": \"PPSA11422_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:10:31.940000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:11:09.890000Z\", \"playDuration\": \"PT32S\"}, {\"titleId\": \"CUSA38204_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:07:43.340000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:10:29.700000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA38203_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:06:32.940000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:07:41.360000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA30205_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T07:11:18.460000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:06:13.540000Z\", \"playDuration\": \"PT2H10M55S\"}, {\"titleId\": \"CUSA30204_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T05:08:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-15T07:03:06.660000Z\", \"playDuration\": \"PT1H54M20S\"}, {\"titleId\": \"CUSA30203_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:46:50.900000Z\", \"lastPlayedDateTime\": \"2023-06-15T05:00:13.000000Z\", \"playDuration\": \"PT2H16M39S\"}, {\"titleId\": \"PPSA02628_00\", \"name\": \"Trek to Yomi\", \"localizedName\": \"Trek to Yomi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002134, \"titleIds\": [\"CUSA26156_00\", \"CUSA26157_00\", \"PPSA02629_00\", \"PPSA02628_00\"], \"name\": \"Trek to Yomi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trek to Yomi\", \"uk-UA\": \"Trek to Yomi\", \"de-DE\": \"Trek to Yomi\", \"en-US\": \"Trek to Yomi\", \"ko-KR\": \"Trek to Yomi\", \"pt-BR\": \"Trek to Yomi\", \"es-ES\": \"Trek to Yomi\", \"ar-AE\": \"Trek to Yomi\", \"no-NO\": \"Trek to Yomi\", \"fr-CA\": \"Trek to Yomi\", \"it-IT\": \"Trek to Yomi\", \"pl-PL\": \"Trek to Yomi\", \"ru-RU\": \"Trek to Yomi\", \"zh-Hans\": \"Trek to Yomi\", \"nl-NL\": \"Trek to Yomi\", \"pt-PT\": \"Trek to Yomi\", \"zh-Hant\": \"Trek to Yomi\", \"sv-SE\": \"Trek to Yomi\", \"da-DK\": \"Trek to Yomi\", \"tr-TR\": \"Trek to Yomi\", \"fr-FR\": \"Trek to Yomi\", \"en-GB\": \"Trek to Yomi\", \"es-419\": \"Trek to Yomi\", \"ja-JP\": \"Trek to Yomi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:26:18.440000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:33:21.490000Z\", \"playDuration\": \"PT7M\"}, {\"titleId\": \"CUSA26156_00\", \"name\": \"Trek to Yomi\", \"localizedName\": \"Trek to Yomi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002134, \"titleIds\": [\"CUSA26156_00\", \"CUSA26157_00\", \"PPSA02629_00\", \"PPSA02628_00\"], \"name\": \"Trek to Yomi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trek to Yomi\", \"uk-UA\": \"Trek to Yomi\", \"de-DE\": \"Trek to Yomi\", \"en-US\": \"Trek to Yomi\", \"ko-KR\": \"Trek to Yomi\", \"pt-BR\": \"Trek to Yomi\", \"es-ES\": \"Trek to Yomi\", \"ar-AE\": \"Trek to Yomi\", \"no-NO\": \"Trek to Yomi\", \"fr-CA\": \"Trek to Yomi\", \"it-IT\": \"Trek to Yomi\", \"pl-PL\": \"Trek to Yomi\", \"ru-RU\": \"Trek to Yomi\", \"zh-Hans\": \"Trek to Yomi\", \"nl-NL\": \"Trek to Yomi\", \"pt-PT\": \"Trek to Yomi\", \"zh-Hant\": \"Trek to Yomi\", \"sv-SE\": \"Trek to Yomi\", \"da-DK\": \"Trek to Yomi\", \"tr-TR\": \"Trek to Yomi\", \"fr-FR\": \"Trek to Yomi\", \"en-GB\": \"Trek to Yomi\", \"es-419\": \"Trek to Yomi\", \"ja-JP\": \"Trek to Yomi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:18:48.770000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:26:14.820000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA32143_00\", \"name\": \"Let's Build a Zoo\", \"localizedName\": \"Let's Build a Zoo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10004466, \"titleIds\": [\"CUSA34919_00\", \"PPSA06437_00\", \"PPSA06438_00\", \"CUSA32144_00\", \"CUSA32143_00\", \"CUSA34917_00\"], \"name\": \"Let's Build a Zoo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Build a Zoo\", \"uk-UA\": \"Let's Build a Zoo\", \"de-DE\": \"Let's Build a Zoo\", \"en-US\": \"Let's Build a Zoo\", \"pt-BR\": \"Let's Build a Zoo\", \"es-ES\": \"Let's Build a Zoo\", \"ar-AE\": \"Let's Build a Zoo\", \"no-NO\": \"Let's Build a Zoo\", \"fr-CA\": \"Let's Build a Zoo\", \"it-IT\": \"Let's Build a Zoo\", \"pl-PL\": \"Let's Build a Zoo\", \"ru-RU\": \"Let's Build a Zoo\", \"nl-NL\": \"Let's Build a Zoo\", \"pt-PT\": \"Let's Build a Zoo\", \"sv-SE\": \"Let's Build a Zoo\", \"da-DK\": \"Let's Build a Zoo\", \"tr-TR\": \"Let's Build a Zoo\", \"fr-FR\": \"Let's Build a Zoo\", \"en-GB\": \"Let's Build a Zoo\", \"es-419\": \"Let's Build a Zoo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:03:49.480000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:17:42.740000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"PPSA06437_00\", \"name\": \"Let's Build a Zoo\", \"localizedName\": \"Let's Build a Zoo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004466, \"titleIds\": [\"CUSA34919_00\", \"PPSA06437_00\", \"PPSA06438_00\", \"CUSA32144_00\", \"CUSA32143_00\", \"CUSA34917_00\"], \"name\": \"Let's Build a Zoo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Build a Zoo\", \"uk-UA\": \"Let's Build a Zoo\", \"de-DE\": \"Let's Build a Zoo\", \"en-US\": \"Let's Build a Zoo\", \"pt-BR\": \"Let's Build a Zoo\", \"es-ES\": \"Let's Build a Zoo\", \"ar-AE\": \"Let's Build a Zoo\", \"no-NO\": \"Let's Build a Zoo\", \"fr-CA\": \"Let's Build a Zoo\", \"it-IT\": \"Let's Build a Zoo\", \"pl-PL\": \"Let's Build a Zoo\", \"ru-RU\": \"Let's Build a Zoo\", \"nl-NL\": \"Let's Build a Zoo\", \"pt-PT\": \"Let's Build a Zoo\", \"sv-SE\": \"Let's Build a Zoo\", \"da-DK\": \"Let's Build a Zoo\", \"tr-TR\": \"Let's Build a Zoo\", \"fr-FR\": \"Let's Build a Zoo\", \"en-GB\": \"Let's Build a Zoo\", \"es-419\": \"Let's Build a Zoo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:12:22.340000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:17:09.750000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA06953_00\", \"name\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"localizedName\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004731, \"titleIds\": [\"PPSA06953_00\", \"PPSA08158_00\"], \"name\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/W8AlbUlqfZ5H1ZwTX0iLXChI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/BFrLmsU0Qpia15JY1TWVqN2h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/v2CkUJCALGhqQbJwlevzOKGW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/vdefGeXzw9IOjLOP2ye3kGf6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"uk-UA\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"de-DE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"en-US\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pt-BR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"es-ES\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"ar-AE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"no-NO\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"fr-CA\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"it-IT\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pl-PL\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"ru-RU\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"nl-NL\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pt-PT\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"sv-SE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"da-DK\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"tr-TR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"fr-FR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"en-GB\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"es-419\": \"Undernauts: Labyrinth of Yomi (PS5)\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/W8AlbUlqfZ5H1ZwTX0iLXChI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/BFrLmsU0Qpia15JY1TWVqN2h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/v2CkUJCALGhqQbJwlevzOKGW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/vdefGeXzw9IOjLOP2ye3kGf6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T00:54:23.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:02:46.870000Z\", \"playDuration\": \"PT8M20S\"}, {\"titleId\": \"CUSA36661_00\", \"name\": \"Space Accident\", \"localizedName\": \"Space Accident\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006130, \"titleIds\": [\"CUSA36661_00\", \"CUSA36874_00\", \"CUSA36998_00\", \"CUSA37001_00\"], \"name\": \"Space Accident\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Accident\", \"uk-UA\": \"Space Accident\", \"de-DE\": \"Space Accident\", \"en-US\": \"Space Accident\", \"pt-BR\": \"Space Accident\", \"es-ES\": \"Space Accident\", \"ar-AE\": \"Space Accident\", \"no-NO\": \"Space Accident\", \"fr-CA\": \"Space Accident\", \"it-IT\": \"Space Accident\", \"pl-PL\": \"Space Accident\", \"ru-RU\": \"Space Accident\", \"nl-NL\": \"Space Accident\", \"pt-PT\": \"Space Accident\", \"sv-SE\": \"Space Accident\", \"da-DK\": \"Space Accident\", \"tr-TR\": \"Space Accident\", \"fr-FR\": \"Space Accident\", \"en-GB\": \"Space Accident\", \"es-419\": \"Space Accident\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T15:05:15.090000Z\", \"lastPlayedDateTime\": \"2023-06-14T15:53:21.020000Z\", \"playDuration\": \"PT45M46S\"}, {\"titleId\": \"CUSA36874_00\", \"name\": \"Space Accident\", \"localizedName\": \"Space Accident\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006130, \"titleIds\": [\"CUSA36661_00\", \"CUSA36874_00\", \"CUSA36998_00\", \"CUSA37001_00\"], \"name\": \"Space Accident\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Accident\", \"uk-UA\": \"Space Accident\", \"de-DE\": \"Space Accident\", \"en-US\": \"Space Accident\", \"pt-BR\": \"Space Accident\", \"es-ES\": \"Space Accident\", \"ar-AE\": \"Space Accident\", \"no-NO\": \"Space Accident\", \"fr-CA\": \"Space Accident\", \"it-IT\": \"Space Accident\", \"pl-PL\": \"Space Accident\", \"ru-RU\": \"Space Accident\", \"nl-NL\": \"Space Accident\", \"pt-PT\": \"Space Accident\", \"sv-SE\": \"Space Accident\", \"da-DK\": \"Space Accident\", \"tr-TR\": \"Space Accident\", \"fr-FR\": \"Space Accident\", \"en-GB\": \"Space Accident\", \"es-419\": \"Space Accident\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T13:35:36.930000Z\", \"lastPlayedDateTime\": \"2023-06-14T15:05:11.910000Z\", \"playDuration\": \"PT1H27M29S\"}, {\"titleId\": \"PPSA15455_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T13:04:36.300000Z\", \"lastPlayedDateTime\": \"2023-06-14T13:13:02.310000Z\", \"playDuration\": \"PT8M13S\"}, {\"titleId\": \"PPSA15454_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:55:21.800000Z\", \"lastPlayedDateTime\": \"2023-06-14T13:04:34.230000Z\", \"playDuration\": \"PT8M30S\"}, {\"titleId\": \"CUSA42452_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:40:10.050000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:48:50.360000Z\", \"playDuration\": \"PT8M37S\"}, {\"titleId\": \"CUSA42453_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:17:16.800000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:40:07.960000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"CUSA27347_00\", \"name\": \"Moon Raider\", \"localizedName\": \"Moon Raider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002641, \"titleIds\": [\"CUSA27346_00\", \"CUSA27347_00\"], \"name\": \"Moon Raider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moon Raider\", \"uk-UA\": \"Moon Raider\", \"de-DE\": \"Moon Raider\", \"en-US\": \"Moon Raider\", \"pt-BR\": \"Moon Raider\", \"es-ES\": \"Moon Raider\", \"ar-AE\": \"Moon Raider\", \"no-NO\": \"Moon Raider\", \"fr-CA\": \"Moon Raider\", \"it-IT\": \"Moon Raider\", \"pl-PL\": \"Moon Raider\", \"ru-RU\": \"Moon Raider\", \"nl-NL\": \"Moon Raider\", \"pt-PT\": \"Moon Raider\", \"sv-SE\": \"Moon Raider\", \"da-DK\": \"Moon Raider\", \"tr-TR\": \"Moon Raider\", \"fr-FR\": \"Moon Raider\", \"en-GB\": \"Moon Raider\", \"es-419\": \"Moon Raider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T10:50:08.490000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:16:26.070000Z\", \"playDuration\": \"PT1H26M13S\"}, {\"titleId\": \"CUSA27346_00\", \"name\": \"Moon Raider\", \"localizedName\": \"Moon Raider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002641, \"titleIds\": [\"CUSA27346_00\", \"CUSA27347_00\"], \"name\": \"Moon Raider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moon Raider\", \"uk-UA\": \"Moon Raider\", \"de-DE\": \"Moon Raider\", \"en-US\": \"Moon Raider\", \"pt-BR\": \"Moon Raider\", \"es-ES\": \"Moon Raider\", \"ar-AE\": \"Moon Raider\", \"no-NO\": \"Moon Raider\", \"fr-CA\": \"Moon Raider\", \"it-IT\": \"Moon Raider\", \"pl-PL\": \"Moon Raider\", \"ru-RU\": \"Moon Raider\", \"nl-NL\": \"Moon Raider\", \"pt-PT\": \"Moon Raider\", \"sv-SE\": \"Moon Raider\", \"da-DK\": \"Moon Raider\", \"tr-TR\": \"Moon Raider\", \"fr-FR\": \"Moon Raider\", \"en-GB\": \"Moon Raider\", \"es-419\": \"Moon Raider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T06:58:47.560000Z\", \"lastPlayedDateTime\": \"2023-06-14T10:50:06.460000Z\", \"playDuration\": \"PT2H48M13S\"}, {\"titleId\": \"PPSA15223_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T06:03:27.310000Z\", \"lastPlayedDateTime\": \"2023-06-14T06:56:22.900000Z\", \"playDuration\": \"PT47M40S\"}, {\"titleId\": \"CUSA42228_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T04:55:37.340000Z\", \"lastPlayedDateTime\": \"2023-06-14T06:03:25.170000Z\", \"playDuration\": \"PT50M2S\"}, {\"titleId\": \"PPSA15222_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T04:05:58.990000Z\", \"lastPlayedDateTime\": \"2023-06-14T04:55:08.770000Z\", \"playDuration\": \"PT48M46S\"}, {\"titleId\": \"CUSA42227_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:25:16.990000Z\", \"lastPlayedDateTime\": \"2023-06-14T02:30:10.530000Z\", \"playDuration\": \"PT1H4M39S\"}, {\"titleId\": \"CUSA43696_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:17:30.830000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:20:20.690000Z\", \"playDuration\": \"PT1M38S\"}, {\"titleId\": \"CUSA43695_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:10:42.350000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:17:29.060000Z\", \"playDuration\": \"PT3M19S\"}, {\"titleId\": \"PPSA07674_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 44, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T07:35:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:10:01.450000Z\", \"playDuration\": \"PT4H50M41S\"}, {\"titleId\": \"PPSA08122_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 40, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-13T02:50:45.650000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:09:21.270000Z\", \"playDuration\": \"PT5H46M16S\"}, {\"titleId\": \"PPSA07673_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 25, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-13T10:36:15.740000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:08:34.450000Z\", \"playDuration\": \"PT3H38M27S\"}, {\"titleId\": \"CUSA42709_00\", \"name\": \"Dig Deep\", \"localizedName\": \"Dig Deep\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 13, \"concept\": {\"id\": 10008122, \"titleIds\": [\"CUSA42709_00\", \"CUSA42710_00\"], \"name\": \"Dig Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dig Deep\", \"uk-UA\": \"Dig Deep\", \"de-DE\": \"Dig Deep\", \"en-US\": \"Dig Deep\", \"pt-BR\": \"Dig Deep\", \"es-ES\": \"Dig Deep\", \"ar-AE\": \"Dig Deep\", \"no-NO\": \"Dig Deep\", \"fr-CA\": \"Dig Deep\", \"it-IT\": \"Dig Deep\", \"pl-PL\": \"Dig Deep\", \"ru-RU\": \"Dig Deep\", \"nl-NL\": \"Dig Deep\", \"pt-PT\": \"Dig Deep\", \"sv-SE\": \"Dig Deep\", \"da-DK\": \"Dig Deep\", \"tr-TR\": \"Dig Deep\", \"fr-FR\": \"Dig Deep\", \"en-GB\": \"Dig Deep\", \"es-419\": \"Dig Deep\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:59:55.760000Z\", \"lastPlayedDateTime\": \"2023-06-14T00:32:45.060000Z\", \"playDuration\": \"PT24H5M33S\"}, {\"titleId\": \"CUSA42710_00\", \"name\": \"Dig Deep\", \"localizedName\": \"Dig Deep\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 14, \"concept\": {\"id\": 10008122, \"titleIds\": [\"CUSA42709_00\", \"CUSA42710_00\"], \"name\": \"Dig Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dig Deep\", \"uk-UA\": \"Dig Deep\", \"de-DE\": \"Dig Deep\", \"en-US\": \"Dig Deep\", \"pt-BR\": \"Dig Deep\", \"es-ES\": \"Dig Deep\", \"ar-AE\": \"Dig Deep\", \"no-NO\": \"Dig Deep\", \"fr-CA\": \"Dig Deep\", \"it-IT\": \"Dig Deep\", \"pl-PL\": \"Dig Deep\", \"ru-RU\": \"Dig Deep\", \"nl-NL\": \"Dig Deep\", \"pt-PT\": \"Dig Deep\", \"sv-SE\": \"Dig Deep\", \"da-DK\": \"Dig Deep\", \"tr-TR\": \"Dig Deep\", \"fr-FR\": \"Dig Deep\", \"en-GB\": \"Dig Deep\", \"es-419\": \"Dig Deep\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T14:35:36.420000Z\", \"lastPlayedDateTime\": \"2023-06-13T00:59:17.750000Z\", \"playDuration\": \"PT21H7M51S\"}, {\"titleId\": \"CUSA36020_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:53:28.970000Z\", \"lastPlayedDateTime\": \"2023-06-12T07:12:58.030000Z\", \"playDuration\": \"PT19M15S\"}, {\"titleId\": \"CUSA43834_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:48:41.810000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:52:55.070000Z\", \"playDuration\": \"PT3M8S\"}, {\"titleId\": \"CUSA43832_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:43:04.070000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:48:39.980000Z\", \"playDuration\": \"PT5M5S\"}, {\"titleId\": \"CUSA43833_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:36:56.800000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:43:02.200000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA38001_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:30:40.310000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:36:54.880000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"CUSA35676_00\", \"name\": \"Oriana - My First Date RPG\", \"localizedName\": \"Oriana - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005481, \"titleIds\": [\"CUSA35677_00\", \"CUSA35440_00\", \"CUSA34737_00\", \"CUSA34736_00\", \"CUSA35676_00\", \"CUSA36130_00\", \"CUSA36132_00\", \"CUSA35439_00\", \"CUSA36131_00\", \"CUSA36133_00\"], \"name\": \"Oriana - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Oriana - My First Date RPG\", \"uk-UA\": \"Oriana - My First Date RPG\", \"de-DE\": \"Oriana - My First Date RPG\", \"en-US\": \"Oriana - My First Date RPG\", \"pt-BR\": \"Oriana - My First Date RPG\", \"es-ES\": \"Oriana - My First Date RPG\", \"ar-AE\": \"Oriana - My First Date RPG\", \"no-NO\": \"Oriana - My First Date RPG\", \"fr-CA\": \"Oriana - My First Date RPG\", \"it-IT\": \"Oriana - My First Date RPG\", \"pl-PL\": \"Oriana - My First Date RPG\", \"ru-RU\": \"Oriana - My First Date RPG\", \"nl-NL\": \"Oriana - My First Date RPG\", \"pt-PT\": \"Oriana - My First Date RPG\", \"sv-SE\": \"Oriana - My First Date RPG\", \"da-DK\": \"Oriana - My First Date RPG\", \"tr-TR\": \"Oriana - My First Date RPG\", \"fr-FR\": \"Oriana - My First Date RPG\", \"en-GB\": \"Oriana - My First Date RPG\", \"es-419\": \"Oriana - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:24:58.440000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:29:25.570000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA35677_00\", \"name\": \"Oriana - My First Date RPG\", \"localizedName\": \"Oriana - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005481, \"titleIds\": [\"CUSA35677_00\", \"CUSA35440_00\", \"CUSA34737_00\", \"CUSA34736_00\", \"CUSA35676_00\", \"CUSA36130_00\", \"CUSA36132_00\", \"CUSA35439_00\", \"CUSA36131_00\", \"CUSA36133_00\"], \"name\": \"Oriana - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Oriana - My First Date RPG\", \"uk-UA\": \"Oriana - My First Date RPG\", \"de-DE\": \"Oriana - My First Date RPG\", \"en-US\": \"Oriana - My First Date RPG\", \"pt-BR\": \"Oriana - My First Date RPG\", \"es-ES\": \"Oriana - My First Date RPG\", \"ar-AE\": \"Oriana - My First Date RPG\", \"no-NO\": \"Oriana - My First Date RPG\", \"fr-CA\": \"Oriana - My First Date RPG\", \"it-IT\": \"Oriana - My First Date RPG\", \"pl-PL\": \"Oriana - My First Date RPG\", \"ru-RU\": \"Oriana - My First Date RPG\", \"nl-NL\": \"Oriana - My First Date RPG\", \"pt-PT\": \"Oriana - My First Date RPG\", \"sv-SE\": \"Oriana - My First Date RPG\", \"da-DK\": \"Oriana - My First Date RPG\", \"tr-TR\": \"Oriana - My First Date RPG\", \"fr-FR\": \"Oriana - My First Date RPG\", \"en-GB\": \"Oriana - My First Date RPG\", \"es-419\": \"Oriana - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:21:03.640000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:24:56.810000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA34368_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T00:51:41.470000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:38:43.520000Z\", \"playDuration\": \"PT6H23M16S\"}, {\"titleId\": \"PPSA10726_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:40:02.000000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:33:03.700000Z\", \"playDuration\": \"PT2H15M42S\"}, {\"titleId\": \"PPSA10727_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:15:11.350000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:30:07.820000Z\", \"playDuration\": \"PT1H25M6S\"}, {\"titleId\": \"CUSA37361_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T06:08:16.850000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:23:32.610000Z\", \"playDuration\": \"PT2H7M31S\"}, {\"titleId\": \"CUSA37362_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T06:36:07.760000Z\", \"lastPlayedDateTime\": \"2023-06-10T06:05:28.750000Z\", \"playDuration\": \"PT5H11S\"}, {\"titleId\": \"CUSA43227_00\", \"name\": \"Pixel Driver\", \"localizedName\": \"Pixel Driver\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008321, \"titleIds\": [\"CUSA43227_00\", \"CUSA43226_00\"], \"name\": \"Pixel Driver\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/687b46fc3f198183cd6affde5157fc1e80514deae74ec34d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0607/0a6b37c2c486e541990a6d0b6ed45ce02079aa93e60dfb7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/7597e60e24011493c39421e554e4d11b4319acd8296a6b35.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/b9b0dac618bf0a1f5ecd564c9581ef6be083f5eee36cce7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/008481bcb9ffdae6cb0e2c9b15604ac7c99f9fe8e410691b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ecd5178e615001abba98fe1908ca6ab1f2c1f449aa67bf38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/38bc786d272ee14c6b1e9ac2e128179b70adb2e784b6e097.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/d9c6077633afcf98808502c2e6528cccbfd5d7e0f6085320.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/c667141b2abd86fbd952ef761b0103178754c31522138463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pixel Driver\", \"uk-UA\": \"Pixel Driver\", \"de-DE\": \"Pixel Driver\", \"en-US\": \"Pixel Driver\", \"ko-KR\": \"Pixel Driver\", \"pt-BR\": \"Pixel Driver\", \"es-ES\": \"Pixel Driver\", \"ar-AE\": \"Pixel Driver\", \"no-NO\": \"Pixel Driver\", \"fr-CA\": \"Pixel Driver\", \"it-IT\": \"Pixel Driver\", \"pl-PL\": \"Pixel Driver\", \"ru-RU\": \"Pixel Driver\", \"zh-Hans\": \"Pixel Driver\", \"nl-NL\": \"Pixel Driver\", \"pt-PT\": \"Pixel Driver\", \"zh-Hant\": \"Pixel Driver\", \"sv-SE\": \"Pixel Driver\", \"da-DK\": \"Pixel Driver\", \"tr-TR\": \"Pixel Driver\", \"fr-FR\": \"Pixel Driver\", \"en-GB\": \"Pixel Driver\", \"es-419\": \"Pixel Driver\", \"ja-JP\": \"Pixel Driver\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/687b46fc3f198183cd6affde5157fc1e80514deae74ec34d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0607/0a6b37c2c486e541990a6d0b6ed45ce02079aa93e60dfb7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/7597e60e24011493c39421e554e4d11b4319acd8296a6b35.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/b9b0dac618bf0a1f5ecd564c9581ef6be083f5eee36cce7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/008481bcb9ffdae6cb0e2c9b15604ac7c99f9fe8e410691b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ecd5178e615001abba98fe1908ca6ab1f2c1f449aa67bf38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/38bc786d272ee14c6b1e9ac2e128179b70adb2e784b6e097.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/d9c6077633afcf98808502c2e6528cccbfd5d7e0f6085320.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/c667141b2abd86fbd952ef761b0103178754c31522138463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:30:50.780000Z\", \"lastPlayedDateTime\": \"2023-06-09T06:35:46.490000Z\", \"playDuration\": \"PT2H1M8S\"}, {\"titleId\": \"CUSA35875_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:28:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:30:10.410000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA35876_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:25:26.330000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:28:03.680000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35874_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:23:36.980000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:25:24.340000Z\", \"playDuration\": \"PT1M40S\"}, {\"titleId\": \"CUSA35873_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:20:35.200000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:23:35.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA16673_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:15:49.000000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:19:46.650000Z\", \"playDuration\": \"PT3M45S\"}, {\"titleId\": \"PPSA16672_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:11:15.410000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:15:47.030000Z\", \"playDuration\": \"PT4M19S\"}, {\"titleId\": \"PPSA16671_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:07:04.650000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:11:12.530000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"PPSA16670_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:02:44.000000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:07:01.490000Z\", \"playDuration\": \"PT4M4S\"}, {\"titleId\": \"CUSA43594_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T03:05:33.620000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:09:27.010000Z\", \"playDuration\": \"PT3M45S\"}, {\"titleId\": \"CUSA43593_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T03:01:42.410000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:05:29.700000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA43591_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:57:28.170000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:01:38.530000Z\", \"playDuration\": \"PT3M55S\"}, {\"titleId\": \"CUSA43592_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:52:23.040000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:57:24.200000Z\", \"playDuration\": \"PT4M49S\"}, {\"titleId\": \"PPSA12581_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:43:01.450000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:46:43.320000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"PPSA12582_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:39:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:42:59.320000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA39537_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:32:21.500000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:39:09.620000Z\", \"playDuration\": \"PT6M19S\"}, {\"titleId\": \"CUSA39538_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:28:29.320000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:32:15.930000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA23980_00\", \"name\": \"Life is Strange Remastered Collection\", \"localizedName\": \"Life is Strange Remastered Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10001187, \"titleIds\": [\"CUSA23980_00\", \"CUSA23981_00\", \"CUSA23982_00\"], \"name\": \"Life is Strange Remastered Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/Nz4Wyunro1obQMfhHlIQesJw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/shz6QlQN2Mfx92nGdVyjHzF2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Life is Strange Remastered Collection\", \"uk-UA\": \"Life is Strange Remastered Collection\", \"de-DE\": \"Life is Strange Remastered Collection\", \"en-US\": \"Life is Strange Remastered Collection\", \"ko-KR\": \"Life is Strange Remastered Collection\", \"pt-BR\": \"Life is Strange Remastered Collection\", \"es-ES\": \"Life is Strange Remastered Collection\", \"ar-AE\": \"\\u0645\\u062c\\u0645\\u0648\\u0639\\u0629 Life is Strange Remastered\", \"no-NO\": \"Life is Strange Remastered Collection\", \"fr-CA\": \"Life is Strange Remastered Collection\", \"it-IT\": \"Life is Strange Remastered Collection\", \"pl-PL\": \"Life is Strange Remastered Collection\", \"ru-RU\": \"Life is Strange Remastered Collection\", \"zh-Hans\": \"Life is Strange\\u91cd\\u88fd\\u7248\\u7d44\\u5408\\u5305\", \"nl-NL\": \"Life is Strange Remastered Collection\", \"pt-PT\": \"Life is Strange Remastered Collection\", \"zh-Hant\": \"Life is Strange\\u91cd\\u5236\\u5408\\u96c6\\u5305\", \"sv-SE\": \"Life is Strange Remastered Collection\", \"da-DK\": \"Life is Strange Remastered Collection\", \"tr-TR\": \"Life is Strange Remastered Collection\", \"fr-FR\": \"Life is Strange Remastered Collection\", \"en-GB\": \"Life is Strange Remastered Collection\", \"es-419\": \"Life is Strange Remastered Collection\", \"ja-JP\": \"Life is Strange Remastered Collection\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/Nz4Wyunro1obQMfhHlIQesJw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/shz6QlQN2Mfx92nGdVyjHzF2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-08T10:05:07.840000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:28:00.000000Z\", \"playDuration\": \"PT5H55M32S\"}, {\"titleId\": \"CUSA23977_00\", \"name\": \"Life is Strange Remastered\", \"localizedName\": \"Life is Strange Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001186, \"titleIds\": [\"CUSA23979_00\", \"CUSA23978_00\", \"CUSA23977_00\"], \"name\": \"Life is Strange Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2416/rNzJ9zZTpqTs5qLAFipBgWpW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Life is Strange Remastered\", \"uk-UA\": \"Life is Strange Remastered\", \"de-DE\": \"Life is Strange Remastered\", \"en-US\": \"Life is Strange Remastered\", \"ko-KR\": \"Life is Strange Remastered\", \"pt-BR\": \"Life is Strange Remastered\", \"es-ES\": \"Life is Strange Remastered\", \"ar-AE\": \"Life is Strange Remastered\", \"no-NO\": \"Life is Strange Remastered\", \"fr-CA\": \"Life is Strange Remastered\", \"it-IT\": \"Life is Strange Remastered\", \"pl-PL\": \"Life is Strange Remastered\", \"ru-RU\": \"Life is Strange Remastered\", \"zh-Hans\": \"Life is Strange\\u91cd\\u88fd\\u7248\", \"nl-NL\": \"Life is Strange Remastered\", \"pt-PT\": \"Life is Strange Remastered\", \"zh-Hant\": \"Life is Strange\\u91cd\\u5236\\u7248\", \"sv-SE\": \"Life is Strange Remastered\", \"da-DK\": \"Life is Strange Remastered\", \"tr-TR\": \"Life is Strange Remastered\", \"fr-FR\": \"Life is Strange Remastered\", \"en-GB\": \"Life is Strange Remastered\", \"es-419\": \"Life is Strange remasterizado\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2416/rNzJ9zZTpqTs5qLAFipBgWpW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-07T11:44:33.620000Z\", \"lastPlayedDateTime\": \"2023-06-08T10:05:05.140000Z\", \"playDuration\": \"PT11H23M42S\"}, {\"titleId\": \"PPSA14306_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T16:06:41.000000Z\", \"lastPlayedDateTime\": \"2023-06-06T16:31:25.690000Z\", \"playDuration\": \"PT24M28S\"}, {\"titleId\": \"PPSA14307_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T15:27:43.530000Z\", \"lastPlayedDateTime\": \"2023-06-06T16:06:39.700000Z\", \"playDuration\": \"PT38M28S\"}, {\"titleId\": \"CUSA41259_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T15:07:45.220000Z\", \"lastPlayedDateTime\": \"2023-06-06T15:27:41.070000Z\", \"playDuration\": \"PT19M31S\"}, {\"titleId\": \"CUSA41261_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T14:31:17.370000Z\", \"lastPlayedDateTime\": \"2023-06-06T15:07:43.130000Z\", \"playDuration\": \"PT36M18S\"}, {\"titleId\": \"CUSA32564_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T11:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-06-06T14:31:13.680000Z\", \"playDuration\": \"PT3H21M8S\"}, {\"titleId\": \"PPSA16462_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T08:26:25.550000Z\", \"lastPlayedDateTime\": \"2023-06-06T09:14:40.230000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA37251_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T06:03:10.720000Z\", \"lastPlayedDateTime\": \"2023-06-06T08:22:10.390000Z\", \"playDuration\": \"PT2H7M33S\"}, {\"titleId\": \"CUSA34534_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T04:10:20.640000Z\", \"lastPlayedDateTime\": \"2023-06-06T06:00:19.880000Z\", \"playDuration\": \"PT1H49M52S\"}, {\"titleId\": \"CUSA34533_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T00:49:32.530000Z\", \"lastPlayedDateTime\": \"2023-06-06T02:47:52.100000Z\", \"playDuration\": \"PT1H58M7S\"}, {\"titleId\": \"CUSA34532_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-05T14:09:23.830000Z\", \"lastPlayedDateTime\": \"2023-06-05T16:14:56.160000Z\", \"playDuration\": \"PT1H54M37S\"}, {\"titleId\": \"PPSA13255_00\", \"name\": \"Heirs of the Kings\", \"localizedName\": \"Heirs of the Kings\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006995, \"titleIds\": [\"CUSA40563_00\", \"PPSA13255_00\", \"CUSA40231_00\", \"PPSA13611_00\", \"PPSA13612_00\", \"CUSA40562_00\"], \"name\": \"Heirs of the Kings\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Heirs of the Kings\", \"uk-UA\": \"Heirs of the Kings\", \"de-DE\": \"Heirs of the Kings\", \"en-US\": \"Heirs of the Kings\", \"ko-KR\": \"Heirs of the Kings\", \"pt-BR\": \"Heirs of the Kings\", \"es-ES\": \"Heirs of the Kings\", \"no-NO\": \"Heirs of the Kings\", \"fr-CA\": \"Heirs of the Kings\", \"it-IT\": \"Heirs of the Kings\", \"pl-PL\": \"Heirs of the Kings\", \"ru-RU\": \"Heirs of the Kings\", \"zh-Hans\": \"Heirs of the Kings\", \"nl-NL\": \"Heirs of the Kings\", \"pt-PT\": \"Heirs of the Kings\", \"zh-Hant\": \"Heirs of the Kings\", \"sv-SE\": \"Heirs of the Kings\", \"da-DK\": \"Heirs of the Kings\", \"fr-FR\": \"Heirs of the Kings\", \"en-GB\": \"Heirs of the Kings\", \"es-419\": \"Heirs of the Kings\", \"ja-JP\": \"\\u30ad\\u30f3\\u30b0\\u30ba\\u30c7\\u30a3\\u30bb\\u30f3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T12:50:24.650000Z\", \"lastPlayedDateTime\": \"2023-06-05T14:06:46.360000Z\", \"playDuration\": \"PT22H23M12S\"}, {\"titleId\": \"CUSA40231_00\", \"name\": \"Heirs of the Kings\", \"localizedName\": \"Heirs of the Kings\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006995, \"titleIds\": [\"CUSA40563_00\", \"PPSA13255_00\", \"CUSA40231_00\", \"PPSA13611_00\", \"PPSA13612_00\", \"CUSA40562_00\"], \"name\": \"Heirs of the Kings\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Heirs of the Kings\", \"uk-UA\": \"Heirs of the Kings\", \"de-DE\": \"Heirs of the Kings\", \"en-US\": \"Heirs of the Kings\", \"ko-KR\": \"Heirs of the Kings\", \"pt-BR\": \"Heirs of the Kings\", \"es-ES\": \"Heirs of the Kings\", \"no-NO\": \"Heirs of the Kings\", \"fr-CA\": \"Heirs of the Kings\", \"it-IT\": \"Heirs of the Kings\", \"pl-PL\": \"Heirs of the Kings\", \"ru-RU\": \"Heirs of the Kings\", \"zh-Hans\": \"Heirs of the Kings\", \"nl-NL\": \"Heirs of the Kings\", \"pt-PT\": \"Heirs of the Kings\", \"zh-Hant\": \"Heirs of the Kings\", \"sv-SE\": \"Heirs of the Kings\", \"da-DK\": \"Heirs of the Kings\", \"fr-FR\": \"Heirs of the Kings\", \"en-GB\": \"Heirs of the Kings\", \"es-419\": \"Heirs of the Kings\", \"ja-JP\": \"\\u30ad\\u30f3\\u30b0\\u30ba\\u30c7\\u30a3\\u30bb\\u30f3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T13:51:23.490000Z\", \"lastPlayedDateTime\": \"2023-06-05T06:14:45.790000Z\", \"playDuration\": \"PT33H41M44S\"}, {\"titleId\": \"CUSA15500_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T04:04:01.980000Z\", \"lastPlayedDateTime\": \"2023-06-05T06:07:26.700000Z\", \"playDuration\": \"PT6H42M7S\"}, {\"titleId\": \"CUSA18580_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T07:43:51.930000Z\", \"lastPlayedDateTime\": \"2023-06-05T05:58:26.990000Z\", \"playDuration\": \"PT3H49M17S\"}, {\"titleId\": \"CUSA15575_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T11:11:57.590000Z\", \"lastPlayedDateTime\": \"2023-06-05T05:49:17.320000Z\", \"playDuration\": \"PT3H45M36S\"}, {\"titleId\": \"CUSA26987_00\", \"name\": \"What The Dub?!\", \"localizedName\": \"What The Dub?!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002481, \"titleIds\": [\"CUSA26985_00\", \"CUSA26987_00\"], \"name\": \"What The Dub?!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/TNNbMptwhB0L7IWFA0MZbUgX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/3mD7Em0YlVOmA77VA6MVZZwC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/gnEdR6parZzQSqEUkUJlmM1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/czJjWQg2FM6Rx0Lr9Q2Eqn1y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0221/jE22AGy9QKNfRC3DpR8QeVqV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/MDgawcaFpjyiTfjw29TLANGt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/QQLj4CDqSyUzJ2oWdQrivpfo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/ZX0AonCT39jvO2JOgiOw91d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/0223/apczqgQ4sKHQ4q2HutcXenQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/h7hyS7NaWNUNPeglxMHuaOD3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/3y9lAT2sYxzhKpmA3iuaFI7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/RWpok9cXrDh3ELPnSwrn9kfd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"What The Dub?!\", \"uk-UA\": \"What The Dub?!\", \"de-DE\": \"What The Dub?!\", \"en-US\": \"What The Dub?!\", \"pt-BR\": \"What The Dub?!\", \"es-ES\": \"What The Dub?!\", \"ar-AE\": \"What The Dub?!\", \"no-NO\": \"What The Dub?!\", \"fr-CA\": \"What The Dub?!\", \"it-IT\": \"What The Dub?!\", \"pl-PL\": \"What The Dub?!\", \"ru-RU\": \"What The Dub?!\", \"nl-NL\": \"What The Dub?!\", \"pt-PT\": \"What The Dub?!\", \"sv-SE\": \"What The Dub?!\", \"da-DK\": \"What The Dub?!\", \"tr-TR\": \"What The Dub?!\", \"fr-FR\": \"What The Dub?!\", \"en-GB\": \"What The Dub?!\", \"es-419\": \"What The Dub?!\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/TNNbMptwhB0L7IWFA0MZbUgX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/3mD7Em0YlVOmA77VA6MVZZwC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/gnEdR6parZzQSqEUkUJlmM1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/czJjWQg2FM6Rx0Lr9Q2Eqn1y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0221/jE22AGy9QKNfRC3DpR8QeVqV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/MDgawcaFpjyiTfjw29TLANGt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/QQLj4CDqSyUzJ2oWdQrivpfo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/ZX0AonCT39jvO2JOgiOw91d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/0223/apczqgQ4sKHQ4q2HutcXenQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/h7hyS7NaWNUNPeglxMHuaOD3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/3y9lAT2sYxzhKpmA3iuaFI7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/RWpok9cXrDh3ELPnSwrn9kfd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:14:48.960000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:16:41.360000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA23876_00\", \"name\": \"The Secret Order: Return to the Buried Kingdom\", \"localizedName\": \"The Secret Order: Return to the Buried Kingdom\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001150, \"titleIds\": [\"CUSA23877_00\", \"CUSA23876_00\"], \"name\": \"The Secret Order: Return to the Buried Kingdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Secret Order: Return to the Buried Kingdom\", \"uk-UA\": \"The Secret Order: Return to the Buried Kingdom\", \"de-DE\": \"The Secret Order: Return to the Buried Kingdom\", \"en-US\": \"The Secret Order: Return to the Buried Kingdom\", \"pt-BR\": \"The Secret Order: Return to the Buried Kingdom\", \"es-ES\": \"The Secret Order: Return to the Buried Kingdom\", \"ar-AE\": \"The Secret Order: Return to the Buried Kingdom\", \"no-NO\": \"The Secret Order: Return to the Buried Kingdom\", \"fr-CA\": \"The Secret Order: Return to the Buried Kingdom\", \"it-IT\": \"The Secret Order: Return to the Buried Kingdom\", \"pl-PL\": \"The Secret Order: Return to the Buried Kingdom\", \"ru-RU\": \"The Secret Order: Return to the Buried Kingdom\", \"nl-NL\": \"The Secret Order: Return to the Buried Kingdom\", \"pt-PT\": \"The Secret Order: Return to the Buried Kingdom\", \"sv-SE\": \"The Secret Order: Return to the Buried Kingdom\", \"da-DK\": \"The Secret Order: Return to the Buried Kingdom\", \"tr-TR\": \"The Secret Order: Return to the Buried Kingdom\", \"fr-FR\": \"The Secret Order: Return to the Buried Kingdom\", \"en-GB\": \"The Secret Order: Return to the Buried Kingdom\", \"es-419\": \"The Secret Order: Return to the Buried Kingdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:09:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:13:47.740000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14971_00\", \"name\": \"Ultimate Runner\", \"localizedName\": \"Ultimate Runner\", \"imageUrl\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231907, \"titleIds\": [\"PPSA14972_00\", \"CUSA13147_00\", \"PPSA14971_00\", \"CUSA11645_00\"], \"name\": \"Ultimate Runner\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/7c8f84a1b0d87f8e3da10d423fc79ab66ccce0445f4a2915.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/c06bb19f47862a8336308f7ee3a4de4db667631630296af7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA11645_00/8/i_28ac87bf3906221370b5c670820afc714730d1baf9247207e58ff801971a72df/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/defe61e567fd7ed0722e334ed60cfc32d09c6aeca2865d16.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/06cd1c3b18a40c1f4113966d5f6f0babdecae65fee16a9ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/FREE_CONTENTPwHyW6KgIcSyXmE4ErvG/PREVIEW_SCREENSHOT4_172795.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTkevJwUOu8URU6qHjLrTo/PREVIEW_SCREENSHOT6_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTi94f3LNnJCNuGOszRpiL/PREVIEW_SCREENSHOT5_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENT22ODMVmrd1UmgpUwdQ28/PREVIEW_SCREENSHOT3_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTVf00N75qpL95feeZ6MiX/PREVIEW_SCREENSHOT2_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultimate Runner\", \"uk-UA\": \"Ultimate Runner\", \"de-DE\": \"Ultimate Runner\", \"en-US\": \"Ultimate Runner\", \"pt-BR\": \"Ultimate Runner\", \"es-ES\": \"Ultimate Runner\", \"ar-AE\": \"Ultimate Runner\", \"no-NO\": \"Ultimate Runner\", \"fr-CA\": \"Ultimate Runner\", \"it-IT\": \"Ultimate Runner\", \"pl-PL\": \"Ultimate Runner\", \"ru-RU\": \"Ultimate Runner\", \"nl-NL\": \"Ultimate Runner\", \"pt-PT\": \"Ultimate Runner\", \"sv-SE\": \"Ultimate Runner\", \"da-DK\": \"Ultimate Runner\", \"tr-TR\": \"Ultimate Runner\", \"fr-FR\": \"Ultimate Runner\", \"en-GB\": \"Ultimate Runner\", \"es-419\": \"Ultimate Runner\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/7c8f84a1b0d87f8e3da10d423fc79ab66ccce0445f4a2915.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/c06bb19f47862a8336308f7ee3a4de4db667631630296af7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA11645_00/8/i_28ac87bf3906221370b5c670820afc714730d1baf9247207e58ff801971a72df/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/defe61e567fd7ed0722e334ed60cfc32d09c6aeca2865d16.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/06cd1c3b18a40c1f4113966d5f6f0babdecae65fee16a9ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/FREE_CONTENTPwHyW6KgIcSyXmE4ErvG/PREVIEW_SCREENSHOT4_172795.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTkevJwUOu8URU6qHjLrTo/PREVIEW_SCREENSHOT6_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTi94f3LNnJCNuGOszRpiL/PREVIEW_SCREENSHOT5_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENT22ODMVmrd1UmgpUwdQ28/PREVIEW_SCREENSHOT3_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTVf00N75qpL95feeZ6MiX/PREVIEW_SCREENSHOT2_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:05:15.370000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:08:13.960000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"PPSA08618_00\", \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"localizedName\": \"Puzzle Quest 3: Match 3 RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005398, \"titleIds\": [\"CUSA34761_00\", \"CUSA34760_00\", \"PPSA08617_00\", \"PPSA08618_00\"], \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Quest 3: Match 3 RPG\", \"uk-UA\": \"Puzzle Quest 3: Match 3 RPG\", \"de-DE\": \"Puzzle Quest 3: Match 3 RPG\", \"en-US\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-BR\": \"Puzzle Quest 3: Match 3 RPG\", \"es-ES\": \"Puzzle Quest 3: Match 3 RPG\", \"ar-AE\": \"Puzzle Quest 3: Match 3 RPG\", \"no-NO\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-CA\": \"Puzzle Quest 3: Match 3 RPG\", \"it-IT\": \"Puzzle Quest 3: Match 3 RPG\", \"pl-PL\": \"Puzzle Quest 3: Match 3 RPG\", \"ru-RU\": \"Puzzle Quest 3: Match 3 RPG\", \"nl-NL\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-PT\": \"Puzzle Quest 3: Match 3 RPG\", \"sv-SE\": \"Puzzle Quest 3: Match 3 RPG\", \"da-DK\": \"Puzzle Quest 3: Match 3 RPG\", \"tr-TR\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-FR\": \"Puzzle Quest 3: Match 3 RPG\", \"en-GB\": \"Puzzle Quest 3: Match 3 RPG\", \"es-419\": \"Puzzle Quest 3: Match 3 RPG\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:26:44.290000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:04:21.880000Z\", \"playDuration\": \"PT36M54S\"}, {\"titleId\": \"CUSA34761_00\", \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"localizedName\": \"Puzzle Quest 3: Match 3 RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005398, \"titleIds\": [\"CUSA34761_00\", \"CUSA34760_00\", \"PPSA08617_00\", \"PPSA08618_00\"], \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Quest 3: Match 3 RPG\", \"uk-UA\": \"Puzzle Quest 3: Match 3 RPG\", \"de-DE\": \"Puzzle Quest 3: Match 3 RPG\", \"en-US\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-BR\": \"Puzzle Quest 3: Match 3 RPG\", \"es-ES\": \"Puzzle Quest 3: Match 3 RPG\", \"ar-AE\": \"Puzzle Quest 3: Match 3 RPG\", \"no-NO\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-CA\": \"Puzzle Quest 3: Match 3 RPG\", \"it-IT\": \"Puzzle Quest 3: Match 3 RPG\", \"pl-PL\": \"Puzzle Quest 3: Match 3 RPG\", \"ru-RU\": \"Puzzle Quest 3: Match 3 RPG\", \"nl-NL\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-PT\": \"Puzzle Quest 3: Match 3 RPG\", \"sv-SE\": \"Puzzle Quest 3: Match 3 RPG\", \"da-DK\": \"Puzzle Quest 3: Match 3 RPG\", \"tr-TR\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-FR\": \"Puzzle Quest 3: Match 3 RPG\", \"en-GB\": \"Puzzle Quest 3: Match 3 RPG\", \"es-419\": \"Puzzle Quest 3: Match 3 RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:21:19.030000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:26:39.360000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"PPSA04571_00\", \"name\": \"Endless Fables: Shadow Within\", \"localizedName\": \"Endless Fables: Shadow Within\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003403, \"titleIds\": [\"CUSA29379_00\", \"PPSA04571_00\", \"CUSA29378_00\", \"PPSA04572_00\"], \"name\": \"Endless Fables: Shadow Within\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Endless Fables: Shadow Within\", \"uk-UA\": \"Endless Fables: Shadow Within\", \"de-DE\": \"Endless Fables: Shadow Within\", \"en-US\": \"Endless Fables: Shadow Within\", \"pt-BR\": \"Endless Fables: Shadow Within\", \"es-ES\": \"Endless Fables: Shadow Within\", \"ar-AE\": \"Endless Fables: Shadow Within\", \"no-NO\": \"Endless Fables: Shadow Within\", \"fr-CA\": \"Endless Fables: Shadow Within\", \"it-IT\": \"Endless Fables: Shadow Within\", \"pl-PL\": \"Endless Fables: Shadow Within\", \"ru-RU\": \"Endless Fables: Shadow Within\", \"nl-NL\": \"Endless Fables: Shadow Within\", \"pt-PT\": \"Endless Fables: Shadow Within\", \"sv-SE\": \"Endless Fables: Shadow Within\", \"da-DK\": \"Endless Fables: Shadow Within\", \"tr-TR\": \"Endless Fables: Shadow Within\", \"fr-FR\": \"Endless Fables: Shadow Within\", \"en-GB\": \"Endless Fables: Shadow Within\", \"es-419\": \"Endless Fables: Shadow Within\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:18:53.000000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:20:01.250000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA29378_00\", \"name\": \"Endless Fables: Shadow Within\", \"localizedName\": \"Endless Fables: Shadow Within\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003403, \"titleIds\": [\"CUSA29379_00\", \"PPSA04571_00\", \"CUSA29378_00\", \"PPSA04572_00\"], \"name\": \"Endless Fables: Shadow Within\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Endless Fables: Shadow Within\", \"uk-UA\": \"Endless Fables: Shadow Within\", \"de-DE\": \"Endless Fables: Shadow Within\", \"en-US\": \"Endless Fables: Shadow Within\", \"pt-BR\": \"Endless Fables: Shadow Within\", \"es-ES\": \"Endless Fables: Shadow Within\", \"ar-AE\": \"Endless Fables: Shadow Within\", \"no-NO\": \"Endless Fables: Shadow Within\", \"fr-CA\": \"Endless Fables: Shadow Within\", \"it-IT\": \"Endless Fables: Shadow Within\", \"pl-PL\": \"Endless Fables: Shadow Within\", \"ru-RU\": \"Endless Fables: Shadow Within\", \"nl-NL\": \"Endless Fables: Shadow Within\", \"pt-PT\": \"Endless Fables: Shadow Within\", \"sv-SE\": \"Endless Fables: Shadow Within\", \"da-DK\": \"Endless Fables: Shadow Within\", \"tr-TR\": \"Endless Fables: Shadow Within\", \"fr-FR\": \"Endless Fables: Shadow Within\", \"en-GB\": \"Endless Fables: Shadow Within\", \"es-419\": \"Endless Fables: Shadow Within\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:16:20.530000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:18:51.520000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA16354_00\", \"name\": \"Darkestville Castle\", \"localizedName\": \"Darkestville Castle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234403, \"titleIds\": [\"CUSA16354_00\", \"CUSA16176_00\", \"CUSA20228_00\", \"CUSA20190_00\"], \"name\": \"Darkestville Castle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/av3Mvh1fJdqyeotVQB05eRvO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16354_00/4/i_e4c62ed2a6fcebbc6775cdd4123b2f8d88cbd92e87b81f9338d7f38296530b7d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/aLz39Rt5HLupXPRNekmUDNTC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/MekHOo0DyXHMxIJ5VhHJcYMZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Darkestville Castle\", \"uk-UA\": \"Darkestville Castle\", \"de-DE\": \"Darkestville Castle\", \"en-US\": \"Darkestville Castle\", \"pt-BR\": \"Darkestville Castle\", \"es-ES\": \"Darkestville Castle\", \"ar-AE\": \"Darkestville Castle\", \"no-NO\": \"Darkestville Castle\", \"fr-CA\": \"Darkestville Castle\", \"it-IT\": \"Darkestville Castle\", \"pl-PL\": \"Darkestville Castle\", \"ru-RU\": \"Darkestville Castle\", \"nl-NL\": \"Darkestville Castle\", \"pt-PT\": \"Darkestville Castle\", \"sv-SE\": \"Darkestville Castle\", \"da-DK\": \"Darkestville Castle\", \"tr-TR\": \"Darkestville Castle\", \"fr-FR\": \"Darkestville Castle\", \"en-GB\": \"Darkestville Castle\", \"es-419\": \"Darkestville Castle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/av3Mvh1fJdqyeotVQB05eRvO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16354_00/4/i_e4c62ed2a6fcebbc6775cdd4123b2f8d88cbd92e87b81f9338d7f38296530b7d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/aLz39Rt5HLupXPRNekmUDNTC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/MekHOo0DyXHMxIJ5VhHJcYMZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:10:57.830000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:14:39.130000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA25993_00\", \"name\": \"Demon Hunter: Revelation\", \"localizedName\": \"Demon Hunter: Revelation\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002067, \"titleIds\": [\"CUSA25993_00\", \"CUSA25994_00\"], \"name\": \"Demon Hunter: Revelation\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/u1euthWKwoDyAnrarQxd5f3I.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/8JIgQ33OglvSBdVgbh6Z60Tm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kKByPd8Om47tCFB3PkITSk3p.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/ql9jVslkk4Pmm4DM6GzN488Y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/YaLyzKuvo9nxVmEzLlC7ZGsx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7aDdwwxLTehhC1Caxi3LzeXX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/wleNaKW7H5kQ0yyizt8g40S3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/VJzNRbXwJZ3RkjTydNsWtGc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/2usqyi1aBgJa7V9cmraHe1ly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/zhEG9jeSocRALCdgt1Bx3FS4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kEy4KyUs3FIoCgZN3WOqYOWa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/d5ZsUGR0WXPHXZDHfYzo5dBI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/qmdyPnvFeHpxi9J7AbZ0rWWY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/o3M1WyiuRYdO2LgruSpqjqD7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/eZtUUW7XxsrIAQJF7lhlcmJV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Revelation\", \"uk-UA\": \"Demon Hunter: Revelation\", \"de-DE\": \"Demon Hunter: Revelation\", \"en-US\": \"Demon Hunter: Revelation\", \"pt-BR\": \"Demon Hunter: Revelation\", \"es-ES\": \"Demon Hunter: Revelation\", \"ar-AE\": \"Demon Hunter: Revelation\", \"no-NO\": \"Demon Hunter: Revelation\", \"fr-CA\": \"Demon Hunter: Revelation\", \"it-IT\": \"Demon Hunter: Revelation\", \"pl-PL\": \"Demon Hunter: Revelation\", \"ru-RU\": \"Demon Hunter: Revelation\", \"nl-NL\": \"Demon Hunter: Revelation\", \"pt-PT\": \"Demon Hunter: Revelation\", \"sv-SE\": \"Demon Hunter: Revelation\", \"da-DK\": \"Demon Hunter: Revelation\", \"tr-TR\": \"Demon Hunter: Revelation\", \"fr-FR\": \"Demon Hunter: Revelation\", \"en-GB\": \"Demon Hunter: Revelation\", \"es-419\": \"Demon Hunter: Revelation\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/u1euthWKwoDyAnrarQxd5f3I.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/8JIgQ33OglvSBdVgbh6Z60Tm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kKByPd8Om47tCFB3PkITSk3p.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/ql9jVslkk4Pmm4DM6GzN488Y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/YaLyzKuvo9nxVmEzLlC7ZGsx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7aDdwwxLTehhC1Caxi3LzeXX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/wleNaKW7H5kQ0yyizt8g40S3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/VJzNRbXwJZ3RkjTydNsWtGc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/2usqyi1aBgJa7V9cmraHe1ly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/zhEG9jeSocRALCdgt1Bx3FS4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kEy4KyUs3FIoCgZN3WOqYOWa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/d5ZsUGR0WXPHXZDHfYzo5dBI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/qmdyPnvFeHpxi9J7AbZ0rWWY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/o3M1WyiuRYdO2LgruSpqjqD7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/eZtUUW7XxsrIAQJF7lhlcmJV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:06:37.340000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:10:12.590000Z\", \"playDuration\": \"PT2M41S\"}, {\"titleId\": \"PPSA06378_00\", \"name\": \"Demon Hunter: Ascendance\", \"localizedName\": \"Demon Hunter: Ascendance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004426, \"titleIds\": [\"PPSA06378_00\", \"PPSA06379_00\", \"CUSA32047_00\", \"CUSA32048_00\"], \"name\": \"Demon Hunter: Ascendance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Ascendance\", \"uk-UA\": \"Demon Hunter: Ascendance\", \"de-DE\": \"Demon Hunter: Ascendance\", \"en-US\": \"Demon Hunter: Ascendance\", \"pt-BR\": \"Demon Hunter: Ascendance\", \"es-ES\": \"Demon Hunter: Ascendance\", \"ar-AE\": \"Demon Hunter: Ascendance\", \"no-NO\": \"Demon Hunter: Ascendance\", \"fr-CA\": \"Demon Hunter: Ascendance\", \"it-IT\": \"Demon Hunter: Ascendance\", \"pl-PL\": \"Demon Hunter: Ascendance\", \"ru-RU\": \"Demon Hunter: Ascendance\", \"nl-NL\": \"Demon Hunter: Ascendance\", \"pt-PT\": \"Demon Hunter: Ascendance\", \"sv-SE\": \"Demon Hunter: Ascendance\", \"da-DK\": \"Demon Hunter: Ascendance\", \"tr-TR\": \"Demon Hunter: Ascendance\", \"fr-FR\": \"Demon Hunter: Ascendance\", \"en-GB\": \"Demon Hunter: Ascendance\", \"es-419\": \"Demon Hunter: Ascendance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:04:08.440000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:05:44.590000Z\", \"playDuration\": \"PT57S\"}, {\"titleId\": \"CUSA32047_00\", \"name\": \"Demon Hunter: Ascendance\", \"localizedName\": \"Demon Hunter: Ascendance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004426, \"titleIds\": [\"PPSA06378_00\", \"PPSA06379_00\", \"CUSA32047_00\", \"CUSA32048_00\"], \"name\": \"Demon Hunter: Ascendance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Ascendance\", \"uk-UA\": \"Demon Hunter: Ascendance\", \"de-DE\": \"Demon Hunter: Ascendance\", \"en-US\": \"Demon Hunter: Ascendance\", \"pt-BR\": \"Demon Hunter: Ascendance\", \"es-ES\": \"Demon Hunter: Ascendance\", \"ar-AE\": \"Demon Hunter: Ascendance\", \"no-NO\": \"Demon Hunter: Ascendance\", \"fr-CA\": \"Demon Hunter: Ascendance\", \"it-IT\": \"Demon Hunter: Ascendance\", \"pl-PL\": \"Demon Hunter: Ascendance\", \"ru-RU\": \"Demon Hunter: Ascendance\", \"nl-NL\": \"Demon Hunter: Ascendance\", \"pt-PT\": \"Demon Hunter: Ascendance\", \"sv-SE\": \"Demon Hunter: Ascendance\", \"da-DK\": \"Demon Hunter: Ascendance\", \"tr-TR\": \"Demon Hunter: Ascendance\", \"fr-FR\": \"Demon Hunter: Ascendance\", \"en-GB\": \"Demon Hunter: Ascendance\", \"es-419\": \"Demon Hunter: Ascendance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:01:22.510000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:04:05.440000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA05135_00\", \"name\": \"Demon Hunter: Riddles of Light\", \"localizedName\": \"Demon Hunter: Riddles of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003730, \"titleIds\": [\"CUSA30209_00\", \"PPSA05136_00\", \"CUSA30210_00\", \"PPSA05135_00\"], \"name\": \"Demon Hunter: Riddles of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Riddles of Light\", \"uk-UA\": \"Demon Hunter: Riddles of Light\", \"de-DE\": \"Demon Hunter: Riddles of Light\", \"en-US\": \"Demon Hunter: Riddles of Light\", \"pt-BR\": \"Demon Hunter: Riddles of Light\", \"es-ES\": \"Demon Hunter: Riddles of Light\", \"ar-AE\": \"Demon Hunter: Riddles of Light\", \"no-NO\": \"Demon Hunter: Riddles of Light\", \"fr-CA\": \"Demon Hunter: Riddles of Light\", \"it-IT\": \"Demon Hunter: Riddles of Light\", \"pl-PL\": \"Demon Hunter: Riddles of Light\", \"ru-RU\": \"Demon Hunter: Riddles of Light\", \"nl-NL\": \"Demon Hunter: Riddles of Light\", \"pt-PT\": \"Demon Hunter: Riddles of Light\", \"sv-SE\": \"Demon Hunter: Riddles of Light\", \"da-DK\": \"Demon Hunter: Riddles of Light\", \"tr-TR\": \"Demon Hunter: Riddles of Light\", \"fr-FR\": \"Demon Hunter: Riddles of Light\", \"en-GB\": \"Demon Hunter: Riddles of Light\", \"es-419\": \"Demon Hunter: Riddles of Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:59:04.720000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:00:21.310000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA30209_00\", \"name\": \"Demon Hunter: Riddles of Light\", \"localizedName\": \"Demon Hunter: Riddles of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003730, \"titleIds\": [\"CUSA30209_00\", \"PPSA05136_00\", \"CUSA30210_00\", \"PPSA05135_00\"], \"name\": \"Demon Hunter: Riddles of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Riddles of Light\", \"uk-UA\": \"Demon Hunter: Riddles of Light\", \"de-DE\": \"Demon Hunter: Riddles of Light\", \"en-US\": \"Demon Hunter: Riddles of Light\", \"pt-BR\": \"Demon Hunter: Riddles of Light\", \"es-ES\": \"Demon Hunter: Riddles of Light\", \"ar-AE\": \"Demon Hunter: Riddles of Light\", \"no-NO\": \"Demon Hunter: Riddles of Light\", \"fr-CA\": \"Demon Hunter: Riddles of Light\", \"it-IT\": \"Demon Hunter: Riddles of Light\", \"pl-PL\": \"Demon Hunter: Riddles of Light\", \"ru-RU\": \"Demon Hunter: Riddles of Light\", \"nl-NL\": \"Demon Hunter: Riddles of Light\", \"pt-PT\": \"Demon Hunter: Riddles of Light\", \"sv-SE\": \"Demon Hunter: Riddles of Light\", \"da-DK\": \"Demon Hunter: Riddles of Light\", \"tr-TR\": \"Demon Hunter: Riddles of Light\", \"fr-FR\": \"Demon Hunter: Riddles of Light\", \"en-GB\": \"Demon Hunter: Riddles of Light\", \"es-419\": \"Demon Hunter: Riddles of Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T00:55:41.490000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:59:01.760000Z\", \"playDuration\": \"PT5M16S\"}, {\"titleId\": \"PPSA09743_00\", \"name\": \"Vegas Infinite\", \"localizedName\": \"Vegas Infinite\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005964, \"titleIds\": [\"PPSA09743_00\"], \"name\": \"Vegas Infinite\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/23bbed95d23f6f68a465835255fba86707b6a0770ad8d91f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/5d29db8df2b9125f2a2521662b5d0b1a54a6e306424e08c6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/aec29a5b853ca011c2b0635f2e0b75ded3e9a3f8d3d1a459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/541ada80bcc832fd0e2cc1d779919155af63fdf0116f5fa1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/2b6c7c596ddb917b9759118998bb43269760cfb8e4d45a91.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/6e713569abb7b5d7a7844d52fef3438333b82ed2b6d802d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/0ba7f5a3e7db3e7243a158eeb115499546f052fd727a271d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/c595fdca60b54d1d516ad3b9dc4b14887a2bf2a913f7d247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0917/46dfcf4c65f81a5771750a4e8c71d0d1cf03be8a0b4f1e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SPORTS\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Infinite\", \"uk-UA\": \"Vegas Infinite\", \"de-DE\": \"Vegas Infinite\", \"en-US\": \"Vegas Infinite\", \"ko-KR\": \"Vegas Infinite\", \"pt-BR\": \"Vegas Infinite\", \"es-ES\": \"Vegas Infinite\", \"ar-AE\": \"Vegas Infinite\", \"no-NO\": \"Vegas Infinite\", \"fr-CA\": \"Vegas Infinite\", \"it-IT\": \"Vegas Infinite\", \"pl-PL\": \"Vegas Infinite\", \"ru-RU\": \"Vegas Infinite\", \"zh-Hans\": \"Vegas Infinite\", \"nl-NL\": \"Vegas Infinite\", \"pt-PT\": \"Vegas Infinite\", \"zh-Hant\": \"Vegas Infinite\", \"sv-SE\": \"Vegas Infinite\", \"da-DK\": \"Vegas Infinite\", \"tr-TR\": \"Vegas Infinite\", \"fr-FR\": \"Vegas Infinite\", \"en-GB\": \"Vegas Infinite\", \"es-419\": \"Vegas Infinite\", \"ja-JP\": \"Vegas Infinite\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/23bbed95d23f6f68a465835255fba86707b6a0770ad8d91f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/5d29db8df2b9125f2a2521662b5d0b1a54a6e306424e08c6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/aec29a5b853ca011c2b0635f2e0b75ded3e9a3f8d3d1a459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/541ada80bcc832fd0e2cc1d779919155af63fdf0116f5fa1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/2b6c7c596ddb917b9759118998bb43269760cfb8e4d45a91.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/6e713569abb7b5d7a7844d52fef3438333b82ed2b6d802d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/0ba7f5a3e7db3e7243a158eeb115499546f052fd727a271d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/c595fdca60b54d1d516ad3b9dc4b14887a2bf2a913f7d247.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0917/46dfcf4c65f81a5771750a4e8c71d0d1cf03be8a0b4f1e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:50:36.630000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:52:47.280000Z\", \"playDuration\": \"PT2M7S\"}, {\"titleId\": \"PPSA15827_00\", \"name\": \"Cave Digger: Riches\", \"localizedName\": \"Cave Digger: Riches\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 232984, \"titleIds\": [\"CUSA20112_00\", \"CUSA14289_00\", \"CUSA14068_00\", \"PPSA15828_00\", \"PPSA15827_00\", \"CUSA20416_00\"], \"name\": \"Cave Digger: Riches\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0214/IvD6gSE1IHmsWm9yjft20jYW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2009/WxiPuut0jVPNIB2bgcE3tBYs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cave Digger: Riches\", \"uk-UA\": \"Cave Digger: Riches\", \"de-DE\": \"Cave Digger: Riches\", \"en-US\": \"Cave Digger: Riches\", \"ko-KR\": \"Cave Digger: Riches\", \"pt-BR\": \"Cave Digger: Riches\", \"es-ES\": \"Cave Digger: Riches\", \"ar-AE\": \"Cave Digger: Riches\", \"no-NO\": \"Cave Digger: Riches\", \"fr-CA\": \"Cave Digger: Riches\", \"it-IT\": \"Cave Digger: Riches\", \"pl-PL\": \"Cave Digger: Riches\", \"ru-RU\": \"Cave Digger: Riches\", \"zh-Hans\": \"Cave Digger: Riches\", \"nl-NL\": \"Cave Digger: Riches\", \"pt-PT\": \"Cave Digger: Riches\", \"zh-Hant\": \"Cave Digger: Riches\", \"sv-SE\": \"Cave Digger: Riches\", \"da-DK\": \"Cave Digger: Riches\", \"tr-TR\": \"Cave Digger: Riches\", \"fr-FR\": \"Cave Digger: Riches\", \"en-GB\": \"Cave Digger: Riches\", \"es-419\": \"Cave Digger: Riches\", \"ja-JP\": \"Cave Digger: Riches\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0214/IvD6gSE1IHmsWm9yjft20jYW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2009/WxiPuut0jVPNIB2bgcE3tBYs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:39:31.190000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:49:50.720000Z\", \"playDuration\": \"PT1M52S\"}, {\"titleId\": \"CUSA18462_00\", \"name\": \"Freedom Finger\", \"localizedName\": \"Freedom Finger\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000262, \"titleIds\": [\"CUSA18462_00\", \"CUSA18507_00\", \"CUSA19041_00\"], \"name\": \"Freedom Finger\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Freedom Finger\", \"uk-UA\": \"Freedom Finger\", \"de-DE\": \"Freedom Finger\", \"en-US\": \"Freedom Finger\", \"pt-BR\": \"Freedom Finger\", \"es-ES\": \"Freedom Finger\", \"ar-AE\": \"Freedom Finger\", \"no-NO\": \"Freedom Finger\", \"fr-CA\": \"Freedom Finger\", \"it-IT\": \"Freedom Finger\", \"pl-PL\": \"Freedom Finger\", \"ru-RU\": \"Freedom Finger\", \"zh-Hans\": \"Freedom Finger\", \"nl-NL\": \"Freedom Finger\", \"pt-PT\": \"Freedom Finger\", \"zh-Hant\": \"Freedom Finger\", \"sv-SE\": \"Freedom Finger\", \"da-DK\": \"Freedom Finger\", \"tr-TR\": \"Freedom Finger\", \"fr-FR\": \"Freedom Finger\", \"en-GB\": \"Freedom Finger\", \"es-419\": \"Freedom Finger\", \"ja-JP\": \"Freedom Finger\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:13:52.380000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:15:44.850000Z\", \"playDuration\": \"PT1M40S\"}, {\"titleId\": \"CUSA19041_00\", \"name\": \"Freedom Finger\", \"localizedName\": \"Freedom Finger\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000262, \"titleIds\": [\"CUSA18462_00\", \"CUSA18507_00\", \"CUSA19041_00\"], \"name\": \"Freedom Finger\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Freedom Finger\", \"uk-UA\": \"Freedom Finger\", \"de-DE\": \"Freedom Finger\", \"en-US\": \"Freedom Finger\", \"pt-BR\": \"Freedom Finger\", \"es-ES\": \"Freedom Finger\", \"ar-AE\": \"Freedom Finger\", \"no-NO\": \"Freedom Finger\", \"fr-CA\": \"Freedom Finger\", \"it-IT\": \"Freedom Finger\", \"pl-PL\": \"Freedom Finger\", \"ru-RU\": \"Freedom Finger\", \"zh-Hans\": \"Freedom Finger\", \"nl-NL\": \"Freedom Finger\", \"pt-PT\": \"Freedom Finger\", \"zh-Hant\": \"Freedom Finger\", \"sv-SE\": \"Freedom Finger\", \"da-DK\": \"Freedom Finger\", \"tr-TR\": \"Freedom Finger\", \"fr-FR\": \"Freedom Finger\", \"en-GB\": \"Freedom Finger\", \"es-419\": \"Freedom Finger\", \"ja-JP\": \"Freedom Finger\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-10-17T12:21:49.060000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:13:49.850000Z\", \"playDuration\": \"PT2M35S\"}, {\"titleId\": \"PPSA15293_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T02:25:11.280000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:01:09.870000Z\", \"playDuration\": \"PT35M38S\"}, {\"titleId\": \"CUSA42289_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:46:23.120000Z\", \"lastPlayedDateTime\": \"2023-06-04T02:25:09.210000Z\", \"playDuration\": \"PT38M10S\"}, {\"titleId\": \"PPSA10831_00\", \"name\": \"Mothmen 1966\", \"localizedName\": \"Mothmen 1966\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005010, \"titleIds\": [\"PPSA10830_00\", \"PPSA10831_00\", \"CUSA33546_00\", \"PPSA10829_00\", \"CUSA33544_00\", \"CUSA33545_00\"], \"name\": \"Mothmen 1966\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/RE2Bwi6prv8q4UuiLJgn5moC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1405/OdRspiB2fSygVoY6iw2tKyqg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1202/cnsOI09Gpib7m9HbOIsId16p.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/TnA9JE5RkrgdTliL3nEFpKIY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/P12Gs6Nr55CpKef4EUe8Tyvp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/K2lct2jEVJzNu6e02fhXNxUf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/MvKrdkFA9tSXpyugsSYEEmRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/8y7QCude48y8Il8aXoEf6Sf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/FnXjfmarGOTg2RkJbPc5pY27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/v8dbKQWUlyavOw3h8ftKYY62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/0z5ttYdWjx56eSYc4ix96BNn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/AzZwEXxdnaZG6f6Ov4LQSEuh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/b66b4PqzFis4CY3b2ZL7yjWG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/Ccd6Sik54EoFqD8qZypezkZB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothmen 1966\", \"uk-UA\": \"Mothmen 1966\", \"de-DE\": \"Mothmen 1966\", \"en-US\": \"Mothmen 1966\", \"ko-KR\": \"Mothmen 1966\", \"pt-BR\": \"Mothmen 1966\", \"es-ES\": \"Mothmen 1966\", \"ar-AE\": \"Mothmen 1966\", \"no-NO\": \"Mothmen 1966\", \"fr-CA\": \"Mothmen 1966\", \"it-IT\": \"Mothmen 1966\", \"pl-PL\": \"Mothmen 1966\", \"ru-RU\": \"Mothmen 1966\", \"zh-Hans\": \"\\u5929\\u86fe\\u4eba1966\", \"nl-NL\": \"Mothmen 1966\", \"pt-PT\": \"Mothmen 1966\", \"zh-Hant\": \"\\u5929\\u86fe\\u4eba1966\", \"sv-SE\": \"Mothmen 1966\", \"da-DK\": \"Mothmen 1966\", \"tr-TR\": \"Mothmen 1966\", \"fr-FR\": \"Mothmen 1966\", \"en-GB\": \"Mothmen 1966\", \"es-419\": \"Mothmen 1966\", \"ja-JP\": \"\\u30e2\\u30b9\\u30e1\\u30f3 1966\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/RE2Bwi6prv8q4UuiLJgn5moC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1405/OdRspiB2fSygVoY6iw2tKyqg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1202/cnsOI09Gpib7m9HbOIsId16p.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/TnA9JE5RkrgdTliL3nEFpKIY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/P12Gs6Nr55CpKef4EUe8Tyvp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/K2lct2jEVJzNu6e02fhXNxUf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/MvKrdkFA9tSXpyugsSYEEmRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/8y7QCude48y8Il8aXoEf6Sf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/FnXjfmarGOTg2RkJbPc5pY27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/v8dbKQWUlyavOw3h8ftKYY62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/0z5ttYdWjx56eSYc4ix96BNn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/AzZwEXxdnaZG6f6Ov4LQSEuh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/b66b4PqzFis4CY3b2ZL7yjWG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/Ccd6Sik54EoFqD8qZypezkZB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T13:08:10.410000Z\", \"lastPlayedDateTime\": \"2023-06-02T13:49:25.320000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"CUSA42510_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T12:52:20.730000Z\", \"lastPlayedDateTime\": \"2023-06-02T12:57:57.540000Z\", \"playDuration\": \"PT4M30S\"}, {\"titleId\": \"CUSA42509_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T12:41:20.290000Z\", \"lastPlayedDateTime\": \"2023-06-02T12:52:18.750000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"PPSA16464_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:55:48.350000Z\", \"lastPlayedDateTime\": \"2023-06-02T07:08:54.840000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA43387_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T07:00:37.990000Z\", \"lastPlayedDateTime\": \"2023-06-02T07:05:36.440000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"CUSA43386_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:51:47.960000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:54:55.800000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43385_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:47:21.670000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:51:43.120000Z\", \"playDuration\": \"PT4M4S\"}, {\"titleId\": \"PPSA16463_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:41:03.440000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:47:18.230000Z\", \"playDuration\": \"PT4M39S\"}, {\"titleId\": \"PPSA16664_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:22:01.040000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:40:42.290000Z\", \"playDuration\": \"PT18M30S\"}, {\"titleId\": \"PPSA07591_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T15:06:00.150000Z\", \"lastPlayedDateTime\": \"2023-06-01T16:08:14.100000Z\", \"playDuration\": \"PT1H2M7S\"}, {\"titleId\": \"CUSA29220_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T10:37:33.870000Z\", \"lastPlayedDateTime\": \"2023-06-01T14:55:20.110000Z\", \"playDuration\": \"PT1H29M50S\"}, {\"titleId\": \"PPSA12237_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T05:55:11.390000Z\", \"lastPlayedDateTime\": \"2023-06-01T05:57:31.500000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA39163_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T05:51:35.220000Z\", \"lastPlayedDateTime\": \"2023-06-01T05:54:03.910000Z\", \"playDuration\": \"PT2M24S\"}, {\"titleId\": \"PPSA11419_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:22:56.790000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:28:37.150000Z\", \"playDuration\": \"PT5M36S\"}, {\"titleId\": \"PPSA11418_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:19:35.380000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:22:54.640000Z\", \"playDuration\": \"PT3M12S\"}, {\"titleId\": \"CUSA38188_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:16:32.510000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:19:33.330000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA38187_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:12:36.340000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:16:30.430000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA14143_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:53:36.000000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:12:18.230000Z\", \"playDuration\": \"PT18M31S\"}, {\"titleId\": \"PPSA12240_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:47:17.570000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:49:37.300000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"PPSA12239_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:44:51.870000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:47:15.430000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA39165_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:41:40.510000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:44:49.580000Z\", \"playDuration\": \"PT1M49S\"}, {\"titleId\": \"CUSA39166_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:39:35.070000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:41:38.560000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"CUSA39164_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:35:31.610000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:39:33.120000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"PPSA04828_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-31T14:43:41.510000Z\", \"lastPlayedDateTime\": \"2023-05-31T16:18:11.010000Z\", \"playDuration\": \"PT1H34M4S\"}, {\"titleId\": \"CUSA29772_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-31T07:11:48.340000Z\", \"lastPlayedDateTime\": \"2023-05-31T14:43:38.670000Z\", \"playDuration\": \"PT3H59M3S\"}, {\"titleId\": \"PPSA13888_00\", \"name\": \"Teslagrad Remastered\", \"localizedName\": \"Teslagrad Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007403, \"titleIds\": [\"CUSA40876_00\", \"CUSA40877_00\", \"PPSA13888_00\", \"PPSA13887_00\"], \"name\": \"Teslagrad Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Teslagrad Remastered\", \"uk-UA\": \"Teslagrad Remastered\", \"de-DE\": \"Teslagrad Remastered\", \"en-US\": \"Teslagrad Remastered\", \"ko-KR\": \"\\ud14c\\uc2ac\\ub77c\\uadf8\\ub77c\\ub4dc \\ub9ac\\ub9c8\\uc2a4\\ud130\\ub4dc (Teslagrad Remastered)\", \"pt-BR\": \"Teslagrad Remastered\", \"es-ES\": \"Teslagrad Remastered\", \"ar-AE\": \"Teslagrad Remastered\", \"no-NO\": \"Teslagrad Remastered\", \"fr-CA\": \"Teslagrad Remastered\", \"it-IT\": \"Teslagrad Remastered\", \"pl-PL\": \"Teslagrad Remastered\", \"ru-RU\": \"Teslagrad Remastered\", \"zh-Hans\": \"Teslagrad Remastered\", \"nl-NL\": \"Teslagrad Remastered\", \"pt-PT\": \"Teslagrad Remastered\", \"zh-Hant\": \"Teslagrad Remastered\", \"sv-SE\": \"Teslagrad Remastered\", \"da-DK\": \"Teslagrad Remastered\", \"tr-TR\": \"Teslagrad Remastered\", \"fr-FR\": \"Teslagrad Remastered\", \"en-GB\": \"Teslagrad Remastered\", \"es-419\": \"Teslagrad Remastered\", \"ja-JP\": \"Teslagrad Remastered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T08:51:41.490000Z\", \"lastPlayedDateTime\": \"2023-05-31T06:54:55.860000Z\", \"playDuration\": \"PT2H40M16S\"}, {\"titleId\": \"CUSA40877_00\", \"name\": \"Teslagrad Remastered\", \"localizedName\": \"Teslagrad Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007403, \"titleIds\": [\"CUSA40876_00\", \"CUSA40877_00\", \"PPSA13888_00\", \"PPSA13887_00\"], \"name\": \"Teslagrad Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Teslagrad Remastered\", \"uk-UA\": \"Teslagrad Remastered\", \"de-DE\": \"Teslagrad Remastered\", \"en-US\": \"Teslagrad Remastered\", \"ko-KR\": \"\\ud14c\\uc2ac\\ub77c\\uadf8\\ub77c\\ub4dc \\ub9ac\\ub9c8\\uc2a4\\ud130\\ub4dc (Teslagrad Remastered)\", \"pt-BR\": \"Teslagrad Remastered\", \"es-ES\": \"Teslagrad Remastered\", \"ar-AE\": \"Teslagrad Remastered\", \"no-NO\": \"Teslagrad Remastered\", \"fr-CA\": \"Teslagrad Remastered\", \"it-IT\": \"Teslagrad Remastered\", \"pl-PL\": \"Teslagrad Remastered\", \"ru-RU\": \"Teslagrad Remastered\", \"zh-Hans\": \"Teslagrad Remastered\", \"nl-NL\": \"Teslagrad Remastered\", \"pt-PT\": \"Teslagrad Remastered\", \"zh-Hant\": \"Teslagrad Remastered\", \"sv-SE\": \"Teslagrad Remastered\", \"da-DK\": \"Teslagrad Remastered\", \"tr-TR\": \"Teslagrad Remastered\", \"fr-FR\": \"Teslagrad Remastered\", \"en-GB\": \"Teslagrad Remastered\", \"es-419\": \"Teslagrad Remastered\", \"ja-JP\": \"Teslagrad Remastered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T06:07:20.690000Z\", \"lastPlayedDateTime\": \"2023-05-31T05:42:54.500000Z\", \"playDuration\": \"PT4H18M57S\"}, {\"titleId\": \"PPSA09803_00\", \"name\": \"GRIS\", \"localizedName\": \"GRIS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 234650, \"titleIds\": [\"CUSA16703_00\", \"PPSA09803_00\", \"PPSA09804_00\", \"CUSA16694_00\"], \"name\": \"GRIS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a1fjw5n0WpBfBSjLGpBZHd5Y.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/c38DvA26vUkMT0SXB38tESNS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/k5m7YQ0uOlwpqSYe5XoZ7aJX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/TUcdStV7dVvBP18WwB3OJL1R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1323/YOZxVAwYhvlkZU2IXlSBW3B8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/PMjvy3y1p6gkPsBwCUuaFnfv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/NLFpV4A42ZNG8RT14Ae38Swv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/aTukDQABvbBuCl2ZJKsuZtHs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/QiKJsy96ssAEum73ziUCHwFN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/VaIX0d6v82ZWDg1tPgztsYyW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/74SmglFHaJ0jPdA067tma21H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/9tTlr4KlHtVFpOUe8LU621pw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/95p5Zwxf9FWOStkNxr3QLnhQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/7FMEvLKpR5Al01wPy0bCKuTs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a4zZWdkvr5ElfjOPp1SLqtye.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GRIS\", \"uk-UA\": \"GRIS\", \"de-DE\": \"GRIS\", \"en-US\": \"GRIS\", \"ko-KR\": \"GRIS\", \"pt-BR\": \"GRIS\", \"es-ES\": \"GRIS\", \"ar-AE\": \"GRIS\", \"no-NO\": \"GRIS\", \"fr-CA\": \"GRIS\", \"it-IT\": \"GRIS\", \"pl-PL\": \"GRIS\", \"ru-RU\": \"GRIS\", \"zh-Hans\": \"GRIS\", \"nl-NL\": \"GRIS\", \"pt-PT\": \"GRIS\", \"zh-Hant\": \"GRIS\", \"sv-SE\": \"GRIS\", \"da-DK\": \"GRIS\", \"tr-TR\": \"GRIS\", \"fr-FR\": \"GRIS\", \"en-GB\": \"GRIS\", \"es-419\": \"GRIS\", \"ja-JP\": \"GRIS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a1fjw5n0WpBfBSjLGpBZHd5Y.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/c38DvA26vUkMT0SXB38tESNS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/k5m7YQ0uOlwpqSYe5XoZ7aJX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/TUcdStV7dVvBP18WwB3OJL1R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1323/YOZxVAwYhvlkZU2IXlSBW3B8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/PMjvy3y1p6gkPsBwCUuaFnfv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/NLFpV4A42ZNG8RT14Ae38Swv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/aTukDQABvbBuCl2ZJKsuZtHs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/QiKJsy96ssAEum73ziUCHwFN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/VaIX0d6v82ZWDg1tPgztsYyW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/74SmglFHaJ0jPdA067tma21H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/9tTlr4KlHtVFpOUe8LU621pw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/95p5Zwxf9FWOStkNxr3QLnhQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/7FMEvLKpR5Al01wPy0bCKuTs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a4zZWdkvr5ElfjOPp1SLqtye.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T14:11:41.200000Z\", \"lastPlayedDateTime\": \"2023-05-31T02:26:13.920000Z\", \"playDuration\": \"PT4H39M27S\"}, {\"titleId\": \"PPSA13706_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T04:28:05.650000Z\", \"lastPlayedDateTime\": \"2023-05-30T06:01:27.300000Z\", \"playDuration\": \"PT1H33M2S\"}, {\"titleId\": \"PPSA13707_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T02:02:06.360000Z\", \"lastPlayedDateTime\": \"2023-05-30T04:28:03.500000Z\", \"playDuration\": \"PT2H22M37S\"}, {\"titleId\": \"CUSA40645_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T14:25:07.090000Z\", \"lastPlayedDateTime\": \"2023-05-29T17:09:44.130000Z\", \"playDuration\": \"PT2H40M26S\"}, {\"titleId\": \"CUSA40644_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T10:42:33.260000Z\", \"lastPlayedDateTime\": \"2023-05-29T14:25:04.820000Z\", \"playDuration\": \"PT3H30M52S\"}, {\"titleId\": \"CUSA31152_00\", \"name\": \"Meet Your Maker\", \"localizedName\": \"Meet Your Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 8, \"concept\": {\"id\": 10004068, \"titleIds\": [\"CUSA31154_00\", \"CUSA31152_00\", \"CUSA44079_00\", \"CUSA31153_00\", \"CUSA43042_00\", \"CUSA31151_00\", \"PPSA05722_00\", \"PPSA05723_00\"], \"name\": \"Meet Your Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"STRATEGY\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meet Your Maker\", \"uk-UA\": \"Meet Your Maker\", \"de-DE\": \"Meet Your Maker\", \"en-US\": \"Meet Your Maker\", \"ko-KR\": \"Meet Your Maker\", \"pt-BR\": \"Meet Your Maker\", \"es-ES\": \"Meet Your Maker\", \"ar-AE\": \"Meet Your Maker\", \"no-NO\": \"Meet Your Maker\", \"fr-CA\": \"Meet Your Maker\", \"it-IT\": \"Meet Your Maker\", \"pl-PL\": \"Meet Your Maker\", \"ru-RU\": \"Meet Your Maker\", \"zh-Hans\": \"Meet Your Maker\", \"nl-NL\": \"Meet Your Maker\", \"pt-PT\": \"Meet Your Maker\", \"zh-Hant\": \"Meet Your Maker\", \"sv-SE\": \"Meet Your Maker\", \"da-DK\": \"Meet Your Maker\", \"tr-TR\": \"Meet Your Maker\", \"fr-FR\": \"Meet Your Maker\", \"en-GB\": \"Meet Your Maker\", \"es-419\": \"Meet Your Maker\", \"ja-JP\": \"Meet Your Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-06T16:29:06.390000Z\", \"lastPlayedDateTime\": \"2023-05-29T10:18:33.240000Z\", \"playDuration\": \"PT31M28S\"}, {\"titleId\": \"PPSA05723_00\", \"name\": \"Meet Your Maker\", \"localizedName\": \"Meet Your Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 20, \"concept\": {\"id\": 10004068, \"titleIds\": [\"CUSA31154_00\", \"CUSA31152_00\", \"CUSA44079_00\", \"CUSA31153_00\", \"CUSA43042_00\", \"CUSA31151_00\", \"PPSA05722_00\", \"PPSA05723_00\"], \"name\": \"Meet Your Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"STRATEGY\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meet Your Maker\", \"uk-UA\": \"Meet Your Maker\", \"de-DE\": \"Meet Your Maker\", \"en-US\": \"Meet Your Maker\", \"ko-KR\": \"Meet Your Maker\", \"pt-BR\": \"Meet Your Maker\", \"es-ES\": \"Meet Your Maker\", \"ar-AE\": \"Meet Your Maker\", \"no-NO\": \"Meet Your Maker\", \"fr-CA\": \"Meet Your Maker\", \"it-IT\": \"Meet Your Maker\", \"pl-PL\": \"Meet Your Maker\", \"ru-RU\": \"Meet Your Maker\", \"zh-Hans\": \"Meet Your Maker\", \"nl-NL\": \"Meet Your Maker\", \"pt-PT\": \"Meet Your Maker\", \"zh-Hant\": \"Meet Your Maker\", \"sv-SE\": \"Meet Your Maker\", \"da-DK\": \"Meet Your Maker\", \"tr-TR\": \"Meet Your Maker\", \"fr-FR\": \"Meet Your Maker\", \"en-GB\": \"Meet Your Maker\", \"es-419\": \"Meet Your Maker\", \"ja-JP\": \"Meet Your Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-06T12:19:06.210000Z\", \"lastPlayedDateTime\": \"2023-05-29T10:14:45.890000Z\", \"playDuration\": \"PT15H48M22S\"}, {\"titleId\": \"CUSA43588_00\", \"name\": \"Santas Monster Shootout\", \"localizedName\": \"Santas Monster Shootout\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008471, \"titleIds\": [\"CUSA43588_00\", \"CUSA43587_00\"], \"name\": \"Santas Monster Shootout\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Santas Monster Shootout\", \"uk-UA\": \"Santas Monster Shootout\", \"de-DE\": \"Santas Monster Shootout\", \"en-US\": \"Santas Monster Shootout\", \"pt-BR\": \"Santas Monster Shootout\", \"es-ES\": \"Santas Monster Shootout\", \"ar-AE\": \"Santas Monster Shootout\", \"no-NO\": \"Santas Monster Shootout\", \"fr-CA\": \"Santas Monster Shootout\", \"it-IT\": \"Santas Monster Shootout\", \"pl-PL\": \"Santas Monster Shootout\", \"ru-RU\": \"Santas Monster Shootout\", \"nl-NL\": \"Santas Monster Shootout\", \"pt-PT\": \"Santas Monster Shootout\", \"sv-SE\": \"Santas Monster Shootout\", \"da-DK\": \"Santas Monster Shootout\", \"tr-TR\": \"Santas Monster Shootout\", \"fr-FR\": \"Santas Monster Shootout\", \"en-GB\": \"Santas Monster Shootout\", \"es-419\": \"Santas Monster Shootout\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T08:06:20.750000Z\", \"lastPlayedDateTime\": \"2023-05-29T09:14:06.140000Z\", \"playDuration\": \"PT1H7M40S\"}, {\"titleId\": \"CUSA43587_00\", \"name\": \"Santas Monster Shootout\", \"localizedName\": \"Santas Monster Shootout\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008471, \"titleIds\": [\"CUSA43588_00\", \"CUSA43587_00\"], \"name\": \"Santas Monster Shootout\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Santas Monster Shootout\", \"uk-UA\": \"Santas Monster Shootout\", \"de-DE\": \"Santas Monster Shootout\", \"en-US\": \"Santas Monster Shootout\", \"pt-BR\": \"Santas Monster Shootout\", \"es-ES\": \"Santas Monster Shootout\", \"ar-AE\": \"Santas Monster Shootout\", \"no-NO\": \"Santas Monster Shootout\", \"fr-CA\": \"Santas Monster Shootout\", \"it-IT\": \"Santas Monster Shootout\", \"pl-PL\": \"Santas Monster Shootout\", \"ru-RU\": \"Santas Monster Shootout\", \"nl-NL\": \"Santas Monster Shootout\", \"pt-PT\": \"Santas Monster Shootout\", \"sv-SE\": \"Santas Monster Shootout\", \"da-DK\": \"Santas Monster Shootout\", \"tr-TR\": \"Santas Monster Shootout\", \"fr-FR\": \"Santas Monster Shootout\", \"en-GB\": \"Santas Monster Shootout\", \"es-419\": \"Santas Monster Shootout\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T06:18:45.120000Z\", \"lastPlayedDateTime\": \"2023-05-29T08:06:19.320000Z\", \"playDuration\": \"PT1H44M40S\"}, {\"titleId\": \"PPSA14132_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:58:02.560000Z\", \"lastPlayedDateTime\": \"2023-05-28T15:11:49.740000Z\", \"playDuration\": \"PT43M46S\"}, {\"titleId\": \"PPSA14133_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T09:06:33.520000Z\", \"lastPlayedDateTime\": \"2023-05-28T14:28:13.090000Z\", \"playDuration\": \"PT49M22S\"}, {\"titleId\": \"CUSA41116_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:57:13.310000Z\", \"lastPlayedDateTime\": \"2023-05-28T13:15:08.420000Z\", \"playDuration\": \"PT1H13S\"}, {\"titleId\": \"CUSA41117_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-05-28T12:11:19.930000Z\", \"playDuration\": \"PT1H27M53S\"}, {\"titleId\": \"CUSA40170_00\", \"name\": \"Fuyukara Kururu\", \"localizedName\": \"Fuyukara Kururu\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007105, \"titleIds\": [\"CUSA40170_00\", \"CUSA40171_00\"], \"name\": \"Fuyukara Kururu\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/f22fbe469b275096b051ed3204a38cf88b91e0c8b7e664eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/448f28bb3acedad7369e7c879cd118762e47a360bbe700ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/747711a51a26943e7793c3af5e58e03a643290bf9bfc56fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/235e7c01b0aa718f6a396bb6d847b40c95a2b8a9e3e2d4eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/efd95f65990f89ad898b9f49f989fa3753e8b3e135bfbaeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/45f747d86a120da542aa1343aa92510acc18da3a70da5584.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/df494eb3e6ccb0fd474e042db028c62e9e6a3653f3a5c537.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/dd0a262298b944798979d96ae4819826559122c58fc7b7c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/4b484da3a5ebe4878eb3ccef85c37c8745dba146df27387d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/406241d3683adab92291339f25b162a087ede91522e6bfdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Fuyukara Kururu\", \"en-GB\": \"Fuyukara Kururu\", \"ja-JP\": \"\\u3075\\u3086\\u304b\\u3089\\u3001\\u304f\\u308b\\u308b\\u3002\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/f22fbe469b275096b051ed3204a38cf88b91e0c8b7e664eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/448f28bb3acedad7369e7c879cd118762e47a360bbe700ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/747711a51a26943e7793c3af5e58e03a643290bf9bfc56fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/235e7c01b0aa718f6a396bb6d847b40c95a2b8a9e3e2d4eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/efd95f65990f89ad898b9f49f989fa3753e8b3e135bfbaeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/45f747d86a120da542aa1343aa92510acc18da3a70da5584.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/df494eb3e6ccb0fd474e042db028c62e9e6a3653f3a5c537.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/dd0a262298b944798979d96ae4819826559122c58fc7b7c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/4b484da3a5ebe4878eb3ccef85c37c8745dba146df27387d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/406241d3683adab92291339f25b162a087ede91522e6bfdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T10:14:28.710000Z\", \"lastPlayedDateTime\": \"2023-05-28T10:23:27.640000Z\", \"playDuration\": \"PT8M55S\"}, {\"titleId\": \"CUSA26390_00\", \"name\": \"Maze\", \"localizedName\": \"Maze\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 235150, \"titleIds\": [\"CUSA26390_00\", \"CUSA17893_00\", \"CUSA17969_00\"], \"name\": \"Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/1QXeqN6SvRy7iWB3rRs4R2Ti.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/3XWnL9zcuTbWXikvzHRhaXwG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/A4b4tHjfW5urQssQTfHhIxJz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/djIbzCssbBy6uqlZnNBxaS0r.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307X1HuSALer1SqkM2aeaapakv8rMLYgbv2dPdyz02rMVYGz1X9dQTcU632iAzRuJcrwiRTfnPatuq9pXwAEj-pGkPOOh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307LlI3yVUTkoIdloTf4eTWrSD92Ezz3Vfd6UB2WkRiGOA6fEblOSNW2hSa7Wg2CJ31DQkumZ5dSDxWCn7hNd6hzIC1fp_.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Lh1i5Ad3cZcD4sMPuR5rkyZFC2YtuMBJ9g8i3qD2PvQnIxsyac5O3nLs9Atr_tYfHnDKSMG59zFQg2X6DJYw6YZSsWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lTEiVtd2k7Ox1GeKq778LxYptfGLfwTeONS39rhdQ0sqbx6HuCe5q3FhMAPWMuzdrAGj2q1SStfdx2bIv3GNishnRqv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307tL0iwrXrGB_wwb2L-Don6Iz8oEcQX8KIPQLn1g3lqJApuU1UQYaq7EJTgMzqHlwONp_J710GEZHHTestvqHJXQiRzja.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Vo67UtI3zScY16ytzPzJ0LYyKow77R5k3XeIUVX1i20aPzITuGhhXoVXlQCfSV_Icwy3rdWHymOp_Kz0lz4eJ8ZfmyB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307KKsSW0cgA2j0K-xArfIBSy0PeI3XPbv4I6DY7OT25V0dZHnW28KM4FNe_Lio1O99ogZeziuhKOtIDSuxA1gf8QEaqse.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073BTtlvIx39jOhxI2ijstXEy4S_M2JKPV2xuup1dCEIoYNzSP3BhwShosh4-3A7h4TIkMQ1F9OdLaV5IL20v6HgfVJTw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Maze\", \"uk-UA\": \"Maze\", \"de-DE\": \"Maze\", \"en-US\": \"Maze\", \"pt-BR\": \"Maze\", \"es-ES\": \"Maze\", \"ar-AE\": \"Maze\", \"no-NO\": \"Maze\", \"fr-CA\": \"Maze\", \"it-IT\": \"Maze\", \"pl-PL\": \"Maze\", \"ru-RU\": \"Maze\", \"nl-NL\": \"Maze\", \"pt-PT\": \"Maze\", \"sv-SE\": \"Maze\", \"da-DK\": \"Maze\", \"tr-TR\": \"Maze\", \"fr-FR\": \"Maze\", \"en-GB\": \"Maze\", \"es-419\": \"Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/1QXeqN6SvRy7iWB3rRs4R2Ti.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/3XWnL9zcuTbWXikvzHRhaXwG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/A4b4tHjfW5urQssQTfHhIxJz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/djIbzCssbBy6uqlZnNBxaS0r.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307X1HuSALer1SqkM2aeaapakv8rMLYgbv2dPdyz02rMVYGz1X9dQTcU632iAzRuJcrwiRTfnPatuq9pXwAEj-pGkPOOh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307LlI3yVUTkoIdloTf4eTWrSD92Ezz3Vfd6UB2WkRiGOA6fEblOSNW2hSa7Wg2CJ31DQkumZ5dSDxWCn7hNd6hzIC1fp_.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Lh1i5Ad3cZcD4sMPuR5rkyZFC2YtuMBJ9g8i3qD2PvQnIxsyac5O3nLs9Atr_tYfHnDKSMG59zFQg2X6DJYw6YZSsWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lTEiVtd2k7Ox1GeKq778LxYptfGLfwTeONS39rhdQ0sqbx6HuCe5q3FhMAPWMuzdrAGj2q1SStfdx2bIv3GNishnRqv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307tL0iwrXrGB_wwb2L-Don6Iz8oEcQX8KIPQLn1g3lqJApuU1UQYaq7EJTgMzqHlwONp_J710GEZHHTestvqHJXQiRzja.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Vo67UtI3zScY16ytzPzJ0LYyKow77R5k3XeIUVX1i20aPzITuGhhXoVXlQCfSV_Icwy3rdWHymOp_Kz0lz4eJ8ZfmyB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307KKsSW0cgA2j0K-xArfIBSy0PeI3XPbv4I6DY7OT25V0dZHnW28KM4FNe_Lio1O99ogZeziuhKOtIDSuxA1gf8QEaqse.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073BTtlvIx39jOhxI2ijstXEy4S_M2JKPV2xuup1dCEIoYNzSP3BhwShosh4-3A7h4TIkMQ1F9OdLaV5IL20v6HgfVJTw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:05:19.390000Z\", \"lastPlayedDateTime\": \"2023-05-28T08:46:50.010000Z\", \"playDuration\": \"PT41M18S\"}, {\"titleId\": \"PPSA04256_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:55:07.540000Z\", \"lastPlayedDateTime\": \"2023-05-28T08:02:45.190000Z\", \"playDuration\": \"PT7M22S\"}, {\"titleId\": \"PPSA04247_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:43:38.620000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:55:05.410000Z\", \"playDuration\": \"PT11M11S\"}, {\"titleId\": \"CUSA28115_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:36:00.220000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:43:36.280000Z\", \"playDuration\": \"PT7M29S\"}, {\"titleId\": \"CUSA28116_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:09:47.550000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:35:57.670000Z\", \"playDuration\": \"PT19M21S\"}, {\"titleId\": \"PPSA08128_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T05:27:11.210000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:05:03.000000Z\", \"playDuration\": \"PT1H16M5S\"}], \"nextOffset\": 800, \"previousOffset\": 599, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"CUSA35888_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:22:20.110000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:28:23.530000Z\", \"playDuration\": \"PT5M4S\"}, {\"titleId\": \"CUSA35887_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:18:24.460000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:22:17.820000Z\", \"playDuration\": \"PT3M42S\"}, {\"titleId\": \"CUSA35890_00\", \"name\": \"CATE P\", \"localizedName\": \"CATE P\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005872, \"titleIds\": [\"CUSA35887_00\", \"CUSA35888_00\", \"CUSA35889_00\", \"CUSA35890_00\"], \"name\": \"CATE P\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"CATE P\", \"uk-UA\": \"CATE P\", \"de-DE\": \"CATE P\", \"en-US\": \"CATE P\", \"ko-KR\": \"CATE P\", \"pt-BR\": \"CATE P\", \"es-ES\": \"CATE P\", \"ar-AE\": \"CATE P\", \"no-NO\": \"CATE P\", \"fr-CA\": \"CATE P\", \"it-IT\": \"CATE P\", \"pl-PL\": \"CATE P\", \"ru-RU\": \"CATE P\", \"zh-Hans\": \"CATE P\", \"nl-NL\": \"CATE P\", \"pt-PT\": \"CATE P\", \"zh-Hant\": \"CATE P\", \"sv-SE\": \"CATE P\", \"da-DK\": \"CATE P\", \"tr-TR\": \"CATE P\", \"fr-FR\": \"CATE P\", \"en-GB\": \"CATE P\", \"es-419\": \"CATE P\", \"ja-JP\": \"CATE P\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3116/2496ba793af7b3123d0b4da405a81936d57ada35f8b5c782.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/9Ij9Hz7ZTagIliPuWbQt0fsz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/yQu3lhOeynbAIEVYdfTNsMMa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/bo7ncXogyoFJP42ONBmIQYSn.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2222/7a1d11fb634783262f145ce707eecea07a694583d260c785.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T11:13:32.170000Z\", \"lastPlayedDateTime\": \"2023-06-25T11:18:22.250000Z\", \"playDuration\": \"PT4M11S\"}, {\"titleId\": \"PPSA11350_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:01:46.560000Z\", \"lastPlayedDateTime\": \"2023-06-25T10:50:55.110000Z\", \"playDuration\": \"PT53S\"}, {\"titleId\": \"PPSA11349_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T09:00:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:01:43.910000Z\", \"playDuration\": \"PT48S\"}, {\"titleId\": \"PPSA16939_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:57:14.440000Z\", \"lastPlayedDateTime\": \"2023-06-25T09:00:46.320000Z\", \"playDuration\": \"PT3M21S\"}, {\"titleId\": \"PPSA16942_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:53:50.870000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:57:11.560000Z\", \"playDuration\": \"PT3M7S\"}, {\"titleId\": \"PPSA16940_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:49:17.750000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:53:47.970000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"CUSA43807_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-25T08:27:04.350000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:49:14.300000Z\", \"playDuration\": \"PT4M31S\"}, {\"titleId\": \"PPSA08030_00\", \"name\": \"FINAL FANTASY XVI\", \"localizedName\": \"FINAL FANTASY XVI\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 10, \"concept\": {\"id\": 10002100, \"titleIds\": [\"PPSA08030_00\", \"PPSA13801_00\", \"PPSA13802_00\", \"PPSA13803_00\", \"PPSA13804_00\", \"PPSA10666_00\", \"PPSA10664_00\", \"PPSA10665_00\"], \"name\": \"FINAL FANTASY XVI\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"FINAL FANTASY XVI\", \"uk-UA\": \"FINAL FANTASY XVI\", \"de-DE\": \"FINAL FANTASY XVI\", \"en-US\": \"FINAL FANTASY XVI\", \"ko-KR\": \"FINAL FANTASY XVI\", \"pt-BR\": \"FINAL FANTASY XVI\", \"es-ES\": \"FINAL FANTASY XVI\", \"ar-AE\": \"FINAL FANTASY XVI\", \"no-NO\": \"FINAL FANTASY XVI\", \"fr-CA\": \"FINAL FANTASY XVI\", \"it-IT\": \"FINAL FANTASY XVI\", \"pl-PL\": \"FINAL FANTASY XVI\", \"ru-RU\": \"FINAL FANTASY XVI\", \"zh-Hans\": \"\\u6700\\u7ec8\\u5e7b\\u60f3 16\", \"nl-NL\": \"FINAL FANTASY XVI\", \"pt-PT\": \"FINAL FANTASY XVI\", \"zh-Hant\": \"FINAL FANTASY XVI\", \"sv-SE\": \"FINAL FANTASY XVI\", \"da-DK\": \"FINAL FANTASY XVI\", \"tr-TR\": \"FINAL FANTASY XVI\", \"fr-FR\": \"FINAL FANTASY XVI\", \"en-GB\": \"FINAL FANTASY XVI\", \"es-419\": \"FINAL FANTASY XVI\", \"ja-JP\": \"FINAL FANTASY XVI\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/PTlrcDu9P5F1Lzh9QRc8jkZb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1007/M1j1kwGXMhbfA8OQo3r7wrMw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0912/neIbzwRRrmjPFlhrh7Cpcceq.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yPQHi9pITw5RwQnuQcY0262O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/5CH3M4vTNTICwikorBur1ZFH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/aGGEuZm6d6puO4yUzeUdmbGn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/wQfjGCEnNTcIWigycqGNzVCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/DdKEsRtoDFo5w08fzgnY1G2S.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/YHeNQQoTn36UEQBHNx6i4FLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/nEJPzt47jUkXdG4KiEgXtt7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/sosOjVqO8DuQvLyB9DjORs9I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/RUxU074gsqYc2cc5S8iJX0zU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/65BMjpL2hf1N95KJ7yDhvE8p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0606/D3qLKvqcDho4k5GwM6HjhC9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3007/lgFVhRm5BfoX02pRUt3lSmLV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T05:05:01.000000Z\", \"lastPlayedDateTime\": \"2023-06-25T08:26:58.710000Z\", \"playDuration\": \"PT45H4M10S\"}, {\"titleId\": \"CUSA25953_00\", \"name\": \"Let's Cook Together\", \"localizedName\": \"Let's Cook Together\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 19, \"concept\": {\"id\": 10002052, \"titleIds\": [\"CUSA25954_00\", \"CUSA25953_00\"], \"name\": \"Let's Cook Together\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Cook Together\", \"uk-UA\": \"Let's Cook Together\", \"de-DE\": \"Let's Cook Together\", \"en-US\": \"Let's Cook Together\", \"ko-KR\": \"Let's Cook Together\", \"pt-BR\": \"Let's Cook Together\", \"es-ES\": \"Let's Cook Together\", \"ar-AE\": \"Let's Cook Together\", \"no-NO\": \"Let's Cook Together\", \"fr-CA\": \"Let's Cook Together\", \"it-IT\": \"Let's Cook Together\", \"pl-PL\": \"Let's Cook Together\", \"ru-RU\": \"Let's Cook Together\", \"zh-Hans\": \"Let's Cook Together\", \"nl-NL\": \"Let's Cook Together\", \"pt-PT\": \"Let's Cook Together\", \"zh-Hant\": \"Let's Cook Together\", \"sv-SE\": \"Let's Cook Together\", \"da-DK\": \"Let's Cook Together\", \"tr-TR\": \"Let's Cook Together\", \"fr-FR\": \"Let's Cook Together\", \"en-GB\": \"Let's Cook Together\", \"es-419\": \"Let's Cook Together\", \"ja-JP\": \"Let's Cook Together\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ZyxgiPoRutVQS8dSW0q70Jwy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/LJPQnDOSiUtNFSPUq8mycJpz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/1211/KtMoS2LSQyIbrLqqeXbfBOHV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/ORDRtrrCGszVZj17dtaFLhrQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/nVPIpuGw21OWe6aPYdUeV5Io.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/MgRaYkPd2YsQLJRMrK7xbs3n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/LMbR6TutE8N7kpQh9uhNri1i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/zGMhkgBokHS7xNZ6Tlq60nKs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/0402/qyQMbZfAz09pLFB4AjoiyyCs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/t80ClBUvfsyH1dMsXBsByIl0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/AVBp3LK87uCFCxLwggdrh8AV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/KWs1scBCIc9uerJpyCivxNR0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/fLuCyIVDex6IXzw2q7SI61Ug.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/2218/lidkkgzEDFDwFHviGSyOEoTP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/2915/kVI21poY0ttB6ojSxP76LVKM.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-08-27T06:59:58.430000Z\", \"lastPlayedDateTime\": \"2023-06-25T02:03:08.710000Z\", \"playDuration\": \"PT5H51M12S\"}, {\"titleId\": \"CUSA38091_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:17:36.410000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:18:37.650000Z\", \"playDuration\": \"PT58S\"}, {\"titleId\": \"CUSA38092_00\", \"name\": \"Match Master\", \"localizedName\": \"Match Master\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006550, \"titleIds\": [\"PPSA11349_00\", \"PPSA11350_00\", \"CUSA38092_00\", \"PPSA11347_00\", \"CUSA38090_00\", \"CUSA38091_00\", \"CUSA38089_00\", \"PPSA11346_00\"], \"name\": \"Match Master\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Match Master\", \"uk-UA\": \"Match Master\", \"de-DE\": \"Match Master\", \"en-US\": \"Match Master\", \"ko-KR\": \"Match Master\", \"pt-BR\": \"Match Master\", \"es-ES\": \"Match Master\", \"ar-AE\": \"Match Master\", \"no-NO\": \"Match Master\", \"fr-CA\": \"Match Master\", \"it-IT\": \"Match Master\", \"pl-PL\": \"Match Master\", \"ru-RU\": \"Match Master\", \"zh-Hans\": \"Match Master\", \"nl-NL\": \"Match Master\", \"pt-PT\": \"Match Master\", \"zh-Hant\": \"Match Master\", \"sv-SE\": \"Match Master\", \"da-DK\": \"Match Master\", \"tr-TR\": \"Match Master\", \"fr-FR\": \"Match Master\", \"en-GB\": \"Match Master\", \"es-419\": \"Match Master\", \"ja-JP\": \"Match Master\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/c2TIU8C3ThP3509UqjBG9daD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/eMN5QXS9AIK6ygaShD6JuoX9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/J7cVYuesXnqwSveS6aVFgjHr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/fa7aPdiZn62HLTl6jpHcObRN.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/5eAEHUy8ND8mYjCuVmXd4n0H.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/O3m76aN2IWMwFNKomm0M7gAe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1922/bW8vghdNwmFfcsfnXflEmd4n.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-23T01:16:14.430000Z\", \"lastPlayedDateTime\": \"2023-06-23T01:17:34.510000Z\", \"playDuration\": \"PT1M13S\"}, {\"titleId\": \"CUSA42528_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T03:32:10.970000Z\", \"lastPlayedDateTime\": \"2023-06-22T05:04:45.550000Z\", \"playDuration\": \"PT1H31M58S\"}, {\"titleId\": \"CUSA42526_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-22T00:58:36.860000Z\", \"lastPlayedDateTime\": \"2023-06-22T03:32:06.830000Z\", \"playDuration\": \"PT1H50M3S\"}, {\"titleId\": \"CUSA42525_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:54:53.690000Z\", \"lastPlayedDateTime\": \"2023-06-21T13:35:30.080000Z\", \"playDuration\": \"PT1H40M16S\"}, {\"titleId\": \"CUSA42592_00\", \"name\": \"Balloon Girl\", \"localizedName\": \"Balloon Girl\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007891, \"titleIds\": [\"CUSA42593_00\", \"CUSA42592_00\", \"CUSA42594_00\", \"CUSA42591_00\"], \"name\": \"Balloon Girl\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Balloon Girl\", \"uk-UA\": \"Balloon Girl\", \"de-DE\": \"Balloon Girl\", \"en-US\": \"Balloon Girl\", \"ko-KR\": \"Balloon Girl\", \"pt-BR\": \"Balloon Girl\", \"es-ES\": \"Balloon Girl\", \"ar-AE\": \"Balloon Girl\", \"no-NO\": \"Balloon Girl\", \"fr-CA\": \"Balloon Girl\", \"it-IT\": \"Balloon Girl\", \"pl-PL\": \"Balloon Girl\", \"ru-RU\": \"Balloon Girl\", \"zh-Hans\": \"Balloon Girl\", \"nl-NL\": \"Balloon Girl\", \"pt-PT\": \"Balloon Girl\", \"zh-Hant\": \"Balloon Girl\", \"sv-SE\": \"Balloon Girl\", \"da-DK\": \"Balloon Girl\", \"tr-TR\": \"Balloon Girl\", \"fr-FR\": \"Balloon Girl\", \"en-GB\": \"Balloon Girl\", \"es-419\": \"Balloon Girl\", \"ja-JP\": \"Balloon Girl\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0410/77ad3a07aeb63a6710d3301a0dc4a20f75ed27aaa14d009b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0608/cd5af0d08f5029adbf7ba2a68ae7b6ecc6523e06605c75a8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/289f495809128cdd02bddd7257e36ec5a87f6f6f3fb72e7e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/58b07c71ad7e4cc9466cfe5efbe260d6750b27558fa894d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/341b2578b835c6711818252aeed5c77b7a9064f9cebd0be1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/a294b75c7006167931f5e95d764fbfcd81d439685c1e95a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1214/4a688398db454e16ed9740d0ed0bbf839152f6d1cea212b7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:27:02.140000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:48:03.340000Z\", \"playDuration\": \"PT20M54S\"}, {\"titleId\": \"PPSA08558_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T11:08:05.850000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:23:32.170000Z\", \"playDuration\": \"PT15M22S\"}, {\"titleId\": \"PPSA08559_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:51:25.460000Z\", \"lastPlayedDateTime\": \"2023-06-21T11:08:04.080000Z\", \"playDuration\": \"PT16M9S\"}, {\"titleId\": \"CUSA34667_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:33:21.910000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:49:54.160000Z\", \"playDuration\": \"PT16M29S\"}, {\"titleId\": \"CUSA34668_00\", \"name\": \"Robolt\", \"localizedName\": \"Robolt\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005448, \"titleIds\": [\"PPSA08558_00\", \"PPSA08559_00\", \"CUSA34668_00\", \"CUSA34667_00\"], \"name\": \"Robolt\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robolt\", \"uk-UA\": \"Robolt\", \"de-DE\": \"Robolt\", \"en-US\": \"Robolt\", \"ko-KR\": \"Robolt\", \"pt-BR\": \"Robolt\", \"es-ES\": \"Robolt\", \"ar-AE\": \"Robolt\", \"no-NO\": \"Robolt\", \"fr-CA\": \"Robolt\", \"it-IT\": \"Robolt\", \"pl-PL\": \"Robolt\", \"ru-RU\": \"Robolt\", \"zh-Hans\": \"Robolt\", \"nl-NL\": \"Robolt\", \"pt-PT\": \"Robolt\", \"zh-Hant\": \"Robolt\", \"sv-SE\": \"Robolt\", \"da-DK\": \"Robolt\", \"tr-TR\": \"Robolt\", \"fr-FR\": \"Robolt\", \"en-GB\": \"Robolt\", \"es-419\": \"Robolt\", \"ja-JP\": \"Robolt\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/db21a1ccf2517626a2031130ee15b1434341c7da3061103e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/dc5284ca7e6505133155c11407a793810aafc46f947651aa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a4812f7b75c8f1b71e57e0739b17797e5e744edf696d2f6d.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/1b3b3225d312d7e068551a62f786b10ddcaea613b7167b12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/b10229e51ae157524e6ee78a8fd25993c237bd31df432d59.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/f5b7085096358f1d2c5035a336b24d67d1cb78177b483e3a.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/53510d5ba3f9f4f7d25e678b8a606321fb59d68dff8b21cd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/a27e7d2cc4de80aab3ba66474ad6947708e1a4edf889e2d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/8e0eb090eea01ae5b5b7d3328d688b76d48034b1cba54f5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/9c5859d4ee9b91b1c482be3a52479344f2e762762a40e734.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/0ae42a8d985cdc4cc73803b8f7d86b281f2c0c5a95a03a66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/87bbf6407b8d5941f428855a3ecacfc4ef5ab0547f6b61b7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/5b51d08e06a4e9693fe4ea4065e4db9a8ee64ba71f18a8b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/ff834d2d696db17a245c4bda492b6967b68882ce18bd08ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/992fe97d19c0fbcae8b79474c470f3489793571c979aa969.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0605/50fad3bcd0d2548140c7f71c3a73a8db73058a3db968fa1f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0705/d0c982b4752dc23e7f201ec1bbdaa95f159811fbae717360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T10:08:07.480000Z\", \"lastPlayedDateTime\": \"2023-06-21T10:33:20.380000Z\", \"playDuration\": \"PT24M19S\"}, {\"titleId\": \"PPSA13396_00\", \"name\": \"Living with Horses: My Horse Farm\", \"localizedName\": \"Living with Horses: My Horse Farm\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007183, \"titleIds\": [\"PPSA13396_00\", \"PPSA13397_00\"], \"name\": \"Living with Horses: My Horse Farm\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"FAMILY\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hevosel\\u00e4m\\u00e4\\u00e4: Oma hevostilani\", \"uk-UA\": \"\\u0416\\u0438\\u0442\\u0442\\u044f \\u0437 \\u043a\\u0456\\u043d\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u0456\\u043d\\u043d\\u0430 \\u0444\\u0435\\u0440\\u043c\\u0430\", \"de-DE\": \"Mein Reiterhof - Pferde, Turniere, Abenteuer\", \"en-US\": \"Living with Horses: My Horse Farm\", \"pt-BR\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"es-ES\": \"Vida entre caballos: mi granja equina\", \"ar-AE\": \"\\u0627\\u0644\\u0639\\u064a\\u0634 \\u0645\\u0639 \\u0627\\u0644\\u062e\\u064a\\u0648\\u0644: \\u0645\\u0632\\u0631\\u0639\\u0629 \\u062e\\u064a\\u0648\\u0644\\u064a\", \"no-NO\": \"Livet med hester: Min hesteg\\u00e5rd\", \"fr-CA\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"it-IT\": \"Una vita a cavallo: Il mio maneggio\", \"pl-PL\": \"\\u017bycie z ko\\u0144mi: Moja farma koni\", \"ru-RU\": \"\\u0416\\u0438\\u0437\\u043d\\u044c \\u0441 \\u043b\\u043e\\u0448\\u0430\\u0434\\u044c\\u043c\\u0438: \\u043c\\u043e\\u044f \\u043a\\u043e\\u043d\\u043d\\u0430\\u044f \\u0444\\u0435\\u0440\\u043c\\u0430\", \"nl-NL\": \"Leven met paarden: Mijn manege\", \"pt-PT\": \"Uma vida a cavalo: o meu est\\u00e1bulo\", \"sv-SE\": \"Leva med h\\u00e4star: Min h\\u00e4stg\\u00e5rd\", \"da-DK\": \"Livet med heste: Min hestefarm\", \"tr-TR\": \"Atlarla Ya\\u015famak: At \\u00c7iftli\\u011fim\", \"fr-FR\": \"Vivre avec des chevaux : mon \\u00e9levage de chevaux\", \"en-GB\": \"Living with Horses: My Horse Farm\", \"es-419\": \"Vida entre caballos: mi granja equina\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/8yg94fWxzNp9ZSO5dDRgYuMh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HilFpgTWbt8hVUaHLt1UV4Ib.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/er33lonl4EPpVGUIPZxB6DFt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/HYQY9rfJSwB41aBRJ180JE5V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/ud8swOsHUz6XbmZW92xQbdge.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RAiwCQaIFiB5V8kJgQirAuOf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/RYqHHUkJ9zTRSIFCC2guB14X.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/1IGMHG4rMt3TlhkSFEgGiP1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/c7T7W7G1hh00gdrfuDajB72A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/9dGUkWCsIunU5rIgtT0mNipx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/yLIvUFCjS8FSgMm6wwaGmWRS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/wTCcf63nQ8gliQzfXXMDFwsq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/7To8M1tQXRkd2gqZIYQGLqrC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0108/3erV0OPMC3CjwAMn7D5TlMTG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3012/3KIfj7Lod8cN4D0ovM3nNogU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T07:08:12.420000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:41:26.070000Z\", \"playDuration\": \"PT32M19S\"}, {\"titleId\": \"CUSA37885_00\", \"name\": \"Touchdown Pinball\", \"localizedName\": \"Touchdown Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004659, \"titleIds\": [\"CUSA37885_00\", \"CUSA37884_00\", \"PPSA06804_00\", \"PPSA06805_00\", \"PPSA07907_00\"], \"name\": \"Touchdown Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Touchdown Pinball\", \"uk-UA\": \"Touchdown Pinball\", \"de-DE\": \"Touchdown Pinball\", \"en-US\": \"Touchdown Pinball\", \"pt-BR\": \"Touchdown Pinball\", \"es-ES\": \"Touchdown Pinball\", \"ar-AE\": \"Touchdown Pinball\", \"no-NO\": \"Touchdown Pinball\", \"fr-CA\": \"Touchdown Pinball\", \"it-IT\": \"Touchdown Pinball\", \"pl-PL\": \"Touchdown Pinball\", \"ru-RU\": \"Touchdown Pinball\", \"nl-NL\": \"Touchdown Pinball\", \"pt-PT\": \"Touchdown Pinball\", \"sv-SE\": \"Touchdown Pinball\", \"da-DK\": \"Touchdown Pinball\", \"tr-TR\": \"Touchdown Pinball\", \"fr-FR\": \"Touchdown Pinball\", \"en-GB\": \"Touchdown Pinball\", \"es-419\": \"Touchdown Pinball\", \"ja-JP\": \"\\u30bf\\u30c3\\u30c1\\u30c0\\u30a6\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/mLwc3k42pyqYCeAlFOEsnojh.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/V0y6oPuBIYXmnQ2p9zJguNS6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/UOfI5kmUNv1R2y4HpeSFiVWz.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2809/pJ3fVqjQ8E0nLf9R3jKcQPb7.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/x5GEwh0xsyREbxloAWWestuC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ogzcgWmIaNoC7xunDdInpLH0.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/hgepxaxyDruK7nEJGFXRb2Hl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/eQKMf3O52mEa0U5uG9N8YHt5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/HyQjnIrIuU8bYRknxosvuy5f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/TmzLfHh1srdhFygUc8oa9wVx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/dkatdmZGLghqKRY01nDBDrTD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/grnsuGDMhww4s55N9rVoLd3I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/KlH0z0bOq624UJ7Kr537w19h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/ai8twBuKeL7ZXsj0lcGyyTY7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/E0dKKNFDbRJnUaXiF1njyVj2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/2712/4OaDyLPmQIpYvX0WOTxqRxvN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T06:17:35.670000Z\", \"lastPlayedDateTime\": \"2023-06-21T07:07:32.800000Z\", \"playDuration\": \"PT49M29S\"}, {\"titleId\": \"CUSA37883_00\", \"name\": \"Titans Pinball\", \"localizedName\": \"Titans Pinball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004803, \"titleIds\": [\"PPSA07100_00\", \"PPSA11148_00\", \"PPSA07101_00\", \"CUSA37882_00\", \"CUSA37883_00\"], \"name\": \"Titans Pinball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Titans Pinball\", \"uk-UA\": \"Titans Pinball\", \"de-DE\": \"Titans Pinball\", \"en-US\": \"Titans Pinball\", \"pt-BR\": \"Titans Pinball\", \"es-ES\": \"Titans Pinball\", \"ar-AE\": \"Titans Pinball\", \"no-NO\": \"Titans Pinball\", \"fr-CA\": \"Titans Pinball\", \"it-IT\": \"Titans Pinball\", \"pl-PL\": \"Titans Pinball\", \"ru-RU\": \"Titans Pinball\", \"nl-NL\": \"Titans Pinball\", \"pt-PT\": \"Titans Pinball\", \"sv-SE\": \"Titans Pinball\", \"da-DK\": \"Titans Pinball\", \"tr-TR\": \"Titans Pinball\", \"fr-FR\": \"Titans Pinball\", \"en-GB\": \"Titans Pinball\", \"es-419\": \"Titans Pinball\", \"ja-JP\": \"\\u30bf\\u30a4\\u30bf\\u30f3\\u30d4\\u30f3\\u30dc\\u30fc\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/xDOQeL80K9Ef5D6NylE7oXTv.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/HbuqkaziAnDfoT0oUpbK8Nwp.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/BRRqxDUabriF2aMBY5tczA8z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/11yVxpSoY3ibPwa1T642u7ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/gUncqm5lYdapyFt9LqKULSm4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/wzRRDi1bnPLxdJZSt27Dec61.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/ZM0vlI13VX9JoetdOSKkyASo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/R9xel7C6UilVxsZyDKBKoSU7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/r7qWWe6vRars5ciBIJOvJDQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/sABoM7twBFPW6jMUJntbyPRn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/lW7KwIDohU4UA2t05jFzuVaN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qiymw8u3T2x2ZoIKATC4OkgJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/JbwQfI4PZwaGMbYPCmtXLvnQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/LTzJP4Q8wW2seGHc4nde12Q5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/qehWxoBONpe7fhI11rGyL96O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/TYhqW59e1zilE6g01jxrF66v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1110/hU2jzMZeHQlY105P10shyfLu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-21T05:37:29.840000Z\", \"lastPlayedDateTime\": \"2023-06-21T06:17:32.900000Z\", \"playDuration\": \"PT21M4S\"}, {\"titleId\": \"CUSA18686_00\", \"name\": \"Doodle God: Evolution\", \"localizedName\": \"Doodle God: Evolution\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 235296, \"titleIds\": [\"CUSA18084_00\", \"CUSA26598_00\", \"CUSA27103_00\", \"CUSA18686_00\"], \"name\": \"Doodle God: Evolution\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"PUZZLE\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Doodle God: Evolution\", \"uk-UA\": \"Doodle God: Evolution\", \"de-DE\": \"Doodle God: Evolution\", \"en-US\": \"Doodle God: Evolution\", \"pt-BR\": \"Doodle God: Evolution\", \"es-ES\": \"Doodle God: Evolution\", \"ar-AE\": \"Doodle God: Evolution\", \"no-NO\": \"Doodle God: Evolution\", \"fr-CA\": \"Doodle God: Evolution\", \"it-IT\": \"Doodle God: Evolution\", \"pl-PL\": \"Doodle God: Evolution\", \"ru-RU\": \"Doodle God: Evolution\", \"nl-NL\": \"Doodle God: Evolution\", \"pt-PT\": \"Doodle God: Evolution\", \"sv-SE\": \"Doodle God: Evolution\", \"da-DK\": \"Doodle God: Evolution\", \"tr-TR\": \"Doodle God: Evolution\", \"fr-FR\": \"Doodle God: Evolution\", \"en-GB\": \"Doodle God: Evolution\", \"es-419\": \"Doodle God: Evolution\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0611/3b2Zpr45ReySCPbB8sn89lou.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/Bhhqh3XKDrSzMGzuLf5e2Wjp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/kqiVFT1w1yeP1z9v5XgPZFCp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/8ouyA89r6g2c1GySp6fwID97.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/1014/g8ln7VmjzOSw8jfNspBEWkTl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/RQA8ObJLXgTLy59wgr5Tjvrc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/F9GTB83cUIchl26qHjrGbsqe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/av2coqt7HRye3rF4BAZv9aHQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/7FkeJWfbJi6zvtzqmOyhdkKa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/M6npVPlnsSkBpFR60JLxXVSC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/by353z2G1R4uhqtRdMl31YuP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/v1UXUmmBsuo7g1KKsZUhsWIp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/gHl5nxkj1x6nXx4IzZa0dfyx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/0312/62FqCRzB6QVriahJl85sCZfi.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:42:59.130000Z\", \"lastPlayedDateTime\": \"2023-06-21T04:43:25.740000Z\", \"playDuration\": \"PT5H50M9S\"}, {\"titleId\": \"CUSA29604_00\", \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"localizedName\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 6, \"concept\": {\"id\": 10003498, \"titleIds\": [\"CUSA29604_00\"], \"name\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"uk-UA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"de-DE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-US\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-BR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-ES\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ar-AE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"no-NO\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-CA\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"it-IT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pl-PL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"ru-RU\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"nl-NL\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"pt-PT\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"sv-SE\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"da-DK\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"tr-TR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"fr-FR\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"en-GB\": \"Neptunia x SENRAN KAGURA: Ninja Wars\", \"es-419\": \"Neptunia x SENRAN KAGURA: Ninja Wars\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/AgifPfewmyg8ezWsjPZnx516.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/2kGpXpRnUj6nxVKIljycwSnF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/7WUfQo4M3dGSBVq3X0rSLJ8n.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0608/BvpDpMu9Rzk5jG6X2JHrUxGc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/dEXWncXh4uSwzNUWIcMgyP1T.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/whrtsEQpYJS6oGIEUdzJuLrh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/6mhQwMsyAjivvHYheRsrHNU0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/Hfw7QONG5OmWgLubbRWG1CJ7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/MMYUDglD5nhxkRalTYPuUOmr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/XcObNXB4ylN0NLTHFjeeVYR3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/v2HCzxbdr0iaorKPiVijhzAV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/mSSV3enVfg6StqCehde4JOOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/n8Pykw5UhG1cEP6kueHdnSmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/tAKV3FIy3ZP34gCTAmER3MQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/2B1bseLRTf1cjFK032ngLKOs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0515/LH7tYvEswJOlCfp6AcCRw00L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1313/Gi6ezY2M04LJHEQcU5VJZTUN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T11:03:14.970000Z\", \"lastPlayedDateTime\": \"2023-06-21T03:03:29.130000Z\", \"playDuration\": \"PT14H18M33S\"}, {\"titleId\": \"PPSA15070_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:57:56.270000Z\", \"lastPlayedDateTime\": \"2023-06-20T20:02:30.840000Z\", \"playDuration\": \"PT4M21S\"}, {\"titleId\": \"PPSA15071_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:55:09.970000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:57:53.980000Z\", \"playDuration\": \"PT2M37S\"}, {\"titleId\": \"CUSA42067_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T19:52:20.780000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:55:07.560000Z\", \"playDuration\": \"PT2M28S\"}, {\"titleId\": \"CUSA42069_00\", \"name\": \"The Fairy's Song\", \"localizedName\": \"The Fairy's Song\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007860, \"titleIds\": [\"PPSA15071_00\", \"CUSA42067_00\", \"CUSA42069_00\", \"PPSA15070_00\"], \"name\": \"The Fairy's Song\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Fairy's Song\", \"uk-UA\": \"The Fairy's Song\", \"de-DE\": \"The Fairy's Song\", \"en-US\": \"The Fairy's Song\", \"pt-BR\": \"The Fairy's Song\", \"es-ES\": \"The Fairy's Song\", \"ar-AE\": \"The Fairy's Song\", \"no-NO\": \"The Fairy's Song\", \"fr-CA\": \"The Fairy's Song\", \"it-IT\": \"The Fairy's Song\", \"pl-PL\": \"The Fairy's Song\", \"ru-RU\": \"The Fairy's Song\", \"nl-NL\": \"The Fairy's Song\", \"pt-PT\": \"The Fairy's Song\", \"sv-SE\": \"The Fairy's Song\", \"da-DK\": \"The Fairy's Song\", \"tr-TR\": \"The Fairy's Song\", \"fr-FR\": \"The Fairy's Song\", \"en-GB\": \"The Fairy's Song\", \"es-419\": \"The Fairy's Song\", \"ja-JP\": \"The Fairy's Song\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/97496f2ce5826965e64c2fde409f85644756107b03cfe19d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/ecf62c508a17369e5a557f5fbec3cd0c326a6dc10e2a39eb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/62f4d888a01337c48796ec80d33d93938b5a43e9462d8343.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/5308c2252fa728be120f79ee8612ab7beb415b65f06eda7e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/a7b140af11343e6b2702ff2f97970dcdf5342ebb560ce660.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/6f159557c610dae3d5d7a1f5ee19eb1df5239d2d807dace6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/b1af63555c417a4ea8d5778c35ab0418d3b9878d698bade5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/835b67837d95799459d14086ff49bcb13f025b60c5f1152f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/d984f0cde36169180aaaa2a1c49ea9b4604df1524ddbad8a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/20e61476b46e28937fd3d32584c31c2d03b54470385f8b0f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/81e6b81704febe86755c534fe784e6ace68522ffddb2ced3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/f6c51f2ef4ba736121fa7d7d04ebe56a882cea801639c8f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2516/8dc45136a198742f373389a607c4162d41706af80ff03ced.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:29:56.250000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:52:19.010000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA42527_00\", \"name\": \"Degroid\", \"localizedName\": \"Degroid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008031, \"titleIds\": [\"CUSA42525_00\", \"CUSA42526_00\", \"CUSA42528_00\", \"CUSA42527_00\"], \"name\": \"Degroid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Degroid\", \"uk-UA\": \"Degroid\", \"de-DE\": \"Degroid\", \"en-US\": \"Degroid\", \"ko-KR\": \"Degroid\", \"pt-BR\": \"Degroid\", \"es-ES\": \"Degroid\", \"ar-AE\": \"Degroid\", \"no-NO\": \"Degroid\", \"fr-CA\": \"Degroid\", \"it-IT\": \"Degroid\", \"pl-PL\": \"Degroid\", \"ru-RU\": \"Degroid\", \"zh-Hans\": \"Degroid\", \"nl-NL\": \"Degroid\", \"pt-PT\": \"Degroid\", \"zh-Hant\": \"Degroid\", \"sv-SE\": \"Degroid\", \"da-DK\": \"Degroid\", \"tr-TR\": \"Degroid\", \"fr-FR\": \"Degroid\", \"en-GB\": \"Degroid\", \"es-419\": \"Degroid\", \"ja-JP\": \"Degroid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/1fcb58a0399a0a8ab06fa919bd9722847805be7f235a8faf.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/459f6345cb13a6cf423ca313a59aa549669573dd3c43ee96.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/2a00ab51b8e1865f81cbc1754a223ebb755ce25ab97cbb9b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/61732540a7668c3ed8527645c672af2026d3bdeb09f6ecb6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1821/f410aa8bf1d1f893ebbf32adf1afc85928ff11776c88120b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/b4b8fc503ebf355ba415b1e9298468b6f784baf1a61a642e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/63bbd933d94a7f60a72cc945fd1f26ef375f46d526b3b45d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/eb5a2a189643b041230570653375c167e9f6d6a4de8622c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0af84bbb0d3cda74d5ec8291fbba371138a9d4410792761d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/c5c751eea46b1535bf46b2b4134f3e3118cec5b2367c50e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5cddbea176461da05e39d3490fe261e50d67ce512e8baf4a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/07373e9ded93d89bca1c0d2baafdcafbda7698f59aa67935.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/40db8a57f2f8f61734984af2f030fa2b5f1656542aa343d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/455ce277757a20ba7a84ec781641354fc95c613455da3d4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/0f94e13643c65ad74ddb799aff7e95a615746b276d2cb835.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2320/5fc750a0996a2c5b5113f1c13a3d7fd8066cb6e9832fb4aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2315/a8589fcdfe1953b69aaae4818bb39f4ed2db05379b6ae6fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T15:27:09.620000Z\", \"lastPlayedDateTime\": \"2023-06-20T19:48:40.430000Z\", \"playDuration\": \"PT2H23M46S\"}, {\"titleId\": \"CUSA31464_00\", \"name\": \"ExitMan Deluxe\", \"localizedName\": \"ExitMan Deluxe\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004176, \"titleIds\": [\"CUSA31464_00\", \"CUSA31465_00\", \"CUSA31463_00\", \"CUSA31462_00\"], \"name\": \"ExitMan Deluxe\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"ExitMan Deluxe\", \"uk-UA\": \"ExitMan Deluxe\", \"de-DE\": \"ExitMan Deluxe\", \"en-US\": \"ExitMan Deluxe\", \"ko-KR\": \"ExitMan Deluxe\", \"pt-BR\": \"ExitMan Deluxe\", \"es-ES\": \"ExitMan Deluxe\", \"ar-AE\": \"ExitMan Deluxe\", \"no-NO\": \"ExitMan Deluxe\", \"fr-CA\": \"ExitMan Deluxe\", \"it-IT\": \"ExitMan Deluxe\", \"pl-PL\": \"ExitMan Deluxe\", \"ru-RU\": \"ExitMan Deluxe\", \"zh-Hans\": \"ExitMan Deluxe\", \"nl-NL\": \"ExitMan Deluxe\", \"pt-PT\": \"ExitMan Deluxe\", \"zh-Hant\": \"ExitMan Deluxe\", \"sv-SE\": \"ExitMan Deluxe\", \"da-DK\": \"ExitMan Deluxe\", \"tr-TR\": \"ExitMan Deluxe\", \"fr-FR\": \"ExitMan Deluxe\", \"en-GB\": \"ExitMan Deluxe\", \"es-419\": \"ExitMan Deluxe\", \"ja-JP\": \"ExitMan Deluxe\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/EAeEGy5Il3UdkVGXgrp6eQ0Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/Fk9vP6FNUPAm35coPGuOLjWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/H7zp53bCH470l7iT2haobLXu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/LJT0HCDWU5VX32ObGHRHeIme.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/VgXFr7SAR1wAZJr4yxvDPKUk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/bzV8TLHPm9nPKwzozeEfxPqZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/gmWlThTZ12Fja8PuovC3EpJj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/mpU95DtDGrvbQIOhRJCRq9LV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/nt3lsR6TT7DuUPs2DxP1rOB0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/r2vOcPZs1K9X8z2cBby3xctZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vaWSniZ7wTIdDiVYsgUxr8OJ.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/vgIJvrzTtr5RDOBDqZjbpuQi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1509/NYSHQ8H33fUXSHAvhAk84Bk7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-20T17:01:19.220000Z\", \"lastPlayedDateTime\": \"2023-06-20T18:56:21.880000Z\", \"playDuration\": \"PT1H53M47S\"}, {\"titleId\": \"CUSA33496_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:31:54.680000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:25:58.210000Z\", \"playDuration\": \"PT1H33M58S\"}, {\"titleId\": \"CUSA33495_00\", \"name\": \"Game Type DX\", \"localizedName\": \"Game Type DX\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10004621, \"titleIds\": [\"CUSA33495_00\", \"CUSA33496_00\"], \"name\": \"Game Type DX\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Game Type DX\", \"uk-UA\": \"Game Type DX\", \"de-DE\": \"Game Type DX\", \"en-US\": \"Game Type DX\", \"ko-KR\": \"Game Type DX\", \"pt-BR\": \"Game Type DX\", \"es-ES\": \"Game Type DX\", \"ar-AE\": \"Game Type DX\", \"no-NO\": \"Game Type DX\", \"fr-CA\": \"Game Type DX\", \"it-IT\": \"Game Type DX\", \"pl-PL\": \"Game Type DX\", \"ru-RU\": \"Game Type DX\", \"zh-Hans\": \"Game Type DX\", \"nl-NL\": \"Game Type DX\", \"pt-PT\": \"Game Type DX\", \"zh-Hant\": \"Game Type DX\", \"sv-SE\": \"Game Type DX\", \"da-DK\": \"Game Type DX\", \"tr-TR\": \"Game Type DX\", \"fr-FR\": \"Game Type DX\", \"en-GB\": \"Game Type DX\", \"es-419\": \"Game Type DX\", \"ja-JP\": \"Game Type DX\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/scTnguy7vIKDw2bOkiVrZ0Az.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/kAzwaxInWSy96dipLNZaYgig.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/R3L3CLVXidCiXNL5ZvI4UqUZ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ddEAnmvPV889Z3tQqpViY6xQ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/AXFLecnF3W5AIYdjeyjglvOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/k88sOb2AUGJbZM5eDgdt9g5D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/l2BIUYvz3d3JdaaqoxmcXAfe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/aRQeTkFBGwVz0lNyme1ZovcW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O51neOUUe0KXGVfeeRlUtoAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/COFrHyAO1lYiTGGxNaidnnTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/seegQ4adj2f8ixlBy6p5dEx7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/O9h1wmD04VxeT6oOi5LwNrDk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/0XcLAWDjvZQapYzHdcUGadzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1117/VmD7DJvP6Wt61JI7NTJXJFmW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0420/ZNiuJalpEYGJzLKwa1mLEE1d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T01:10:24.360000Z\", \"lastPlayedDateTime\": \"2023-06-20T01:19:49.710000Z\", \"playDuration\": \"PT1H49M56S\"}, {\"titleId\": \"CUSA38002_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:25:32.270000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:28:46.700000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA43835_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:20:33.170000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:25:30.100000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"CUSA42211_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:18:03.890000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:19:08.810000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA42212_00\", \"name\": \"Robo Ret\", \"localizedName\": \"Robo Ret\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007901, \"titleIds\": [\"CUSA42211_00\", \"CUSA42212_00\", \"CUSA42213_00\", \"CUSA42214_00\"], \"name\": \"Robo Ret\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Robo Ret\", \"uk-UA\": \"Robo Ret\", \"de-DE\": \"Robo Ret\", \"en-US\": \"Robo Ret\", \"ko-KR\": \"Robo Ret\", \"pt-BR\": \"Robo Ret\", \"es-ES\": \"Robo Ret\", \"ar-AE\": \"Robo Ret\", \"no-NO\": \"Robo Ret\", \"fr-CA\": \"Robo Ret\", \"it-IT\": \"Robo Ret\", \"pl-PL\": \"Robo Ret\", \"ru-RU\": \"Robo Ret\", \"zh-Hans\": \"Robo Ret\", \"nl-NL\": \"Robo Ret\", \"pt-PT\": \"Robo Ret\", \"zh-Hant\": \"Robo Ret\", \"sv-SE\": \"Robo Ret\", \"da-DK\": \"Robo Ret\", \"tr-TR\": \"Robo Ret\", \"fr-FR\": \"Robo Ret\", \"en-GB\": \"Robo Ret\", \"es-419\": \"Robo Ret\", \"ja-JP\": \"Robo Ret\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/f0b7da798468c7b1b29f3b720521218b0ab1fbf03aaad91b.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1013/e0696266aa57bbd526a2ca9df711a04929f566cda9da32be.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1216/2c56d68dec6062ad1a30dca3d2b03ea6e8a8c5bfe40ab4dd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/75029eaa8af0d6356eff4a07d1e43f2d8576abb32359a4be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/9947fa5aec71304384de04d75b632d614e3456006cdf3ab1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202310/2708/bc119920e388711de98bdf4ad7cc55897f83fb4b4e16fab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1721/9591aceefce0e20db5610dcf9e2cae4e9aed8378a2197671.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:16:32.470000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:18:02.510000Z\", \"playDuration\": \"PT1M23S\"}, {\"titleId\": \"CUSA43806_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:06:53.640000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:14:53.200000Z\", \"playDuration\": \"PT7M40S\"}, {\"titleId\": \"CUSA43737_00\", \"name\": \"Donuts in Space\", \"localizedName\": \"Donuts in Space\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008546, \"titleIds\": [\"PPSA16939_00\", \"PPSA16940_00\", \"PPSA16942_00\", \"CUSA43806_00\", \"CUSA43807_00\", \"CUSA43737_00\"], \"name\": \"Donuts in Space\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Donuts in Space\", \"uk-UA\": \"Donuts in Space\", \"de-DE\": \"Donuts in Space\", \"en-US\": \"Donuts in Space\", \"pt-BR\": \"Donuts in Space\", \"es-ES\": \"Donuts in Space\", \"ar-AE\": \"Donuts in Space\", \"no-NO\": \"Donuts in Space\", \"fr-CA\": \"Donuts in Space\", \"it-IT\": \"Donuts in Space\", \"pl-PL\": \"Donuts in Space\", \"ru-RU\": \"Donuts in Space\", \"nl-NL\": \"Donuts in Space\", \"pt-PT\": \"Donuts in Space\", \"sv-SE\": \"Donuts in Space\", \"da-DK\": \"Donuts in Space\", \"tr-TR\": \"Donuts in Space\", \"fr-FR\": \"Donuts in Space\", \"en-GB\": \"Donuts in Space\", \"es-419\": \"Donuts in Space\", \"ja-JP\": \"Donuts in Space\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/67c951ee02263097df124625288b01ddf542f3d27c87de0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fc23c294b5deb20ce99769505476f9337ea6c518ef90b3f6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/4059ecd6cb69ddebf1bffbbef42fb67f8f9c845c3cc8f5ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e097af0faab7191f8ebfff1e5d3cde5e72b85185164984a0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/180d22a668026ec7ae6a507f06180803c9079aedb2af6085.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/13343b8f43f475fad6a96413b7f6c201817c245fdf1f0ef5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/e29c58c76db1e9971d8e8e51a6faeb106d5a1ae026c79404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/181247812cdfc6c0da56913d102b09216627c65859fd2380.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a9168d369b331a597502369617140ae04573d27e6523b1dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/ca622a5757cbe9df8170444ed63a1520fa89e2e6718a9504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/71853467a60c24324a23b10d4d6c7d3a8fd4f650300d5dea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/fccdf738f1dcea35065bc05a29d71dc08920a4d7a7fa895a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/cc6dd84eb5201d5b67e288cf903472f52991b12a7c2f8fc9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d099669240dfd7dcbe81403ed8857e24d6add4b4c0bcfc21.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/81071e6cd38ccab07f63f3585ec956583da0f6588bb88f2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/9acddf6e39d66465f72c100542ec83e105aba9721fc4114c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/d7d9723e1c9263d09a7c3c4f71ae726a135983b2df292ea2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T08:03:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:06:50.510000Z\", \"playDuration\": \"PT3M20S\"}, {\"titleId\": \"CUSA35901_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:56:43.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T08:02:15.670000Z\", \"playDuration\": \"PT3M46S\"}, {\"titleId\": \"CUSA35900_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:51:28.810000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:56:41.330000Z\", \"playDuration\": \"PT4M55S\"}, {\"titleId\": \"CUSA35902_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:47:41.250000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:51:20.210000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"CUSA35899_00\", \"name\": \"S LANES\", \"localizedName\": \"S LANES\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005875, \"titleIds\": [\"CUSA35902_00\", \"CUSA35901_00\", \"CUSA35899_00\", \"CUSA35900_00\"], \"name\": \"S LANES\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"S LANES\", \"uk-UA\": \"S LANES\", \"de-DE\": \"S LANES\", \"en-US\": \"S LANES\", \"ko-KR\": \"S LANES\", \"pt-BR\": \"S LANES\", \"es-ES\": \"S LANES\", \"ar-AE\": \"S LANES\", \"no-NO\": \"S LANES\", \"fr-CA\": \"S LANES\", \"it-IT\": \"S LANES\", \"pl-PL\": \"S LANES\", \"ru-RU\": \"S LANES\", \"zh-Hans\": \"S LANES\", \"nl-NL\": \"S LANES\", \"pt-PT\": \"S LANES\", \"zh-Hant\": \"S LANES\", \"sv-SE\": \"S LANES\", \"da-DK\": \"S LANES\", \"tr-TR\": \"S LANES\", \"fr-FR\": \"S LANES\", \"en-GB\": \"S LANES\", \"es-419\": \"S LANES\", \"ja-JP\": \"S LANES\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3115/a47c22a33349649230fa657270b66534d58ffadeba3db973.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/xZ2RV1lW6Jb491vqoiDjbVOI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/SvrZqb5gm5iIXQet6KtHCC3v.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/ScFRTrqEzpXtJD2dillU7uVa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/JqlZz8PrjOGOZgWqqJn0KJ8x.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:35:47.380000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:46:56.550000Z\", \"playDuration\": \"PT10M44S\"}, {\"titleId\": \"PPSA12391_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:22:37.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:35:24.690000Z\", \"playDuration\": \"PT11M6S\"}, {\"titleId\": \"PPSA12392_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:13:39.510000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:22:33.230000Z\", \"playDuration\": \"PT8M23S\"}, {\"titleId\": \"PPSA12393_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T07:03:57.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:13:37.440000Z\", \"playDuration\": \"PT9M10S\"}, {\"titleId\": \"PPSA12390_00\", \"name\": \"Power The Light\", \"localizedName\": \"Power The Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10006867, \"titleIds\": [\"CUSA39363_00\", \"CUSA39364_00\", \"CUSA39366_00\", \"CUSA39365_00\", \"PPSA12390_00\", \"PPSA12391_00\", \"PPSA12392_00\", \"PPSA12393_00\"], \"name\": \"Power The Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Power The Light\", \"uk-UA\": \"Power The Light\", \"de-DE\": \"Macht das Licht\", \"en-US\": \"Power The Light\", \"ko-KR\": \"\\ud30c\\uc6cc \\ub354 \\ub77c\\uc774\\ud2b8\", \"pt-BR\": \"Alimente a luz\", \"es-ES\": \"Potencia la luz\", \"ar-AE\": \"\\u0642\\u0648\\u0629 \\u0627\\u0644\\u0636\\u0648\\u0621\", \"no-NO\": \"Power The Light\", \"fr-CA\": \"Alimentez la lumi\\u00e8re\", \"it-IT\": \"Alimenta la luce\", \"pl-PL\": \"Zasil \\u015bwiat\\u0142o\", \"ru-RU\": \"\\u0421\\u0438\\u043b\\u0430 \\u0441\\u0432\\u0435\\u0442\\u0430\", \"zh-Hans\": \"\\u4e3a\\u706f\\u4f9b\\u7535\", \"nl-NL\": \"Voed het licht\", \"pt-PT\": \"Alimente a luz\", \"zh-Hant\": \"\\u70ba\\u71c8\\u4f9b\\u96fb\", \"sv-SE\": \"Power The Light\", \"da-DK\": \"Power The Light\", \"tr-TR\": \"I\\u015f\\u0131\\u011fa G\\u00fc\\u00e7 Ver\", \"fr-FR\": \"Alimentez la lumi\\u00e8re\", \"en-GB\": \"Power The Light\", \"es-419\": \"Potencia la luz\", \"ja-JP\": \"\\u30d1\\u30ef\\u30fc\\u30fb\\u30b6\\u30fb\\u30e9\\u30a4\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/8c142553bcf43afc824e0dd83d81a0af8cf49e474be8f9c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/686e41996358764635dee97123ee43f38d7894732e0466cf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/1609/14e56fd7dbe7ee1540dc977daab7068707875dd4f699557a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2914/9027e68e09d6f4102251a1bb9484ac2036d62b454bb61138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-19T06:42:45.820000Z\", \"lastPlayedDateTime\": \"2023-06-19T07:03:55.910000Z\", \"playDuration\": \"PT18M56S\"}, {\"titleId\": \"PPSA08305_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 23, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T01:05:48.000000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:37:36.350000Z\", \"playDuration\": \"PT12H22M36S\"}, {\"titleId\": \"PPSA08304_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 22, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T22:18:51.680000Z\", \"lastPlayedDateTime\": \"2023-06-19T06:06:06.020000Z\", \"playDuration\": \"PT12H38M59S\"}, {\"titleId\": \"CUSA34367_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T12:12:18.050000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:43:30.960000Z\", \"playDuration\": \"PT16H18M49S\"}, {\"titleId\": \"CUSA37712_00\", \"name\": \"Deep Ones\", \"localizedName\": \"Deep Ones\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 231072, \"titleIds\": [\"CUSA18978_00\", \"PCSB01212_00\", \"CUSA14737_00\", \"CUSA10838_00\", \"CUSA14703_00\", \"CUSA10821_00\", \"CUSA37712_00\"], \"name\": \"Deep Ones\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Deep Ones\", \"uk-UA\": \"Deep Ones\", \"de-DE\": \"Deep Ones\", \"en-US\": \"Deep Ones\", \"ko-KR\": \"Deep Ones\", \"pt-BR\": \"Deep Ones\", \"es-ES\": \"Deep Ones\", \"ar-AE\": \"Deep Ones\", \"no-NO\": \"Deep Ones\", \"fr-CA\": \"Deep Ones\", \"it-IT\": \"Deep Ones\", \"pl-PL\": \"Deep Ones\", \"ru-RU\": \"Deep Ones\", \"zh-Hans\": \"Deep Ones\", \"nl-NL\": \"Deep Ones\", \"pt-PT\": \"Deep Ones\", \"zh-Hant\": \"Deep Ones\", \"sv-SE\": \"Deep Ones\", \"da-DK\": \"Deep Ones\", \"tr-TR\": \"Deep Ones\", \"fr-FR\": \"Deep Ones\", \"en-GB\": \"Deep Ones\", \"es-419\": \"Deep Ones\", \"ja-JP\": \"Deep Ones\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/VvgTnrPnNNLJ0CYsMoYGbS9F.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jV5mZHNFpMJRm18g5497fXia.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DCBFqXp4We5o6AuHo9jrsosp.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/9VB2CCVVIo5hP3nDSDGWKy60.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/l8WMj0GOgOUsFKjezBuMcw3A.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/kOhhMHldWrkhtm0Bm0GRQAkg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/jCiUYCOQhMGTir0OOMlTea8k.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/x6CTWgRLrpMNIlL9lVTngYn5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/BATycnmZQVVTbvYIPvVxoUCo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/o9Z1bT20bbdL76lP0Ocf1QBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/5cZlbHH21ZOglgnYnZSLkshJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/ad6MrWiq1kxm2uQf1CI4HUs8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/DjAu5MMCtDGi0sfEMss2iHyN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1712/G6e0ZOTzSeWIjdBTNrDnnGTR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA10821_00/3/i_b2131b2b4929a7b1fa902104d75c64025d024aba3a892e2b52de174fffa72fe8/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T06:24:03.750000Z\", \"lastPlayedDateTime\": \"2023-06-19T05:11:35.620000Z\", \"playDuration\": \"PT2H33M50S\"}, {\"titleId\": \"CUSA25037_00\", \"name\": \"Persian Nights 2: Moonlight Veil\", \"localizedName\": \"Persian Nights 2: Moonlight Veil\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001680, \"titleIds\": [\"CUSA25038_00\", \"CUSA25037_00\"], \"name\": \"Persian Nights 2: Moonlight Veil\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Persian Nights 2: Moonlight Veil\", \"uk-UA\": \"Persian Nights 2: Moonlight Veil\", \"de-DE\": \"Persian Nights 2: Moonlight Veil\", \"en-US\": \"Persian Nights 2: Moonlight Veil\", \"pt-BR\": \"Persian Nights 2: Moonlight Veil\", \"es-ES\": \"Persian Nights 2: Moonlight Veil\", \"ar-AE\": \"Persian Nights 2: Moonlight Veil\", \"no-NO\": \"Persian Nights 2: Moonlight Veil\", \"fr-CA\": \"Persian Nights 2: Moonlight Veil\", \"it-IT\": \"Persian Nights 2: Moonlight Veil\", \"pl-PL\": \"Persian Nights 2: Moonlight Veil\", \"ru-RU\": \"Persian Nights 2: Moonlight Veil\", \"nl-NL\": \"Persian Nights 2: Moonlight Veil\", \"pt-PT\": \"Persian Nights 2: Moonlight Veil\", \"sv-SE\": \"Persian Nights 2: Moonlight Veil\", \"da-DK\": \"Persian Nights 2: Moonlight Veil\", \"tr-TR\": \"Persian Nights 2: Moonlight Veil\", \"fr-FR\": \"Persian Nights 2: Moonlight Veil\", \"en-GB\": \"Persian Nights 2: Moonlight Veil\", \"es-419\": \"Persian Nights 2: Moonlight Veil\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/6Y6PRRzNhvrCBim5LefiBEk9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/KW262s4rULZtgZmAeEznezgV.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/z5ZDYxZ1eTn8zhfRQIKuO63o.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/wvwbuOOwBYT63pmUsHAfqRiI.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/kQEUNWiVu7MrIxXVxFWgOxFz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/jgfHycL5t768jbNz6I17gOcW.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/9m8m69npn9SuDlAbGQ8j0F3u.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/vX42nN1DZTJcGLla6oin49sX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0821/VtiRYkUDHGGRFDbVC04LLw1W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/q6PNK0hegQuZmzkn6806xbEw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/MifFRHLzaeLYigrjedlBykdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0823/4xch5c4XI1sreTmnpG4p8zS2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202011/0822/D9I2MrxPWWXvUE1VK7OfBWDN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-18T02:14:17.830000Z\", \"lastPlayedDateTime\": \"2023-06-18T06:23:00.120000Z\", \"playDuration\": \"PT2H21M46S\"}, {\"titleId\": \"CUSA30539_00\", \"name\": \"Inspector Waffles\", \"localizedName\": \"Inspector Waffles\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003854, \"titleIds\": [\"CUSA30540_00\", \"CUSA30539_00\"], \"name\": \"Inspector Waffles\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Inspector Waffles\", \"uk-UA\": \"Inspector Waffles\", \"de-DE\": \"Inspector Waffles\", \"en-US\": \"Inspector Waffles\", \"pt-BR\": \"Inspector Waffles\", \"es-ES\": \"Inspector Waffles\", \"ar-AE\": \"Inspector Waffles\", \"no-NO\": \"Inspector Waffles\", \"fr-CA\": \"Inspector Waffles\", \"it-IT\": \"Inspector Waffles\", \"pl-PL\": \"Inspector Waffles\", \"ru-RU\": \"Inspector Waffles\", \"nl-NL\": \"Inspector Waffles\", \"pt-PT\": \"Inspector Waffles\", \"sv-SE\": \"Inspector Waffles\", \"da-DK\": \"Inspector Waffles\", \"tr-TR\": \"Inspector Waffles\", \"fr-FR\": \"Inspector Waffles\", \"en-GB\": \"Inspector Waffles\", \"es-419\": \"Inspector Waffles\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/IS72jNGXUC66z9LbzNE0H8qm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/zqrgjkw0ly9KBIV3mpHfudC0.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/9JCLLImoBvKCMGIdZ7A7mKQt.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UumEkEqyZxocpqFjSJBXgOHa.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/4JSEnzozD05n6AW0w9Lw1wYR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/pUDpdQcFzMuDQtxFtxHvoxOr.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/NLOSWiH6XnZZWWc9AKyigc66.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/MfYQ6LKhELqbdwCO7Tip5JQd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/bfD8oWJTy52TxMti2cnvonCL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/c7SXWuJr7ZQw4Al8E92h0bjM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/malpaUygOAM6KfFlNBuxVXYS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/UMV6Oc6NeCxBHFBZ1Fo72o3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/gbwqVlHaLFevAK8mQPvhKyyQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/2211/DHrzlBDUeBiS2Kv7gw0xPB8S.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T11:58:51.560000Z\", \"lastPlayedDateTime\": \"2023-06-17T14:09:44.990000Z\", \"playDuration\": \"PT2H50S\"}, {\"titleId\": \"PPSA12406_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T08:48:37.410000Z\", \"lastPlayedDateTime\": \"2023-06-17T11:51:06.970000Z\", \"playDuration\": \"PT49M55S\"}, {\"titleId\": \"CUSA39375_00\", \"name\": \"Demon Hunter: New Chapter\", \"localizedName\": \"Demon Hunter: New Chapter\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006875, \"titleIds\": [\"CUSA39375_00\", \"PPSA12406_00\", \"PPSA12407_00\", \"CUSA39376_00\"], \"name\": \"Demon Hunter: New Chapter\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: New Chapter\", \"uk-UA\": \"Demon Hunter: New Chapter\", \"de-DE\": \"Demon Hunter: New Chapter\", \"en-US\": \"Demon Hunter: New Chapter\", \"pt-BR\": \"Demon Hunter: New Chapter\", \"es-ES\": \"Demon Hunter: New Chapter\", \"ar-AE\": \"Demon Hunter: New Chapter\", \"no-NO\": \"Demon Hunter: New Chapter\", \"fr-CA\": \"Demon Hunter: New Chapter\", \"it-IT\": \"Demon Hunter: New Chapter\", \"pl-PL\": \"Demon Hunter: New Chapter\", \"ru-RU\": \"Demon Hunter: New Chapter\", \"nl-NL\": \"Demon Hunter: New Chapter\", \"pt-PT\": \"Demon Hunter: New Chapter\", \"sv-SE\": \"Demon Hunter: New Chapter\", \"da-DK\": \"Demon Hunter: New Chapter\", \"tr-TR\": \"Demon Hunter: New Chapter\", \"fr-FR\": \"Demon Hunter: New Chapter\", \"en-GB\": \"Demon Hunter: New Chapter\", \"es-419\": \"Demon Hunter: New Chapter\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/f8iH2ENTMGuPhrJH1VWMVc5L.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/OrZLJTyeTQ1CTSrWiJCvaNCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/vdSX9NifNHGhZc7E17z84Wbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/2lDnmJ42u2SkEktRW3cUOps2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/5g5yM8ZYzaq7Q51T4PQ364gb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/DhwN0UfkT4LZabb9WP1BgRIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/jSF17H3yOwqoLJYe42wA0gp7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/q2hSrIRY7dZE65pzitU7CeFa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/xcHtyLkMDkghAUazdudhl3XF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/S2fc137epXcmQfX3RYEmmKhM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/ikM6g6H5oVtfcEwNxJhOO2Xe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/JQMnNtjTI1HPf47PI7ajediO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/MJVceFrb5ap0CZU2GiS1nW7F.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/upCTy5oop1gYf1Z6tyg6vKjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3ZVNS9vXgfGkV4MxZKFHJjwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/3YkX48jsbhrQ5rf0JKmRjYeN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0507/Ffp7TZyO1JOZZALLoCKV1sUA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-17T07:41:08.680000Z\", \"lastPlayedDateTime\": \"2023-06-17T08:31:37.270000Z\", \"playDuration\": \"PT49M49S\"}, {\"titleId\": \"CUSA18793_00\", \"name\": \"MOZART'S REQUIEM\", \"localizedName\": \"MOZART'S REQUIEM\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 5, \"concept\": {\"id\": 10000493, \"titleIds\": [\"CUSA28337_00\", \"CUSA18793_00\"], \"name\": \"MOZART'S REQUIEM\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MOZART REQUIEM\", \"uk-UA\": \"MOZART REQUIEM\", \"de-DE\": \"MOZART REQUIEM\", \"en-US\": \"MOZART'S REQUIEM\", \"ko-KR\": \"MOZART REQUIEM\", \"pt-BR\": \"MOZART REQUIEM\", \"es-ES\": \"MOZART REQUIEM\", \"ar-AE\": \"MOZART REQUIEM\", \"no-NO\": \"MOZART REQUIEM\", \"fr-CA\": \"MOZART REQUIEM\", \"it-IT\": \"MOZART REQUIEM\", \"pl-PL\": \"MOZART REQUIEM\", \"ru-RU\": \"MOZART REQUIEM\", \"nl-NL\": \"MOZART REQUIEM\", \"pt-PT\": \"MOZART REQUIEM\", \"sv-SE\": \"MOZART REQUIEM\", \"da-DK\": \"MOZART REQUIEM\", \"tr-TR\": \"MOZART REQUIEM\", \"fr-FR\": \"MOZART REQUIEM\", \"en-GB\": \"MOZART'S REQUIEM\", \"es-419\": \"MOZART REQUIEM\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/PKleRHOrzEdUU0NamCE7OaQM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/H2L0ntdxhinqHh1KJxcjOjxF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/5IMCick1AzYYXkeXd1gxXfvF.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0107/2F74qVCx6uPSNDZ8UBR5xVVg.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/6zsO10Wa5sPUtcRZCYf5OsCj.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/uXEJNvoSNXm7yTdLqHyevlhz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/sFwKjUFdWr2jjhAwRkTMnuLX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1801/glv1vMFLyphGIOQsSEAsd2md.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/pd7VszFsCy21j1lOvR8Koyft.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/w74Qx2tG1ffQJiCn0BBjXdRO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/ejGMDFPL5jXuuotz83LeJqnv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/winiGzvrfx1V7kjHYc1qeDUN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/CBMGGxzJ9ftCok3acko3ez1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/Aow69xDWKZla1UTOpsyYeNnh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2703/2BvHu89ApOnNZiINAjayrLRV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-16T09:07:10.390000Z\", \"lastPlayedDateTime\": \"2023-06-17T07:22:51.420000Z\", \"playDuration\": \"PT1H18M49S\"}, {\"titleId\": \"CUSA32560_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T15:44:05.860000Z\", \"lastPlayedDateTime\": \"2023-06-15T17:12:58.820000Z\", \"playDuration\": \"PT1H26M26S\"}, {\"titleId\": \"CUSA32558_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:29:22.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T15:33:11.300000Z\", \"playDuration\": \"PT1H51M13S\"}, {\"titleId\": \"PPSA11423_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:11:12.130000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:12:29.620000Z\", \"playDuration\": \"PT32S\"}, {\"titleId\": \"PPSA11422_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:10:31.940000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:11:09.890000Z\", \"playDuration\": \"PT32S\"}, {\"titleId\": \"CUSA38204_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:07:43.340000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:10:29.700000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA38203_00\", \"name\": \"Funny Alphabet\", \"localizedName\": \"Funny Alphabet\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006577, \"titleIds\": [\"PPSA11422_00\", \"PPSA11423_00\", \"CUSA38204_00\", \"CUSA38203_00\", \"PPSA11425_00\", \"CUSA38205_00\", \"CUSA38206_00\", \"PPSA11424_00\"], \"name\": \"Funny Alphabet\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Funny Alphabet\", \"uk-UA\": \"Funny Alphabet\", \"de-DE\": \"Funny Alphabet\", \"en-US\": \"Funny Alphabet\", \"ko-KR\": \"Funny Alphabet\", \"pt-BR\": \"Funny Alphabet\", \"es-ES\": \"Funny Alphabet\", \"ar-AE\": \"Funny Alphabet\", \"no-NO\": \"Funny Alphabet\", \"fr-CA\": \"Funny Alphabet\", \"it-IT\": \"Funny Alphabet\", \"pl-PL\": \"Funny Alphabet\", \"ru-RU\": \"Funny Alphabet\", \"zh-Hans\": \"Funny Alphabet\", \"nl-NL\": \"Funny Alphabet\", \"pt-PT\": \"Funny Alphabet\", \"zh-Hant\": \"Funny Alphabet\", \"sv-SE\": \"Funny Alphabet\", \"da-DK\": \"Funny Alphabet\", \"tr-TR\": \"Funny Alphabet\", \"fr-FR\": \"Funny Alphabet\", \"en-GB\": \"Funny Alphabet\", \"es-419\": \"Funny Alphabet\", \"ja-JP\": \"Funny Alphabet\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/ODxf9NmyWg2U4Cq3YdD8F8jo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/zbbM8VGkZF4dlUSFdvV1MPjb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/GabE2LrTbmZizJp0Nmc1Dz9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/RqLvDPFDu2hoCIFCszzYpWEb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/Fwo3SCfhiF2zIGlXGOWsXUrS.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/diJB2VtpG597a7ZmnSqV3MCO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/95f100fca9a8ffec3121cbc94297ea39a23685e7b44e356a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/6c0e4b6e4762ef190d65085d342453f0abe0e57d2f771551.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/2589a8a3e3c318036c1e1fb55b1b3a63ecb0c87e3de0b050.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/b3f5294484ff3f895f2c3b224a6aff6af09705e01be12e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/a1f27995c97c1dc866de7a34922c7eedd6234959b12d1656.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ab9532ce4bca3232472ee18465c9ec994121a038b14f67b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/8SbEDAFwryLXfKxgh6ganege.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T13:06:32.940000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:07:41.360000Z\", \"playDuration\": \"PT1M1S\"}, {\"titleId\": \"CUSA30205_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T07:11:18.460000Z\", \"lastPlayedDateTime\": \"2023-06-15T13:06:13.540000Z\", \"playDuration\": \"PT2H10M55S\"}, {\"titleId\": \"CUSA30204_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T05:08:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-15T07:03:06.660000Z\", \"playDuration\": \"PT1H54M20S\"}, {\"titleId\": \"CUSA30203_00\", \"name\": \"Don't Be Afraid\", \"localizedName\": \"Don't Be Afraid\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10003729, \"titleIds\": [\"CUSA30205_00\", \"CUSA30206_00\", \"CUSA30204_00\", \"CUSA30203_00\"], \"name\": \"Don't Be Afraid\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Don't Be Afraid\", \"uk-UA\": \"Don't Be Afraid\", \"de-DE\": \"Don't Be Afraid\", \"en-US\": \"Don't Be Afraid\", \"ko-KR\": \"Don't Be Afraid\", \"pt-BR\": \"Don't Be Afraid\", \"es-ES\": \"Don't Be Afraid\", \"ar-AE\": \"Don't Be Afraid\", \"no-NO\": \"Don't Be Afraid\", \"fr-CA\": \"Don't Be Afraid\", \"it-IT\": \"Don't Be Afraid\", \"pl-PL\": \"Don't Be Afraid\", \"ru-RU\": \"Don't Be Afraid\", \"zh-Hans\": \"Don't Be Afraid\", \"nl-NL\": \"Don't Be Afraid\", \"pt-PT\": \"Don't Be Afraid\", \"zh-Hant\": \"Don't Be Afraid\", \"sv-SE\": \"Don't Be Afraid\", \"da-DK\": \"Don't Be Afraid\", \"tr-TR\": \"Don't Be Afraid\", \"fr-FR\": \"Don't Be Afraid\", \"en-GB\": \"Don't Be Afraid\", \"es-419\": \"Don't Be Afraid\", \"ja-JP\": \"Don't Be Afraid\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/Ss9x5Ccpu0t9p0TExum50uz7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/if2YkcBOTJf4Oj5aMa74ToSf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/rtpWnQMHrVm3jzpIqSvjoDPU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0609/riEbTEzn5h89SgDfXy0pskkc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2517/5eq9QMVtnT5kVWCc9NlrVALh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/7rtlVA4dW37ZzQbvfMN08vQT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JEpf4R3QS0xDaZ3Um6oozvzF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/gpC9qJyC6lQfclEHPWY3aNsZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/Ir315Z7kAg1NDUGiiYKPFKVZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/iTswaVFPnkA0vavdvXYgy5U8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/LAp7S0gDsPoVRfZiOv5myZg3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/W6n8bHDgGleGzHUSdyHDAGIG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/JheJC11AkVaWX26UwyDRLOxm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/WlaQNFGkICTeU6EjzlsVaypO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/behGVpZvzmXHuJRhmKcAspXO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/5Li71bS1dcG3SqqJVXHCvGXp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0607/cyOoSdJDgeNMYc7DNqWSqBgo.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:46:50.900000Z\", \"lastPlayedDateTime\": \"2023-06-15T05:00:13.000000Z\", \"playDuration\": \"PT2H16M39S\"}, {\"titleId\": \"PPSA02628_00\", \"name\": \"Trek to Yomi\", \"localizedName\": \"Trek to Yomi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002134, \"titleIds\": [\"CUSA26156_00\", \"CUSA26157_00\", \"PPSA02629_00\", \"PPSA02628_00\"], \"name\": \"Trek to Yomi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trek to Yomi\", \"uk-UA\": \"Trek to Yomi\", \"de-DE\": \"Trek to Yomi\", \"en-US\": \"Trek to Yomi\", \"ko-KR\": \"Trek to Yomi\", \"pt-BR\": \"Trek to Yomi\", \"es-ES\": \"Trek to Yomi\", \"ar-AE\": \"Trek to Yomi\", \"no-NO\": \"Trek to Yomi\", \"fr-CA\": \"Trek to Yomi\", \"it-IT\": \"Trek to Yomi\", \"pl-PL\": \"Trek to Yomi\", \"ru-RU\": \"Trek to Yomi\", \"zh-Hans\": \"Trek to Yomi\", \"nl-NL\": \"Trek to Yomi\", \"pt-PT\": \"Trek to Yomi\", \"zh-Hant\": \"Trek to Yomi\", \"sv-SE\": \"Trek to Yomi\", \"da-DK\": \"Trek to Yomi\", \"tr-TR\": \"Trek to Yomi\", \"fr-FR\": \"Trek to Yomi\", \"en-GB\": \"Trek to Yomi\", \"es-419\": \"Trek to Yomi\", \"ja-JP\": \"Trek to Yomi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:26:18.440000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:33:21.490000Z\", \"playDuration\": \"PT7M\"}, {\"titleId\": \"CUSA26156_00\", \"name\": \"Trek to Yomi\", \"localizedName\": \"Trek to Yomi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10002134, \"titleIds\": [\"CUSA26156_00\", \"CUSA26157_00\", \"PPSA02629_00\", \"PPSA02628_00\"], \"name\": \"Trek to Yomi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trek to Yomi\", \"uk-UA\": \"Trek to Yomi\", \"de-DE\": \"Trek to Yomi\", \"en-US\": \"Trek to Yomi\", \"ko-KR\": \"Trek to Yomi\", \"pt-BR\": \"Trek to Yomi\", \"es-ES\": \"Trek to Yomi\", \"ar-AE\": \"Trek to Yomi\", \"no-NO\": \"Trek to Yomi\", \"fr-CA\": \"Trek to Yomi\", \"it-IT\": \"Trek to Yomi\", \"pl-PL\": \"Trek to Yomi\", \"ru-RU\": \"Trek to Yomi\", \"zh-Hans\": \"Trek to Yomi\", \"nl-NL\": \"Trek to Yomi\", \"pt-PT\": \"Trek to Yomi\", \"zh-Hant\": \"Trek to Yomi\", \"sv-SE\": \"Trek to Yomi\", \"da-DK\": \"Trek to Yomi\", \"tr-TR\": \"Trek to Yomi\", \"fr-FR\": \"Trek to Yomi\", \"en-GB\": \"Trek to Yomi\", \"es-419\": \"Trek to Yomi\", \"ja-JP\": \"Trek to Yomi\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6zaNgabMSYydN9Hzw1b5A1Tu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/KmaVziC18wTB2odQNmfk3MHJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/njgnjtMn1qv3DC4bC5tI0MS1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/EvqHHsvwgHtIeiptDQ0vFvkB.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2404/7fjFv0hlahn984Qjw0QRGrv8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/IqmtsRpAxBn66nrws0wrgYRf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/a8ZmpylT4D8eF6vVJmu3iIEq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/6xEcuTLP7utMhlJHu5dJuM7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/NFbrO31zD1rS7gtJa9gP0gVl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/234TlFVKRbWHXDg2nd6WD72U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/RCQBZZFBR3jUbmVPclaieZOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/ak2VU3J6PO2SnyaEtLtnWXIE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/UhN9iLEd4lrl1kIevAfzztz6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/0100/4NqMeWgslrQMt6EvyyHAsGcG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2518/H38ighX3WbFQsB1tVWABV7QV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:18:48.770000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:26:14.820000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"CUSA32143_00\", \"name\": \"Let's Build a Zoo\", \"localizedName\": \"Let's Build a Zoo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10004466, \"titleIds\": [\"CUSA34919_00\", \"PPSA06437_00\", \"PPSA06438_00\", \"CUSA32144_00\", \"CUSA32143_00\", \"CUSA34917_00\"], \"name\": \"Let's Build a Zoo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Build a Zoo\", \"uk-UA\": \"Let's Build a Zoo\", \"de-DE\": \"Let's Build a Zoo\", \"en-US\": \"Let's Build a Zoo\", \"pt-BR\": \"Let's Build a Zoo\", \"es-ES\": \"Let's Build a Zoo\", \"ar-AE\": \"Let's Build a Zoo\", \"no-NO\": \"Let's Build a Zoo\", \"fr-CA\": \"Let's Build a Zoo\", \"it-IT\": \"Let's Build a Zoo\", \"pl-PL\": \"Let's Build a Zoo\", \"ru-RU\": \"Let's Build a Zoo\", \"nl-NL\": \"Let's Build a Zoo\", \"pt-PT\": \"Let's Build a Zoo\", \"sv-SE\": \"Let's Build a Zoo\", \"da-DK\": \"Let's Build a Zoo\", \"tr-TR\": \"Let's Build a Zoo\", \"fr-FR\": \"Let's Build a Zoo\", \"en-GB\": \"Let's Build a Zoo\", \"es-419\": \"Let's Build a Zoo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:03:49.480000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:17:42.740000Z\", \"playDuration\": \"PT8M46S\"}, {\"titleId\": \"PPSA06437_00\", \"name\": \"Let's Build a Zoo\", \"localizedName\": \"Let's Build a Zoo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004466, \"titleIds\": [\"CUSA34919_00\", \"PPSA06437_00\", \"PPSA06438_00\", \"CUSA32144_00\", \"CUSA32143_00\", \"CUSA34917_00\"], \"name\": \"Let's Build a Zoo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Let's Build a Zoo\", \"uk-UA\": \"Let's Build a Zoo\", \"de-DE\": \"Let's Build a Zoo\", \"en-US\": \"Let's Build a Zoo\", \"pt-BR\": \"Let's Build a Zoo\", \"es-ES\": \"Let's Build a Zoo\", \"ar-AE\": \"Let's Build a Zoo\", \"no-NO\": \"Let's Build a Zoo\", \"fr-CA\": \"Let's Build a Zoo\", \"it-IT\": \"Let's Build a Zoo\", \"pl-PL\": \"Let's Build a Zoo\", \"ru-RU\": \"Let's Build a Zoo\", \"nl-NL\": \"Let's Build a Zoo\", \"pt-PT\": \"Let's Build a Zoo\", \"sv-SE\": \"Let's Build a Zoo\", \"da-DK\": \"Let's Build a Zoo\", \"tr-TR\": \"Let's Build a Zoo\", \"fr-FR\": \"Let's Build a Zoo\", \"en-GB\": \"Let's Build a Zoo\", \"es-419\": \"Let's Build a Zoo\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/xK63RtxKO6dJH8uhVOzT3BHF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2610/NEram1xKm854pKilIKzRNoIf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gY0pJuxKSHFrtqyS4YI3vzxy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/Q8nyi6nIN0WnrTfvDGYQQvsm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/gCrsCSyDwOCkM2a8CWMHwnFL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/H8Ey5JIFjV7JnsqgoMLcmt94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/T6KtolrBd4FVaKllATyWAavh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/MtkMBShZEAc1bGhKjh9BbSEy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/N2b6eKIx0gLkOIHa2jw54jIF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/EdqzHIvKtNcCSjbQa6G2xuxb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/7FizYazS1l2gCJOURkNxeJqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/VchUF5sRc3bcufhv0epHZDQk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/hGdxNnzEKLtbpnsA0sOJtrgn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2211/UBZ9vdOlUTC4y4zTePSVILNu.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T01:12:22.340000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:17:09.750000Z\", \"playDuration\": \"PT4M38S\"}, {\"titleId\": \"PPSA06953_00\", \"name\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"localizedName\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10004731, \"titleIds\": [\"PPSA06953_00\", \"PPSA08158_00\"], \"name\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/W8AlbUlqfZ5H1ZwTX0iLXChI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/BFrLmsU0Qpia15JY1TWVqN2h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/v2CkUJCALGhqQbJwlevzOKGW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/vdefGeXzw9IOjLOP2ye3kGf6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"uk-UA\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"de-DE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"en-US\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pt-BR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"es-ES\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"ar-AE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"no-NO\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"fr-CA\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"it-IT\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pl-PL\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"ru-RU\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"nl-NL\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"pt-PT\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"sv-SE\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"da-DK\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"tr-TR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"fr-FR\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"en-GB\": \"Undernauts: Labyrinth of Yomi (PS5)\", \"es-419\": \"Undernauts: Labyrinth of Yomi (PS5)\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/W8AlbUlqfZ5H1ZwTX0iLXChI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/BFrLmsU0Qpia15JY1TWVqN2h.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/v2CkUJCALGhqQbJwlevzOKGW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/vdefGeXzw9IOjLOP2ye3kGf6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0301/NWTb6Va0gwy2KSWmfA5MGvFB.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-15T00:54:23.710000Z\", \"lastPlayedDateTime\": \"2023-06-15T01:02:46.870000Z\", \"playDuration\": \"PT8M20S\"}, {\"titleId\": \"CUSA36661_00\", \"name\": \"Space Accident\", \"localizedName\": \"Space Accident\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006130, \"titleIds\": [\"CUSA36661_00\", \"CUSA36874_00\", \"CUSA36998_00\", \"CUSA37001_00\"], \"name\": \"Space Accident\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Accident\", \"uk-UA\": \"Space Accident\", \"de-DE\": \"Space Accident\", \"en-US\": \"Space Accident\", \"pt-BR\": \"Space Accident\", \"es-ES\": \"Space Accident\", \"ar-AE\": \"Space Accident\", \"no-NO\": \"Space Accident\", \"fr-CA\": \"Space Accident\", \"it-IT\": \"Space Accident\", \"pl-PL\": \"Space Accident\", \"ru-RU\": \"Space Accident\", \"nl-NL\": \"Space Accident\", \"pt-PT\": \"Space Accident\", \"sv-SE\": \"Space Accident\", \"da-DK\": \"Space Accident\", \"tr-TR\": \"Space Accident\", \"fr-FR\": \"Space Accident\", \"en-GB\": \"Space Accident\", \"es-419\": \"Space Accident\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T15:05:15.090000Z\", \"lastPlayedDateTime\": \"2023-06-14T15:53:21.020000Z\", \"playDuration\": \"PT45M46S\"}, {\"titleId\": \"CUSA36874_00\", \"name\": \"Space Accident\", \"localizedName\": \"Space Accident\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006130, \"titleIds\": [\"CUSA36661_00\", \"CUSA36874_00\", \"CUSA36998_00\", \"CUSA37001_00\"], \"name\": \"Space Accident\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Space Accident\", \"uk-UA\": \"Space Accident\", \"de-DE\": \"Space Accident\", \"en-US\": \"Space Accident\", \"pt-BR\": \"Space Accident\", \"es-ES\": \"Space Accident\", \"ar-AE\": \"Space Accident\", \"no-NO\": \"Space Accident\", \"fr-CA\": \"Space Accident\", \"it-IT\": \"Space Accident\", \"pl-PL\": \"Space Accident\", \"ru-RU\": \"Space Accident\", \"nl-NL\": \"Space Accident\", \"pt-PT\": \"Space Accident\", \"sv-SE\": \"Space Accident\", \"da-DK\": \"Space Accident\", \"tr-TR\": \"Space Accident\", \"fr-FR\": \"Space Accident\", \"en-GB\": \"Space Accident\", \"es-419\": \"Space Accident\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0721/323461defd11c5c0bc6104291cdf806eba3cce5f78d27c03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/19b6f5eabaec3c0da4f1cc258f6f9cce384b627efe068970.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/89ceac0f6c38c64678f4b06a3fca0cd7231d73e33e8a4805.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/23113e1e9fcdcc526cb523ed8cf3015e8a2dfa3b62939ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/48b4229aa850b4be2c81d97d42319c46f8eb449b2249c594.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/4143383c4c9248122bc93602cd8ba4de42f011aa2dd26fe5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/737e82f442df0855dfcbf722f0d0710edd68f9ae2f818bac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/f4715c1e756da49a013bbd6df092291e1f84eff139157d84.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/5b16ada43f42fc65b88edffd2310c49db58c35f8512d8ab6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1918/058147b1766a78f669366a2b3d9e4371c3112d0c707405e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0712/38ddea10cb02d7ad5c7bd2dd0b0c16399e842c000f0147ce.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T13:35:36.930000Z\", \"lastPlayedDateTime\": \"2023-06-14T15:05:11.910000Z\", \"playDuration\": \"PT1H27M29S\"}, {\"titleId\": \"PPSA15455_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T13:04:36.300000Z\", \"lastPlayedDateTime\": \"2023-06-14T13:13:02.310000Z\", \"playDuration\": \"PT8M13S\"}, {\"titleId\": \"PPSA15454_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:55:21.800000Z\", \"lastPlayedDateTime\": \"2023-06-14T13:04:34.230000Z\", \"playDuration\": \"PT8M30S\"}, {\"titleId\": \"CUSA42452_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:40:10.050000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:48:50.360000Z\", \"playDuration\": \"PT8M37S\"}, {\"titleId\": \"CUSA42453_00\", \"name\": \"Cat Souls\", \"localizedName\": \"Cat Souls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007995, \"titleIds\": [\"PPSA15454_00\", \"PPSA15455_00\", \"CUSA42453_00\", \"CUSA42452_00\"], \"name\": \"Cat Souls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Souls\", \"uk-UA\": \"Cat Souls\", \"de-DE\": \"Cat Souls\", \"en-US\": \"Cat Souls\", \"pt-BR\": \"Cat Souls\", \"es-ES\": \"Cat Souls\", \"ar-AE\": \"Cat Souls\", \"no-NO\": \"Cat Souls\", \"fr-CA\": \"Cat Souls\", \"it-IT\": \"Cat Souls\", \"pl-PL\": \"Cat Souls\", \"ru-RU\": \"Cat Souls\", \"nl-NL\": \"Cat Souls\", \"pt-PT\": \"Cat Souls\", \"sv-SE\": \"Cat Souls\", \"da-DK\": \"Cat Souls\", \"tr-TR\": \"Cat Souls\", \"fr-FR\": \"Cat Souls\", \"en-GB\": \"Cat Souls\", \"es-419\": \"Cat Souls\", \"ja-JP\": \"\\u30ad\\u30e3\\u30c3\\u30c8\\u30fb\\u30bd\\u30a6\\u30eb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/751b897383d85bc402dc0c2ec5adcf453a5e055b9d320be1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e0489b0912128f1f95d669b95288264bc48eeebef73e6efb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/3bb202d51b42de4a302ac5b092db858ddb8b99477daa76fa.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d0ee0ad1176f55837d054e4c856f6685919a0e1cd9fd83ee.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/82597cc95c7f7c3d5fd57da193b7b166200a22dd14afb5a5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/65f45b8d63004fc9d2cb8c22c87f19327402cee7b2881806.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/43b60d2e3b7fe68a11e794eee86549303c501a9553f63684.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/d7a16bdcd0fa649626746e6ab6093ba156fe4fae5ae7a169.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/39339ed1e74a5f2520231392bc8992ba53e3d91051baf0fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/fb530351bd0d751fbe3de67e70b7076653cdddecc45931f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/ef43e4f309f80087b133b4db92e67e9d49e10d5539b6d0e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/932eaa271e742852435942655caac29d5f6aed0c44d8e937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1611/e4e03c6953897013fa9053ddd1342fd8fe6b83d253406bb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T12:17:16.800000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:40:07.960000Z\", \"playDuration\": \"PT12M58S\"}, {\"titleId\": \"CUSA27347_00\", \"name\": \"Moon Raider\", \"localizedName\": \"Moon Raider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002641, \"titleIds\": [\"CUSA27346_00\", \"CUSA27347_00\"], \"name\": \"Moon Raider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moon Raider\", \"uk-UA\": \"Moon Raider\", \"de-DE\": \"Moon Raider\", \"en-US\": \"Moon Raider\", \"pt-BR\": \"Moon Raider\", \"es-ES\": \"Moon Raider\", \"ar-AE\": \"Moon Raider\", \"no-NO\": \"Moon Raider\", \"fr-CA\": \"Moon Raider\", \"it-IT\": \"Moon Raider\", \"pl-PL\": \"Moon Raider\", \"ru-RU\": \"Moon Raider\", \"nl-NL\": \"Moon Raider\", \"pt-PT\": \"Moon Raider\", \"sv-SE\": \"Moon Raider\", \"da-DK\": \"Moon Raider\", \"tr-TR\": \"Moon Raider\", \"fr-FR\": \"Moon Raider\", \"en-GB\": \"Moon Raider\", \"es-419\": \"Moon Raider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T10:50:08.490000Z\", \"lastPlayedDateTime\": \"2023-06-14T12:16:26.070000Z\", \"playDuration\": \"PT1H26M13S\"}, {\"titleId\": \"CUSA27346_00\", \"name\": \"Moon Raider\", \"localizedName\": \"Moon Raider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002641, \"titleIds\": [\"CUSA27346_00\", \"CUSA27347_00\"], \"name\": \"Moon Raider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moon Raider\", \"uk-UA\": \"Moon Raider\", \"de-DE\": \"Moon Raider\", \"en-US\": \"Moon Raider\", \"pt-BR\": \"Moon Raider\", \"es-ES\": \"Moon Raider\", \"ar-AE\": \"Moon Raider\", \"no-NO\": \"Moon Raider\", \"fr-CA\": \"Moon Raider\", \"it-IT\": \"Moon Raider\", \"pl-PL\": \"Moon Raider\", \"ru-RU\": \"Moon Raider\", \"nl-NL\": \"Moon Raider\", \"pt-PT\": \"Moon Raider\", \"sv-SE\": \"Moon Raider\", \"da-DK\": \"Moon Raider\", \"tr-TR\": \"Moon Raider\", \"fr-FR\": \"Moon Raider\", \"en-GB\": \"Moon Raider\", \"es-419\": \"Moon Raider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/gso6TOSJf3SGsJmI4yls3R17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/335SOXtDCQY5T7k1jNTCfQ7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1814/3XI95khxBddQsYnqe9e0QVzW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/dTObWzPKHeQoySOtELHggeR0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/5ywPDE7kwUDWBYxjaXjgsdrU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/aDNWbF8kkAeGQxaDpaPgJ8Rs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/y5FupjGY279sRIz5neEX2psU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/Rx0skYhUuq4eAKe21IJF5Rfn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/3o0w3kLcPnowNPWuiVI7G09t.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/VaiHozcDxfqrFozVO06hhgA1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/7KSnrMq1ynDGWM9bB0htuqyL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/RVl4e9RU5VXquFAdREI26YDC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/6rlBKo31iX9AML4EJbfGPQmA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/xKNgO3dzC82eU9bWBatgqOQI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202103/1816/z1o4vQZvfz1XEbP7CTPMMfKX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T06:58:47.560000Z\", \"lastPlayedDateTime\": \"2023-06-14T10:50:06.460000Z\", \"playDuration\": \"PT2H48M13S\"}, {\"titleId\": \"PPSA15223_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T06:03:27.310000Z\", \"lastPlayedDateTime\": \"2023-06-14T06:56:22.900000Z\", \"playDuration\": \"PT47M40S\"}, {\"titleId\": \"CUSA42228_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T04:55:37.340000Z\", \"lastPlayedDateTime\": \"2023-06-14T06:03:25.170000Z\", \"playDuration\": \"PT50M2S\"}, {\"titleId\": \"PPSA15222_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T04:05:58.990000Z\", \"lastPlayedDateTime\": \"2023-06-14T04:55:08.770000Z\", \"playDuration\": \"PT48M46S\"}, {\"titleId\": \"CUSA42227_00\", \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"localizedName\": \"Brave Soldier - Invasion of Cyborgs\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007910, \"titleIds\": [\"PPSA15223_00\", \"PPSA15222_00\", \"CUSA42227_00\", \"CUSA42228_00\"], \"name\": \"Brave Soldier - Invasion of Cyborgs\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Brave Soldier - Invasion of Cyborgs\", \"uk-UA\": \"Brave Soldier - Invasion of Cyborgs\", \"de-DE\": \"Brave Soldier - Invasion of Cyborgs\", \"en-US\": \"Brave Soldier - Invasion of Cyborgs\", \"ko-KR\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-BR\": \"Brave Soldier - Invasion of Cyborgs\", \"es-ES\": \"Brave Soldier - Invasion of Cyborgs\", \"ar-AE\": \"Brave Soldier - Invasion of Cyborgs\", \"no-NO\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-CA\": \"Brave Soldier - Invasion of Cyborgs\", \"it-IT\": \"Brave Soldier - Invasion of Cyborgs\", \"pl-PL\": \"Brave Soldier - Invasion of Cyborgs\", \"ru-RU\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hans\": \"Brave Soldier - Invasion of Cyborgs\", \"nl-NL\": \"Brave Soldier - Invasion of Cyborgs\", \"pt-PT\": \"Brave Soldier - Invasion of Cyborgs\", \"zh-Hant\": \"Brave Soldier - Invasion of Cyborgs\", \"sv-SE\": \"Brave Soldier - Invasion of Cyborgs\", \"da-DK\": \"Brave Soldier - Invasion of Cyborgs\", \"tr-TR\": \"Brave Soldier - Invasion of Cyborgs\", \"fr-FR\": \"Brave Soldier - Invasion of Cyborgs\", \"en-GB\": \"Brave Soldier - Invasion of Cyborgs\", \"es-419\": \"Brave Soldier - Invasion of Cyborgs\", \"ja-JP\": \"Brave Soldier - Invasion of Cyborgs\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/631813fb7643938339be37b583e3f75e9e8113f76ecb66c3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/230c224702b86295397c7f4ba1ba02aaa528c50c1787eca5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/57178dcae674e9bb09e5d4975d559bf2bf2a589f3e21a11b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d3b494d5d49a3c0f39f6e7b83c6e73157532caa5dc9d3224.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b0183c7bbfc89a4c0e3a6055e15a057f07ef7cd876074d3d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/cb126554a20d46aed44d43c360b8afced98cabd777e8e394.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/3ac9c37ecccec287caba1715e574ba73f12f7cbdc60fd793.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/711f46472615ccd1f43ee108c225696756a8600916fdaf03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/2ec123a20d2767b63d8341b46908dbe81dd2b2234dea4d47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a69e1d6484e73eb56362d1844f347296901a667d289afc61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e190e6789c838f457481ea9bcbe5edbdd229212d9e20bd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/e4a749e812bd31fc075bfab816c734515089a9b352333f53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0edfe820e63deacfe38d1f4b2b467d26fe331a518b3ef6b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/8269edd13012bb6b8ec75b2e9cf7ecc828c8ade4e57b4f94.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/1205c8451b173c93ce49676d9a46f49082739f0f59ac1940.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/7d6ce2c3d4381f908c1d2b335cc98acff39929deb0e2c3d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1500/43e9bb56c8a4f6b021bafa8795d61dc98a8d21bacd438453.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:25:16.990000Z\", \"lastPlayedDateTime\": \"2023-06-14T02:30:10.530000Z\", \"playDuration\": \"PT1H4M39S\"}, {\"titleId\": \"CUSA43696_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:17:30.830000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:20:20.690000Z\", \"playDuration\": \"PT1M38S\"}, {\"titleId\": \"CUSA43695_00\", \"name\": \"Scavenger Hunt: Switzerland\", \"localizedName\": \"Scavenger Hunt: Switzerland\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008529, \"titleIds\": [\"CUSA43696_00\", \"CUSA43695_00\", \"CUSA44350_00\", \"CUSA44349_00\"], \"name\": \"Scavenger Hunt: Switzerland\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Scavenger Hunt: Switzerland\", \"uk-UA\": \"Scavenger Hunt: Switzerland\", \"de-DE\": \"Schnitzeljagd: Schweiz\", \"en-US\": \"Scavenger Hunt: Switzerland\", \"ko-KR\": \"Scavenger Hunt: Switzerland\", \"pt-BR\": \"Scavenger Hunt: Switzerland\", \"es-ES\": \"Scavenger Hunt: Switzerland\", \"ar-AE\": \"Scavenger Hunt: Switzerland\", \"no-NO\": \"Scavenger Hunt: Switzerland\", \"fr-CA\": \"Scavenger Hunt: Switzerland\", \"it-IT\": \"Scavenger Hunt: Switzerland\", \"pl-PL\": \"Scavenger Hunt: Switzerland\", \"ru-RU\": \"Scavenger Hunt: Switzerland\", \"zh-Hans\": \"Scavenger Hunt: Switzerland\", \"nl-NL\": \"Scavenger Hunt: Switzerland\", \"pt-PT\": \"Scavenger Hunt: Switzerland\", \"zh-Hant\": \"Scavenger Hunt: Switzerland\", \"sv-SE\": \"Scavenger Hunt: Switzerland\", \"da-DK\": \"Scavenger Hunt: Switzerland\", \"tr-TR\": \"Scavenger Hunt: Switzerland\", \"fr-FR\": \"Scavenger Hunt: Switzerland\", \"en-GB\": \"Scavenger Hunt: Switzerland\", \"es-419\": \"Scavenger Hunt: Switzerland\", \"ja-JP\": \"Scavenger Hunt: Switzerland\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2117/544fe64f03e6688b22deb5fa2f0dbaf6a2957b86a5fa91d0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202307/0609/a2b2e9838a3f22a4cffa7f798a486d9bba9b7cff2ea546ed.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/7a2668250b3d16240061e6072ebc4efeab792d2a3fc85190.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-14T01:10:42.350000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:17:29.060000Z\", \"playDuration\": \"PT3M19S\"}, {\"titleId\": \"PPSA07674_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 44, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T07:35:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:10:01.450000Z\", \"playDuration\": \"PT4H50M41S\"}, {\"titleId\": \"PPSA08122_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 40, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-13T02:50:45.650000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:09:21.270000Z\", \"playDuration\": \"PT5H46M16S\"}, {\"titleId\": \"PPSA07673_00\", \"name\": \"Blood Waves\", \"localizedName\": \"Blood Waves\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 25, \"concept\": {\"id\": 232509, \"titleIds\": [\"CUSA12918_00\", \"CUSA19032_00\", \"PPSA07674_00\", \"PPSA08122_00\", \"PPSA07673_00\", \"CUSA12951_00\"], \"name\": \"Blood Waves\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SHOOTER\", \"SHOOTER\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blood Waves\", \"uk-UA\": \"Blood Waves\", \"de-DE\": \"Blood Waves\", \"en-US\": \"Blood Waves\", \"ko-KR\": \"Blood Waves\", \"pt-BR\": \"Blood Waves\", \"es-ES\": \"Blood Waves\", \"ar-AE\": \"Blood Waves\", \"no-NO\": \"Blood Waves\", \"fr-CA\": \"Blood Waves\", \"it-IT\": \"Blood Waves\", \"pl-PL\": \"Blood Waves\", \"ru-RU\": \"Blood Waves\", \"zh-Hans\": \"Blood Waves\", \"nl-NL\": \"Blood Waves\", \"pt-PT\": \"Blood Waves\", \"zh-Hant\": \"Blood Waves\", \"sv-SE\": \"Blood Waves\", \"da-DK\": \"Blood Waves\", \"tr-TR\": \"Blood Waves\", \"fr-FR\": \"Blood Waves\", \"en-GB\": \"Blood Waves\", \"es-419\": \"Blood Waves\", \"ja-JP\": \"Blood Waves\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lMz2FWCxbE8InKVGjWw65FHS.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/q6snpExK7gbWwynlGi3k5UGa.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/xLetlGXw9du5fmstBxbEg3m4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Bjeew7nwmVs7003VGPjQnQol.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/48hpqdvSpkUcGAtvJJYY4ao3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/eSua96N5mGLCXFWNr2Y6yoho.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/1QT8gLKS7Z2DCedj04VOsnGr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/pHaeIrKTaDhjsYQtcD8gDcOZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/lUpOlbmmWEjpZlTgCN5KF3J1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/bBUmRZlRvq0O70lkl0AFM3CT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/RQ2Lu2sk4p3OXITKSEPEuEEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/vbTnizvOJ3X8uhvKLYaToEQR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/Cr9uOi3kKV1hzKil1O9Qdbnb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/jvV6JQWbISEzlddpoB89CN31.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1412/0S3TMPUX8fhHPkbhw0Kwgr5N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA12951_00/1/i_d225027748bfff9ab5c763edd86465fca2026ceecef4583a823ab23997413556/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-13T10:36:15.740000Z\", \"lastPlayedDateTime\": \"2023-06-14T01:08:34.450000Z\", \"playDuration\": \"PT3H38M27S\"}, {\"titleId\": \"CUSA42709_00\", \"name\": \"Dig Deep\", \"localizedName\": \"Dig Deep\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 13, \"concept\": {\"id\": 10008122, \"titleIds\": [\"CUSA42709_00\", \"CUSA42710_00\"], \"name\": \"Dig Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dig Deep\", \"uk-UA\": \"Dig Deep\", \"de-DE\": \"Dig Deep\", \"en-US\": \"Dig Deep\", \"pt-BR\": \"Dig Deep\", \"es-ES\": \"Dig Deep\", \"ar-AE\": \"Dig Deep\", \"no-NO\": \"Dig Deep\", \"fr-CA\": \"Dig Deep\", \"it-IT\": \"Dig Deep\", \"pl-PL\": \"Dig Deep\", \"ru-RU\": \"Dig Deep\", \"nl-NL\": \"Dig Deep\", \"pt-PT\": \"Dig Deep\", \"sv-SE\": \"Dig Deep\", \"da-DK\": \"Dig Deep\", \"tr-TR\": \"Dig Deep\", \"fr-FR\": \"Dig Deep\", \"en-GB\": \"Dig Deep\", \"es-419\": \"Dig Deep\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:59:55.760000Z\", \"lastPlayedDateTime\": \"2023-06-14T00:32:45.060000Z\", \"playDuration\": \"PT24H5M33S\"}, {\"titleId\": \"CUSA42710_00\", \"name\": \"Dig Deep\", \"localizedName\": \"Dig Deep\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 14, \"concept\": {\"id\": 10008122, \"titleIds\": [\"CUSA42709_00\", \"CUSA42710_00\"], \"name\": \"Dig Deep\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dig Deep\", \"uk-UA\": \"Dig Deep\", \"de-DE\": \"Dig Deep\", \"en-US\": \"Dig Deep\", \"pt-BR\": \"Dig Deep\", \"es-ES\": \"Dig Deep\", \"ar-AE\": \"Dig Deep\", \"no-NO\": \"Dig Deep\", \"fr-CA\": \"Dig Deep\", \"it-IT\": \"Dig Deep\", \"pl-PL\": \"Dig Deep\", \"ru-RU\": \"Dig Deep\", \"nl-NL\": \"Dig Deep\", \"pt-PT\": \"Dig Deep\", \"sv-SE\": \"Dig Deep\", \"da-DK\": \"Dig Deep\", \"tr-TR\": \"Dig Deep\", \"fr-FR\": \"Dig Deep\", \"en-GB\": \"Dig Deep\", \"es-419\": \"Dig Deep\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/140b290e9811f981e2c0e6fecad57cc4a7ea3ca56112a9f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/beb988ea3c2181460c591fd8c9b1343e79714808fbb2e4cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/5fde9f23e39a46a4ec3367a9b4695ec35aac90b1e41f0074.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/28cf7e141a99771e361a60593ebf51ca0ccc6efa2f2b466e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/910eab8c7e9ab4d3a1847f9453fb5cc00f4c248b492d8e9b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/558f5dc3d7c880c4d1d9f0d67116bc735aa23ded2ae825a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/51447806aa1df1e7c040d38e88491c655c46eeb43853b3bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/1b44580be21de0c80b72f613a7b6e5c7b2f402ca84c43720.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2fd372582708d2a47ef2a13c70dc883f83a83c1299ebdf45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/2e5a013f6543361b751616f657ed1241c804684254f8a64f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/f74079c9f37e94be6d984f8a58344ef2f20f1253f59fe611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/9067729f2f5503227d3f68957846da4caedb8eb2a212cea3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8b8ffa622ebf5e99bc9298f23810f7b348cdfc8116473351.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T14:35:36.420000Z\", \"lastPlayedDateTime\": \"2023-06-13T00:59:17.750000Z\", \"playDuration\": \"PT21H7M51S\"}, {\"titleId\": \"CUSA36020_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:53:28.970000Z\", \"lastPlayedDateTime\": \"2023-06-12T07:12:58.030000Z\", \"playDuration\": \"PT19M15S\"}, {\"titleId\": \"CUSA43834_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:48:41.810000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:52:55.070000Z\", \"playDuration\": \"PT3M8S\"}, {\"titleId\": \"CUSA43832_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:43:04.070000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:48:39.980000Z\", \"playDuration\": \"PT5M5S\"}, {\"titleId\": \"CUSA43833_00\", \"name\": \"Learn Katakana!!\", \"localizedName\": \"Learn Katakana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008596, \"titleIds\": [\"CUSA43832_00\", \"CUSA43833_00\", \"CUSA43834_00\", \"CUSA43835_00\"], \"name\": \"Learn Katakana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Katakana!!\", \"uk-UA\": \"Learn Katakana!!\", \"de-DE\": \"Learn Katakana!!\", \"en-US\": \"Learn Katakana!!\", \"ko-KR\": \"Learn Katakana!!\", \"pt-BR\": \"Learn Katakana!!\", \"es-ES\": \"Learn Katakana!!\", \"ar-AE\": \"Learn Katakana!!\", \"no-NO\": \"Learn Katakana!!\", \"fr-CA\": \"Learn Katakana!!\", \"it-IT\": \"Learn Katakana!!\", \"pl-PL\": \"Learn Katakana!!\", \"ru-RU\": \"Learn Katakana!!\", \"zh-Hans\": \"Learn Katakana!!\", \"nl-NL\": \"Learn Katakana!!\", \"pt-PT\": \"Learn Katakana!!\", \"zh-Hant\": \"Learn Katakana!!\", \"sv-SE\": \"Learn Katakana!!\", \"da-DK\": \"Learn Katakana!!\", \"tr-TR\": \"Learn Katakana!!\", \"fr-FR\": \"Learn Katakana!!\", \"en-GB\": \"Learn Katakana!!\", \"es-419\": \"Learn Katakana!!\", \"ja-JP\": \"Learn Katakana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/3c982bdcabf2cfd1d94c95d67ab67c64b2c7730ac00b3d1f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/6615a6d111eb15f2547b62a81d1de48e0bab651ff75f8092.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/72456ba8b2bf380117ccb03e6c99d7b76d243a0a044f5296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/69609986bfb0a3ad198e6dbef3a4e54fae27a06defc26d17.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3118/2e957877ff3eb657a1bbcf7149bb67c02dfa7877552d76a9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:36:56.800000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:43:02.200000Z\", \"playDuration\": \"PT5M43S\"}, {\"titleId\": \"CUSA38001_00\", \"name\": \"Learn Hiragana!!\", \"localizedName\": \"Learn Hiragana!!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006521, \"titleIds\": [\"CUSA37999_00\", \"CUSA38001_00\", \"CUSA38002_00\", \"CUSA38000_00\"], \"name\": \"Learn Hiragana!!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Learn Hiragana!!\", \"uk-UA\": \"Learn Hiragana!!\", \"de-DE\": \"Learn Hiragana!!\", \"en-US\": \"Learn Hiragana!!\", \"ko-KR\": \"Learn Hiragana!!\", \"pt-BR\": \"Learn Hiragana!!\", \"es-ES\": \"Learn Hiragana!!\", \"ar-AE\": \"Learn Hiragana!!\", \"no-NO\": \"Learn Hiragana!!\", \"fr-CA\": \"Learn Hiragana!!\", \"it-IT\": \"Learn Hiragana!!\", \"pl-PL\": \"Learn Hiragana!!\", \"ru-RU\": \"Learn Hiragana!!\", \"zh-Hans\": \"Learn Hiragana!!\", \"nl-NL\": \"Learn Hiragana!!\", \"pt-PT\": \"Learn Hiragana!!\", \"zh-Hant\": \"Learn Hiragana!!\", \"sv-SE\": \"Learn Hiragana!!\", \"da-DK\": \"Learn Hiragana!!\", \"tr-TR\": \"Learn Hiragana!!\", \"fr-FR\": \"Learn Hiragana!!\", \"en-GB\": \"Learn Hiragana!!\", \"es-419\": \"Learn Hiragana!!\", \"ja-JP\": \"Learn Hiragana!!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/yb6d4KFbaiySSRhrW2s8Hy8w.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/VlRo4PDmBrTlO8ym82HdxeLb.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1013/v7IzoPYXi4AC3PmA0Mo6tvVO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:30:40.310000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:36:54.880000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"CUSA35676_00\", \"name\": \"Oriana - My First Date RPG\", \"localizedName\": \"Oriana - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005481, \"titleIds\": [\"CUSA35677_00\", \"CUSA35440_00\", \"CUSA34737_00\", \"CUSA34736_00\", \"CUSA35676_00\", \"CUSA36130_00\", \"CUSA36132_00\", \"CUSA35439_00\", \"CUSA36131_00\", \"CUSA36133_00\"], \"name\": \"Oriana - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Oriana - My First Date RPG\", \"uk-UA\": \"Oriana - My First Date RPG\", \"de-DE\": \"Oriana - My First Date RPG\", \"en-US\": \"Oriana - My First Date RPG\", \"pt-BR\": \"Oriana - My First Date RPG\", \"es-ES\": \"Oriana - My First Date RPG\", \"ar-AE\": \"Oriana - My First Date RPG\", \"no-NO\": \"Oriana - My First Date RPG\", \"fr-CA\": \"Oriana - My First Date RPG\", \"it-IT\": \"Oriana - My First Date RPG\", \"pl-PL\": \"Oriana - My First Date RPG\", \"ru-RU\": \"Oriana - My First Date RPG\", \"nl-NL\": \"Oriana - My First Date RPG\", \"pt-PT\": \"Oriana - My First Date RPG\", \"sv-SE\": \"Oriana - My First Date RPG\", \"da-DK\": \"Oriana - My First Date RPG\", \"tr-TR\": \"Oriana - My First Date RPG\", \"fr-FR\": \"Oriana - My First Date RPG\", \"en-GB\": \"Oriana - My First Date RPG\", \"es-419\": \"Oriana - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:24:58.440000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:29:25.570000Z\", \"playDuration\": \"PT3M29S\"}, {\"titleId\": \"CUSA35677_00\", \"name\": \"Oriana - My First Date RPG\", \"localizedName\": \"Oriana - My First Date RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005481, \"titleIds\": [\"CUSA35677_00\", \"CUSA35440_00\", \"CUSA34737_00\", \"CUSA34736_00\", \"CUSA35676_00\", \"CUSA36130_00\", \"CUSA36132_00\", \"CUSA35439_00\", \"CUSA36131_00\", \"CUSA36133_00\"], \"name\": \"Oriana - My First Date RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Oriana - My First Date RPG\", \"uk-UA\": \"Oriana - My First Date RPG\", \"de-DE\": \"Oriana - My First Date RPG\", \"en-US\": \"Oriana - My First Date RPG\", \"pt-BR\": \"Oriana - My First Date RPG\", \"es-ES\": \"Oriana - My First Date RPG\", \"ar-AE\": \"Oriana - My First Date RPG\", \"no-NO\": \"Oriana - My First Date RPG\", \"fr-CA\": \"Oriana - My First Date RPG\", \"it-IT\": \"Oriana - My First Date RPG\", \"pl-PL\": \"Oriana - My First Date RPG\", \"ru-RU\": \"Oriana - My First Date RPG\", \"nl-NL\": \"Oriana - My First Date RPG\", \"pt-PT\": \"Oriana - My First Date RPG\", \"sv-SE\": \"Oriana - My First Date RPG\", \"da-DK\": \"Oriana - My First Date RPG\", \"tr-TR\": \"Oriana - My First Date RPG\", \"fr-FR\": \"Oriana - My First Date RPG\", \"en-GB\": \"Oriana - My First Date RPG\", \"es-419\": \"Oriana - My First Date RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/e9tCgNkVVw2HBQsStGesvfNW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/5R2L90fVfPKjbrcp5Dkq8IXC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/a8v4kIWpiuEDpbC9upbnXSk0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1408/Q9M5Fx5ys62LyXfUxPyQ0GLl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0218/1kKeHKJXt11oUaFloychT0RJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-12T06:21:03.640000Z\", \"lastPlayedDateTime\": \"2023-06-12T06:24:56.810000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA34368_00\", \"name\": \"Hyper-5\", \"localizedName\": \"Hyper-5\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005349, \"titleIds\": [\"CUSA34368_00\", \"PPSA08305_00\", \"CUSA34367_00\", \"PPSA08304_00\"], \"name\": \"Hyper-5\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hyper-5\", \"uk-UA\": \"Hyper-5\", \"de-DE\": \"Hyper-5\", \"en-US\": \"Hyper-5\", \"ko-KR\": \"Hyper-5\", \"pt-BR\": \"Hyper-5\", \"es-ES\": \"Hyper-5\", \"ar-AE\": \"Hyper-5\", \"no-NO\": \"Hyper-5\", \"fr-CA\": \"Hyper-5\", \"it-IT\": \"Hyper-5\", \"pl-PL\": \"Hyper-5\", \"ru-RU\": \"Hyper-5\", \"zh-Hans\": \"Hyper-5\", \"nl-NL\": \"Hyper-5\", \"pt-PT\": \"Hyper-5\", \"zh-Hant\": \"Hyper-5\", \"sv-SE\": \"Hyper-5\", \"da-DK\": \"Hyper-5\", \"tr-TR\": \"Hyper-5\", \"fr-FR\": \"Hyper-5\", \"en-GB\": \"Hyper-5\", \"es-419\": \"Hyper-5\", \"ja-JP\": \"Hyper-5\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/919a6c748fc0a01d01db1fc9943c843cf4ac2130d50161d0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/f351fe58ab59b70c7c11ed30c94abaf3f1daa7989e75f631.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a52cb8a68bd75fb6c38476afffab11d89404f7c8f7647be0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/27aeb9838845d7de33b212b389d7ba4a89a14d6c3bd15328.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/710861213d3568bb0b006a3a0ccfb1075a650533657e0607.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/b41e0d1e130048877512695810465cdab941a5140277da2e.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/8deb9ac54d85c4ab06d38c9a637d59c46f0cbd8c21bcf53e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/6da116661c39a3fd36b7cc761558f6642a9f60f77ab34cb4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/90f4bb88f480816d5ced1e934589c439757d6eade269b357.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d0f3ff71c7f6cf32baffb4cbb9e20edde5bada549b5edfaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/d55c02682f60bfe8ebcf241a23511879a37b1c3715b56bef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/1ede74ac43f80802cc9c0e81f97a6bd77978070b2ad77897.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/78a8cb3a70bca0034b44832575cc655edbae270470a0353b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/903090e300f8e5e1c2b1b6d02b7df8a8ddf416dc2f00c47f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/5919d5cfc9a0c87280a1e5ad902ee47519d6e86d0bf5aad7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2003/a709fa2b7a905b44309b9864242f64d8bc1ddb7ba3d6964a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0708/c8ca975378bddb6dbd1e2d315c91040cb31ad983f7bb7dec.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-11T00:51:41.470000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:38:43.520000Z\", \"playDuration\": \"PT6H23M16S\"}, {\"titleId\": \"PPSA10726_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:40:02.000000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:33:03.700000Z\", \"playDuration\": \"PT2H15M42S\"}, {\"titleId\": \"PPSA10727_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T08:15:11.350000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:30:07.820000Z\", \"playDuration\": \"PT1H25M6S\"}, {\"titleId\": \"CUSA37361_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-10T06:08:16.850000Z\", \"lastPlayedDateTime\": \"2023-06-12T05:23:32.610000Z\", \"playDuration\": \"PT2H7M31S\"}, {\"titleId\": \"CUSA37362_00\", \"name\": \"Lootbox Lyfe+\", \"localizedName\": \"Lootbox Lyfe+\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006333, \"titleIds\": [\"CUSA37361_00\", \"PPSA10726_00\", \"PPSA10727_00\", \"CUSA37362_00\"], \"name\": \"Lootbox Lyfe+\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lootbox Lyfe+\", \"uk-UA\": \"Lootbox Lyfe+\", \"de-DE\": \"Lootbox Lyfe+\", \"en-US\": \"Lootbox Lyfe+\", \"pt-BR\": \"Lootbox Lyfe+\", \"es-ES\": \"Lootbox Lyfe+\", \"ar-AE\": \"Lootbox Lyfe+\", \"no-NO\": \"Lootbox Lyfe+\", \"fr-CA\": \"Lootbox Lyfe+\", \"it-IT\": \"Lootbox Lyfe+\", \"pl-PL\": \"Lootbox Lyfe+\", \"ru-RU\": \"Lootbox Lyfe+\", \"nl-NL\": \"Lootbox Lyfe+\", \"pt-PT\": \"Lootbox Lyfe+\", \"sv-SE\": \"Lootbox Lyfe+\", \"da-DK\": \"Lootbox Lyfe+\", \"tr-TR\": \"Lootbox Lyfe+\", \"fr-FR\": \"Lootbox Lyfe+\", \"en-GB\": \"Lootbox Lyfe+\", \"es-419\": \"Lootbox Lyfe+\", \"ja-JP\": \"Lootbox Lyfe+\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/26b9cf0d4b1f2c6c178c8190956fd18335ab536dbcc9decb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/73624dddb3c496914c5349256b7436379c56f347ab5d9f35.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/7a6ff651134e7abeef8d303041f93e136a13aa8f80459fbe.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/fded8e2359a94ca377fded72acaf20115339a640f5655e19.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/dac9768f17527718afb474c901a9f6e1baddce6895770819.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/474edc1851b1173316dc808e2c6b72556bd8404f6013e80c.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/d6efbf94ae2a43342621b4c7b4b9feab2d0e59d00911edcc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/5baace7ec9bfa3fd257974eac0ed6380b509fc8377cad75e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/b418a8432e8faac3d36935fcc01e35bf0f8d439f6cda2e61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/949a2b294075057a5f09576032fe228407e9671696f8d10b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/144bbc630c8cd7f361e904c53598fc01be600910f118d061.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/4781aae863ce193f3a2d652e3c51355af9b7c10cc028866b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0610/30383d842e1ad0270633072c4c94bcc0c30b104942d24e75.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T06:36:07.760000Z\", \"lastPlayedDateTime\": \"2023-06-10T06:05:28.750000Z\", \"playDuration\": \"PT5H11S\"}, {\"titleId\": \"CUSA43227_00\", \"name\": \"Pixel Driver\", \"localizedName\": \"Pixel Driver\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10008321, \"titleIds\": [\"CUSA43227_00\", \"CUSA43226_00\"], \"name\": \"Pixel Driver\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/687b46fc3f198183cd6affde5157fc1e80514deae74ec34d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0607/0a6b37c2c486e541990a6d0b6ed45ce02079aa93e60dfb7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/7597e60e24011493c39421e554e4d11b4319acd8296a6b35.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/b9b0dac618bf0a1f5ecd564c9581ef6be083f5eee36cce7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/008481bcb9ffdae6cb0e2c9b15604ac7c99f9fe8e410691b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ecd5178e615001abba98fe1908ca6ab1f2c1f449aa67bf38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/38bc786d272ee14c6b1e9ac2e128179b70adb2e784b6e097.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/d9c6077633afcf98808502c2e6528cccbfd5d7e0f6085320.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/c667141b2abd86fbd952ef761b0103178754c31522138463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pixel Driver\", \"uk-UA\": \"Pixel Driver\", \"de-DE\": \"Pixel Driver\", \"en-US\": \"Pixel Driver\", \"ko-KR\": \"Pixel Driver\", \"pt-BR\": \"Pixel Driver\", \"es-ES\": \"Pixel Driver\", \"ar-AE\": \"Pixel Driver\", \"no-NO\": \"Pixel Driver\", \"fr-CA\": \"Pixel Driver\", \"it-IT\": \"Pixel Driver\", \"pl-PL\": \"Pixel Driver\", \"ru-RU\": \"Pixel Driver\", \"zh-Hans\": \"Pixel Driver\", \"nl-NL\": \"Pixel Driver\", \"pt-PT\": \"Pixel Driver\", \"zh-Hant\": \"Pixel Driver\", \"sv-SE\": \"Pixel Driver\", \"da-DK\": \"Pixel Driver\", \"tr-TR\": \"Pixel Driver\", \"fr-FR\": \"Pixel Driver\", \"en-GB\": \"Pixel Driver\", \"es-419\": \"Pixel Driver\", \"ja-JP\": \"Pixel Driver\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/687b46fc3f198183cd6affde5157fc1e80514deae74ec34d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0607/0a6b37c2c486e541990a6d0b6ed45ce02079aa93e60dfb7f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/7597e60e24011493c39421e554e4d11b4319acd8296a6b35.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/b9b0dac618bf0a1f5ecd564c9581ef6be083f5eee36cce7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/008481bcb9ffdae6cb0e2c9b15604ac7c99f9fe8e410691b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ecd5178e615001abba98fe1908ca6ab1f2c1f449aa67bf38.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/38bc786d272ee14c6b1e9ac2e128179b70adb2e784b6e097.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/d9c6077633afcf98808502c2e6528cccbfd5d7e0f6085320.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/c667141b2abd86fbd952ef761b0103178754c31522138463.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0512/ed2cbdf1e3f86d5c5b064d210a286f28165df7b290af98e5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:30:50.780000Z\", \"lastPlayedDateTime\": \"2023-06-09T06:35:46.490000Z\", \"playDuration\": \"PT2H1M8S\"}, {\"titleId\": \"CUSA35875_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:28:05.350000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:30:10.410000Z\", \"playDuration\": \"PT1M53S\"}, {\"titleId\": \"CUSA35876_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:25:26.330000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:28:03.680000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA35874_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:23:36.980000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:25:24.340000Z\", \"playDuration\": \"PT1M40S\"}, {\"titleId\": \"CUSA35873_00\", \"name\": \"UD CAVE\", \"localizedName\": \"UD CAVE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005869, \"titleIds\": [\"CUSA35875_00\", \"CUSA35876_00\", \"CUSA35873_00\", \"CUSA35874_00\"], \"name\": \"UD CAVE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"UD CAVE\", \"uk-UA\": \"UD CAVE\", \"de-DE\": \"UD CAVE\", \"en-US\": \"UD CAVE\", \"ko-KR\": \"UD CAVE\", \"pt-BR\": \"UD CAVE\", \"es-ES\": \"UD CAVE\", \"ar-AE\": \"UD CAVE\", \"no-NO\": \"UD CAVE\", \"fr-CA\": \"UD CAVE\", \"it-IT\": \"UD CAVE\", \"pl-PL\": \"UD CAVE\", \"ru-RU\": \"UD CAVE\", \"zh-Hans\": \"UD CAVE\", \"nl-NL\": \"UD CAVE\", \"pt-PT\": \"UD CAVE\", \"zh-Hant\": \"UD CAVE\", \"sv-SE\": \"UD CAVE\", \"da-DK\": \"UD CAVE\", \"tr-TR\": \"UD CAVE\", \"fr-FR\": \"UD CAVE\", \"en-GB\": \"UD CAVE\", \"es-419\": \"UD CAVE\", \"ja-JP\": \"UD CAVE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/3113/57d44f9e0032cf37b38b65ae98db6ea92d2d85a47f72f66d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0718/ed67b8a0daac7807ad1cd8caee0e9f5fd99da9294b7c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/EgXXK5djadmwKEmekxSc61tR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/Q8enRAhMMwt6oe5ltx9mx3X3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/POWUuN5H9bUKE4zUmx96WgqT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:20:35.200000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:23:35.300000Z\", \"playDuration\": \"PT2M45S\"}, {\"titleId\": \"PPSA16673_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:15:49.000000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:19:46.650000Z\", \"playDuration\": \"PT3M45S\"}, {\"titleId\": \"PPSA16672_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:11:15.410000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:15:47.030000Z\", \"playDuration\": \"PT4M19S\"}, {\"titleId\": \"PPSA16671_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:07:04.650000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:11:12.530000Z\", \"playDuration\": \"PT3M59S\"}, {\"titleId\": \"PPSA16670_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T04:02:44.000000Z\", \"lastPlayedDateTime\": \"2023-06-09T04:07:01.490000Z\", \"playDuration\": \"PT4M4S\"}, {\"titleId\": \"CUSA43594_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T03:05:33.620000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:09:27.010000Z\", \"playDuration\": \"PT3M45S\"}, {\"titleId\": \"CUSA43593_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T03:01:42.410000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:05:29.700000Z\", \"playDuration\": \"PT3M35S\"}, {\"titleId\": \"CUSA43591_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:57:28.170000Z\", \"lastPlayedDateTime\": \"2023-06-09T03:01:38.530000Z\", \"playDuration\": \"PT3M55S\"}, {\"titleId\": \"CUSA43592_00\", \"name\": \"Do Not Crash\", \"localizedName\": \"Do Not Crash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008475, \"titleIds\": [\"CUSA43592_00\", \"CUSA43591_00\", \"CUSA43593_00\", \"PPSA16670_00\", \"PPSA16673_00\", \"CUSA43594_00\", \"PPSA16671_00\", \"PPSA16672_00\"], \"name\": \"Do Not Crash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Do Not Crash\", \"uk-UA\": \"Do Not Crash\", \"de-DE\": \"Do Not Crash\", \"en-US\": \"Do Not Crash\", \"ko-KR\": \"Do Not Crash\", \"pt-BR\": \"Do Not Crash\", \"es-ES\": \"Do Not Crash\", \"ar-AE\": \"Do Not Crash\", \"no-NO\": \"Do Not Crash\", \"fr-CA\": \"Do Not Crash\", \"it-IT\": \"Do Not Crash\", \"pl-PL\": \"Do Not Crash\", \"ru-RU\": \"Do Not Crash\", \"zh-Hans\": \"Do Not Crash\", \"nl-NL\": \"Do Not Crash\", \"pt-PT\": \"Do Not Crash\", \"zh-Hant\": \"Do Not Crash\", \"sv-SE\": \"Do Not Crash\", \"da-DK\": \"Do Not Crash\", \"tr-TR\": \"Do Not Crash\", \"fr-FR\": \"Do Not Crash\", \"en-GB\": \"Do Not Crash\", \"es-419\": \"Do Not Crash\", \"ja-JP\": \"Do Not Crash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/37c1e728b5c4fb45d33201dc855c5acda6b2a7d2ceca01c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/d0b0fa1add0900039db56bd37a6532494d403c3a65a8a732.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/25e6686183c8a33d6620601dd1278fc2147deca891311f6b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/47559b650eecfb3dad712850ed2f3104c9d24b880f14ff53.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/806ee2ecb3f72a6f72abff8f6ab5235265c0be0fbf1dfd7d.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/2dfff4e74f5af0273b99d61b3ed155e481e72da34b64aeb8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3013/3cb0f8ddfa62a685ddb327272cf1ab381b8e41495d6805c6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:52:23.040000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:57:24.200000Z\", \"playDuration\": \"PT4M49S\"}, {\"titleId\": \"PPSA12581_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:43:01.450000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:46:43.320000Z\", \"playDuration\": \"PT3M22S\"}, {\"titleId\": \"PPSA12582_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:39:11.910000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:42:59.320000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA39537_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:32:21.500000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:39:09.620000Z\", \"playDuration\": \"PT6M19S\"}, {\"titleId\": \"CUSA39538_00\", \"name\": \"Falling Blocks\", \"localizedName\": \"Falling Blocks\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006943, \"titleIds\": [\"PPSA12582_00\", \"PPSA12579_00\", \"PPSA12580_00\", \"CUSA39537_00\", \"PPSA12581_00\", \"CUSA39535_00\", \"CUSA39536_00\", \"CUSA39538_00\"], \"name\": \"Falling Blocks\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Falling Blocks\", \"uk-UA\": \"Falling Blocks\", \"de-DE\": \"Falling Blocks\", \"en-US\": \"Falling Blocks\", \"ko-KR\": \"Falling Blocks\", \"pt-BR\": \"Falling Blocks\", \"es-ES\": \"Falling Blocks\", \"ar-AE\": \"Falling Blocks\", \"no-NO\": \"Falling Blocks\", \"fr-CA\": \"Falling Blocks\", \"it-IT\": \"Falling Blocks\", \"pl-PL\": \"Falling Blocks\", \"ru-RU\": \"Falling Blocks\", \"zh-Hans\": \"Falling Blocks\", \"nl-NL\": \"Falling Blocks\", \"pt-PT\": \"Falling Blocks\", \"zh-Hant\": \"Falling Blocks\", \"sv-SE\": \"Falling Blocks\", \"da-DK\": \"Falling Blocks\", \"tr-TR\": \"Falling Blocks\", \"fr-FR\": \"Falling Blocks\", \"en-GB\": \"Falling Blocks\", \"es-419\": \"Falling Blocks\", \"ja-JP\": \"Falling Blocks\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jQDzA2XC2UG2R51rwrS2uCPF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/nrrgqkiRUzRQFiZU8XZkfMUP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/jK5cNxHC5djjMgomghMeCsoP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/dCs8mqIVpzvyDBt3uW23PEKx.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/UQyEhx4O1n0JcDrGMeerHIUl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/CTPzeBRJ2JiWFPL1NwLCEW0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1114/Lyx8keTcIPYCz6u7fsnjqjC7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-09T02:28:29.320000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:32:15.930000Z\", \"playDuration\": \"PT3M32S\"}, {\"titleId\": \"CUSA23980_00\", \"name\": \"Life is Strange Remastered Collection\", \"localizedName\": \"Life is Strange Remastered Collection\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10001187, \"titleIds\": [\"CUSA23980_00\", \"CUSA23981_00\", \"CUSA23982_00\"], \"name\": \"Life is Strange Remastered Collection\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/Nz4Wyunro1obQMfhHlIQesJw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/shz6QlQN2Mfx92nGdVyjHzF2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Life is Strange Remastered Collection\", \"uk-UA\": \"Life is Strange Remastered Collection\", \"de-DE\": \"Life is Strange Remastered Collection\", \"en-US\": \"Life is Strange Remastered Collection\", \"ko-KR\": \"Life is Strange Remastered Collection\", \"pt-BR\": \"Life is Strange Remastered Collection\", \"es-ES\": \"Life is Strange Remastered Collection\", \"ar-AE\": \"\\u0645\\u062c\\u0645\\u0648\\u0639\\u0629 Life is Strange Remastered\", \"no-NO\": \"Life is Strange Remastered Collection\", \"fr-CA\": \"Life is Strange Remastered Collection\", \"it-IT\": \"Life is Strange Remastered Collection\", \"pl-PL\": \"Life is Strange Remastered Collection\", \"ru-RU\": \"Life is Strange Remastered Collection\", \"zh-Hans\": \"Life is Strange\\u91cd\\u88fd\\u7248\\u7d44\\u5408\\u5305\", \"nl-NL\": \"Life is Strange Remastered Collection\", \"pt-PT\": \"Life is Strange Remastered Collection\", \"zh-Hant\": \"Life is Strange\\u91cd\\u5236\\u5408\\u96c6\\u5305\", \"sv-SE\": \"Life is Strange Remastered Collection\", \"da-DK\": \"Life is Strange Remastered Collection\", \"tr-TR\": \"Life is Strange Remastered Collection\", \"fr-FR\": \"Life is Strange Remastered Collection\", \"en-GB\": \"Life is Strange Remastered Collection\", \"es-419\": \"Life is Strange Remastered Collection\", \"ja-JP\": \"Life is Strange Remastered Collection\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/Nz4Wyunro1obQMfhHlIQesJw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202106/1514/shz6QlQN2Mfx92nGdVyjHzF2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1412/bJYCCmymxvgviuuolfOx8srg.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-08T10:05:07.840000Z\", \"lastPlayedDateTime\": \"2023-06-09T02:28:00.000000Z\", \"playDuration\": \"PT5H55M32S\"}, {\"titleId\": \"CUSA23977_00\", \"name\": \"Life is Strange Remastered\", \"localizedName\": \"Life is Strange Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10001186, \"titleIds\": [\"CUSA23979_00\", \"CUSA23978_00\", \"CUSA23977_00\"], \"name\": \"Life is Strange Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2416/rNzJ9zZTpqTs5qLAFipBgWpW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Life is Strange Remastered\", \"uk-UA\": \"Life is Strange Remastered\", \"de-DE\": \"Life is Strange Remastered\", \"en-US\": \"Life is Strange Remastered\", \"ko-KR\": \"Life is Strange Remastered\", \"pt-BR\": \"Life is Strange Remastered\", \"es-ES\": \"Life is Strange Remastered\", \"ar-AE\": \"Life is Strange Remastered\", \"no-NO\": \"Life is Strange Remastered\", \"fr-CA\": \"Life is Strange Remastered\", \"it-IT\": \"Life is Strange Remastered\", \"pl-PL\": \"Life is Strange Remastered\", \"ru-RU\": \"Life is Strange Remastered\", \"zh-Hans\": \"Life is Strange\\u91cd\\u88fd\\u7248\", \"nl-NL\": \"Life is Strange Remastered\", \"pt-PT\": \"Life is Strange Remastered\", \"zh-Hant\": \"Life is Strange\\u91cd\\u5236\\u7248\", \"sv-SE\": \"Life is Strange Remastered\", \"da-DK\": \"Life is Strange Remastered\", \"tr-TR\": \"Life is Strange Remastered\", \"fr-FR\": \"Life is Strange Remastered\", \"en-GB\": \"Life is Strange Remastered\", \"es-419\": \"Life is Strange remasterizado\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2416/rNzJ9zZTpqTs5qLAFipBgWpW.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1022/EKMUQA3g0t7nQhgHBVraXRW9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-07T11:44:33.620000Z\", \"lastPlayedDateTime\": \"2023-06-08T10:05:05.140000Z\", \"playDuration\": \"PT11H23M42S\"}, {\"titleId\": \"PPSA14306_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T16:06:41.000000Z\", \"lastPlayedDateTime\": \"2023-06-06T16:31:25.690000Z\", \"playDuration\": \"PT24M28S\"}, {\"titleId\": \"PPSA14307_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T15:27:43.530000Z\", \"lastPlayedDateTime\": \"2023-06-06T16:06:39.700000Z\", \"playDuration\": \"PT38M28S\"}, {\"titleId\": \"CUSA41259_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T15:07:45.220000Z\", \"lastPlayedDateTime\": \"2023-06-06T15:27:41.070000Z\", \"playDuration\": \"PT19M31S\"}, {\"titleId\": \"CUSA41261_00\", \"name\": \"Kuroi Tsubasa\", \"localizedName\": \"Kuroi Tsubasa\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007595, \"titleIds\": [\"CUSA41261_00\", \"CUSA41259_00\", \"PPSA14306_00\", \"PPSA14307_00\"], \"name\": \"Kuroi Tsubasa\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kuroi Tsubasa\", \"uk-UA\": \"Kuroi Tsubasa\", \"de-DE\": \"Kuroi Tsubasa\", \"en-US\": \"Kuroi Tsubasa\", \"pt-BR\": \"Kuroi Tsubasa\", \"es-ES\": \"Kuroi Tsubasa\", \"ar-AE\": \"Kuroi Tsubasa\", \"no-NO\": \"Kuroi Tsubasa\", \"fr-CA\": \"Kuroi Tsubasa\", \"it-IT\": \"Kuroi Tsubasa\", \"pl-PL\": \"Kuroi Tsubasa\", \"ru-RU\": \"Kuroi Tsubasa\", \"nl-NL\": \"Kuroi Tsubasa\", \"pt-PT\": \"Kuroi Tsubasa\", \"sv-SE\": \"Kuroi Tsubasa\", \"da-DK\": \"Kuroi Tsubasa\", \"tr-TR\": \"Kuroi Tsubasa\", \"fr-FR\": \"Kuroi Tsubasa\", \"en-GB\": \"Kuroi Tsubasa\", \"es-419\": \"Kuroi Tsubasa\", \"ja-JP\": \"Kuroi Tsubasa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8e00cd80e226b6fc715c4b5c16323a967e8025f54593fafa.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/af08286bb4afb0f7c963de209ace63b6dd0db18bfc0b0113.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/d5171542bd50f5f6c08be59e5ed00d31fa8653dc4ef07ddc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/e0b7808d567dee7cf9ce50b503eab518a4d02ac7d6883518.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/b84e37c6c0bf2e89a5cf53a03bd0d364372d9f05ef247b50.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/8bf61f25edb5384d0fb50ea3637485d22ed45b8c45e31d48.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/3bc8ee92e0c6eaf45486d1f8bd6f4bd71ce1880d47018db5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/a5b32c0bbfa2b586ad9c47c2d4b1123ec8ff3c8aaf214a4c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/cd98fdcb639f94a5d1fb003f141923f4bf287bba601ec17a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/f8323459fe1c054fe094bf0cb580c67567a6ab459a5a2001.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/aead048995346f18f7b459f4894ec1450fe33ed388e4d72e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/1371f4f9482a7ebb324c6ece934b63bc6ce92cbe30c6e1d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1510/589ab0599679bfb09653961cdf64f4f22e3ec33d383b5787.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T14:31:17.370000Z\", \"lastPlayedDateTime\": \"2023-06-06T15:07:43.130000Z\", \"playDuration\": \"PT36M18S\"}, {\"titleId\": \"CUSA32564_00\", \"name\": \"Willy Morgan and the Curse of Bone Town\", \"localizedName\": \"Willy Morgan and the Curse of Bone Town\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004569, \"titleIds\": [\"CUSA32558_00\", \"CUSA32564_00\", \"CUSA32560_00\", \"CUSA32563_00\"], \"name\": \"Willy Morgan and the Curse of Bone Town\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Willy Morgan and the Curse of Bone Town\", \"uk-UA\": \"Willy Morgan and the Curse of Bone Town\", \"de-DE\": \"Willy Morgan and the Curse of Bone Town\", \"en-US\": \"Willy Morgan and the Curse of Bone Town\", \"ko-KR\": \"Willy Morgan and the Curse of Bone Town\", \"pt-BR\": \"Willy Morgan and the Curse of Bone Town\", \"es-ES\": \"Willy Morgan and the Curse of Bone Town\", \"ar-AE\": \"Willy Morgan and the Curse of Bone Town\", \"no-NO\": \"Willy Morgan and the Curse of Bone Town\", \"fr-CA\": \"Willy Morgan and the Curse of Bone Town\", \"it-IT\": \"Willy Morgan and the Curse of Bone Town\", \"pl-PL\": \"Willy Morgan and the Curse of Bone Town\", \"ru-RU\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hans\": \"\\u300a\\u6469\\u6839\\u5947\\u9047\\u8bb0\\uff08Willy Morgan\\uff09\\u300b\", \"nl-NL\": \"Willy Morgan and the Curse of Bone Town\", \"pt-PT\": \"Willy Morgan and the Curse of Bone Town\", \"zh-Hant\": \"Willy Morgan and the Curse of Bone Town\", \"sv-SE\": \"Willy Morgan and the Curse of Bone Town\", \"da-DK\": \"Willy Morgan and the Curse of Bone Town\", \"tr-TR\": \"Willy Morgan and the Curse of Bone Town\", \"fr-FR\": \"Willy Morgan and the Curse of Bone Town\", \"en-GB\": \"Willy Morgan and the Curse of Bone Town\", \"es-419\": \"Willy Morgan and the Curse of Bone Town\", \"ja-JP\": \"Willy Morgan and the Curse of Bone Town\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2906/alYwPpP8O7y2EFjufF5hcl3A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/3007/QYDUupB4cODeRyF8F1kgQxnt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/vas7PczdIhYGLnWPvVsI921Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/qLalF5drIzsScjcfEX9jEhCC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/mbyftHqb2VsNFqWGTK1uWuiN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/4nyTvYOu1hYxIyad63nugpxo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/7U5QFPae6ilhTH5wpDRGf51B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/0106/FXy0kgEZuzv87ba0fcZsGlsy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/1013/a603SLkzuRNOtgjxcFl5DGSX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T11:01:45.450000Z\", \"lastPlayedDateTime\": \"2023-06-06T14:31:13.680000Z\", \"playDuration\": \"PT3H21M8S\"}, {\"titleId\": \"PPSA16462_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T08:26:25.550000Z\", \"lastPlayedDateTime\": \"2023-06-06T09:14:40.230000Z\", \"playDuration\": \"PT3M1S\"}, {\"titleId\": \"CUSA37251_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T06:03:10.720000Z\", \"lastPlayedDateTime\": \"2023-06-06T08:22:10.390000Z\", \"playDuration\": \"PT2H7M33S\"}, {\"titleId\": \"CUSA34534_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T04:10:20.640000Z\", \"lastPlayedDateTime\": \"2023-06-06T06:00:19.880000Z\", \"playDuration\": \"PT1H49M52S\"}, {\"titleId\": \"CUSA34533_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-06T00:49:32.530000Z\", \"lastPlayedDateTime\": \"2023-06-06T02:47:52.100000Z\", \"playDuration\": \"PT1H58M7S\"}, {\"titleId\": \"CUSA34532_00\", \"name\": \"Cube Decider\", \"localizedName\": \"Cube Decider\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005404, \"titleIds\": [\"CUSA37251_00\", \"PPSA18809_00\", \"PPSA18808_00\", \"PPSA18807_00\", \"CUSA34532_00\", \"PPSA18806_00\", \"CUSA34534_00\", \"CUSA34533_00\"], \"name\": \"Cube Decider\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cube Decider\", \"uk-UA\": \"Cube Decider\", \"de-DE\": \"Cube Decider\", \"en-US\": \"Cube Decider\", \"ko-KR\": \"Cube Decider\", \"pt-BR\": \"Cube Decider\", \"es-ES\": \"Cube Decider\", \"ar-AE\": \"Cube Decider\", \"no-NO\": \"Cube Decider\", \"fr-CA\": \"Cube Decider\", \"it-IT\": \"Cube Decider\", \"pl-PL\": \"Cube Decider\", \"ru-RU\": \"Cube Decider\", \"zh-Hans\": \"Cube Decider\", \"nl-NL\": \"Cube Decider\", \"pt-PT\": \"Cube Decider\", \"zh-Hant\": \"Cube Decider\", \"sv-SE\": \"Cube Decider\", \"da-DK\": \"Cube Decider\", \"tr-TR\": \"Cube Decider\", \"fr-FR\": \"Cube Decider\", \"en-GB\": \"Cube Decider\", \"es-419\": \"Cube Decider\", \"ja-JP\": \"Cube Decider\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/rzoz2ItCRHKHXU22NjoDCwmQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/HSWtXcfuWbZqGyvxhqrKwOnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Vc4B6qTTxQIVm4GldMkpSJo0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/zdDOeiOnpBoPJ3V9aEcN9AS5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/0Kh7pMC0ohu09tmigyeUyHcQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/yVHmAfRJmh3JnBNsNW9e7Kbj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PmTwr8bKMceEj01JFXLaTE9s.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/i2kvvv0rcfibtnjskAg8zcQW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/fRDEFh0xvWpphxu5LGj17PV2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Jqm4zrAEHRd5HmfgCaZLX8sY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/Cmgpuhu4ivrPz3JBsXzSuvxZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/2307/PjCSmA7wSBd3fqUeeheAsTnc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-05T14:09:23.830000Z\", \"lastPlayedDateTime\": \"2023-06-05T16:14:56.160000Z\", \"playDuration\": \"PT1H54M37S\"}, {\"titleId\": \"PPSA13255_00\", \"name\": \"Heirs of the Kings\", \"localizedName\": \"Heirs of the Kings\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006995, \"titleIds\": [\"CUSA40563_00\", \"PPSA13255_00\", \"CUSA40231_00\", \"PPSA13611_00\", \"PPSA13612_00\", \"CUSA40562_00\"], \"name\": \"Heirs of the Kings\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Heirs of the Kings\", \"uk-UA\": \"Heirs of the Kings\", \"de-DE\": \"Heirs of the Kings\", \"en-US\": \"Heirs of the Kings\", \"ko-KR\": \"Heirs of the Kings\", \"pt-BR\": \"Heirs of the Kings\", \"es-ES\": \"Heirs of the Kings\", \"no-NO\": \"Heirs of the Kings\", \"fr-CA\": \"Heirs of the Kings\", \"it-IT\": \"Heirs of the Kings\", \"pl-PL\": \"Heirs of the Kings\", \"ru-RU\": \"Heirs of the Kings\", \"zh-Hans\": \"Heirs of the Kings\", \"nl-NL\": \"Heirs of the Kings\", \"pt-PT\": \"Heirs of the Kings\", \"zh-Hant\": \"Heirs of the Kings\", \"sv-SE\": \"Heirs of the Kings\", \"da-DK\": \"Heirs of the Kings\", \"fr-FR\": \"Heirs of the Kings\", \"en-GB\": \"Heirs of the Kings\", \"es-419\": \"Heirs of the Kings\", \"ja-JP\": \"\\u30ad\\u30f3\\u30b0\\u30ba\\u30c7\\u30a3\\u30bb\\u30f3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T12:50:24.650000Z\", \"lastPlayedDateTime\": \"2023-06-05T14:06:46.360000Z\", \"playDuration\": \"PT22H23M12S\"}, {\"titleId\": \"CUSA40231_00\", \"name\": \"Heirs of the Kings\", \"localizedName\": \"Heirs of the Kings\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006995, \"titleIds\": [\"CUSA40563_00\", \"PPSA13255_00\", \"CUSA40231_00\", \"PPSA13611_00\", \"PPSA13612_00\", \"CUSA40562_00\"], \"name\": \"Heirs of the Kings\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Heirs of the Kings\", \"uk-UA\": \"Heirs of the Kings\", \"de-DE\": \"Heirs of the Kings\", \"en-US\": \"Heirs of the Kings\", \"ko-KR\": \"Heirs of the Kings\", \"pt-BR\": \"Heirs of the Kings\", \"es-ES\": \"Heirs of the Kings\", \"no-NO\": \"Heirs of the Kings\", \"fr-CA\": \"Heirs of the Kings\", \"it-IT\": \"Heirs of the Kings\", \"pl-PL\": \"Heirs of the Kings\", \"ru-RU\": \"Heirs of the Kings\", \"zh-Hans\": \"Heirs of the Kings\", \"nl-NL\": \"Heirs of the Kings\", \"pt-PT\": \"Heirs of the Kings\", \"zh-Hant\": \"Heirs of the Kings\", \"sv-SE\": \"Heirs of the Kings\", \"da-DK\": \"Heirs of the Kings\", \"fr-FR\": \"Heirs of the Kings\", \"en-GB\": \"Heirs of the Kings\", \"es-419\": \"Heirs of the Kings\", \"ja-JP\": \"\\u30ad\\u30f3\\u30b0\\u30ba\\u30c7\\u30a3\\u30bb\\u30f3\\u30c8\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/sch4rR5jpXss6tSVNbfu44xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/H3IGwnHlBNvWImdqrsrmeAxz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/NwDSxcEvyK4O7JeomrRDYJTg.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/cpKd827Q9mIlPBzagVtf0dc0.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/uGuAcOrlSH4ua2RGkeIpdnch.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/x7A5nzGJbPey91iQ2P32MUX8.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/La3p8xvjizCh6EyB3UsdIMiE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/swyizcdeqUwCUWcLb870OXIA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/WHtldPOAB5kkZURNumlFkARq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/t3X6X9t7EanNG1UMzn4SIeUv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/nYEDN6pVjrxQne8M321fpEsv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kIPJuxECbKJ3iigtXrXBn9IN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/0xS8ZvSJn17uTGLGfIuc4vEe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/wjPg8QwUBio31nqTCng1WpEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/kXg4dMwqBV8PQqXFyI9kLWsM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/3104/Xyb9XmyilneAqtUrhpWXwPwI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1800/9H1fZkOlrLpCoKbRUkQYNiex.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T13:51:23.490000Z\", \"lastPlayedDateTime\": \"2023-06-05T06:14:45.790000Z\", \"playDuration\": \"PT33H41M44S\"}, {\"titleId\": \"CUSA15500_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T04:04:01.980000Z\", \"lastPlayedDateTime\": \"2023-06-05T06:07:26.700000Z\", \"playDuration\": \"PT6H42M7S\"}, {\"titleId\": \"CUSA18580_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T07:43:51.930000Z\", \"lastPlayedDateTime\": \"2023-06-05T05:58:26.990000Z\", \"playDuration\": \"PT3H49M17S\"}, {\"titleId\": \"CUSA15575_00\", \"name\": \"Big Drunk Satanic Massacre\", \"localizedName\": \"Big Drunk Satanic Massacre\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 233412, \"titleIds\": [\"CUSA15575_00\", \"CUSA15500_00\", \"CUSA18580_00\"], \"name\": \"Big Drunk Satanic Massacre\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"SHOOTER\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Big Drunk Satanic Massacre\", \"uk-UA\": \"Big Drunk Satanic Massacre\", \"de-DE\": \"Big Drunk Satanic Massacre\", \"en-US\": \"Big Drunk Satanic Massacre\", \"pt-BR\": \"Big Drunk Satanic Massacre\", \"es-ES\": \"Big Drunk Satanic Massacre\", \"ar-AE\": \"Big Drunk Satanic Massacre\", \"no-NO\": \"Big Drunk Satanic Massacre\", \"fr-CA\": \"Big Drunk Satanic Massacre\", \"it-IT\": \"Big Drunk Satanic Massacre\", \"pl-PL\": \"Big Drunk Satanic Massacre\", \"ru-RU\": \"Big Drunk Satanic Massacre\", \"zh-Hans\": \"Big Drunk Satanic Massacre\", \"nl-NL\": \"Big Drunk Satanic Massacre\", \"pt-PT\": \"Big Drunk Satanic Massacre\", \"zh-Hant\": \"Big Drunk Satanic Massacre\", \"sv-SE\": \"Big Drunk Satanic Massacre\", \"da-DK\": \"Big Drunk Satanic Massacre\", \"tr-TR\": \"Big Drunk Satanic Massacre\", \"fr-FR\": \"Big Drunk Satanic Massacre\", \"en-GB\": \"Big Drunk Satanic Massacre\", \"es-419\": \"Big Drunk Satanic Massacre\", \"ja-JP\": \"Big Drunk Satanic Massacre\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA15575_00/1/i_88d64e11bd5011134227e1b55162c947cd1d0f8ee9ac530077b08e8d99363566/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T11:11:57.590000Z\", \"lastPlayedDateTime\": \"2023-06-05T05:49:17.320000Z\", \"playDuration\": \"PT3H45M36S\"}, {\"titleId\": \"CUSA26987_00\", \"name\": \"What The Dub?!\", \"localizedName\": \"What The Dub?!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002481, \"titleIds\": [\"CUSA26985_00\", \"CUSA26987_00\"], \"name\": \"What The Dub?!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/TNNbMptwhB0L7IWFA0MZbUgX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/3mD7Em0YlVOmA77VA6MVZZwC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/gnEdR6parZzQSqEUkUJlmM1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/czJjWQg2FM6Rx0Lr9Q2Eqn1y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0221/jE22AGy9QKNfRC3DpR8QeVqV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/MDgawcaFpjyiTfjw29TLANGt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/QQLj4CDqSyUzJ2oWdQrivpfo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/ZX0AonCT39jvO2JOgiOw91d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/0223/apczqgQ4sKHQ4q2HutcXenQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/h7hyS7NaWNUNPeglxMHuaOD3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/3y9lAT2sYxzhKpmA3iuaFI7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/RWpok9cXrDh3ELPnSwrn9kfd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"What The Dub?!\", \"uk-UA\": \"What The Dub?!\", \"de-DE\": \"What The Dub?!\", \"en-US\": \"What The Dub?!\", \"pt-BR\": \"What The Dub?!\", \"es-ES\": \"What The Dub?!\", \"ar-AE\": \"What The Dub?!\", \"no-NO\": \"What The Dub?!\", \"fr-CA\": \"What The Dub?!\", \"it-IT\": \"What The Dub?!\", \"pl-PL\": \"What The Dub?!\", \"ru-RU\": \"What The Dub?!\", \"nl-NL\": \"What The Dub?!\", \"pt-PT\": \"What The Dub?!\", \"sv-SE\": \"What The Dub?!\", \"da-DK\": \"What The Dub?!\", \"tr-TR\": \"What The Dub?!\", \"fr-FR\": \"What The Dub?!\", \"en-GB\": \"What The Dub?!\", \"es-419\": \"What The Dub?!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/TNNbMptwhB0L7IWFA0MZbUgX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/3mD7Em0YlVOmA77VA6MVZZwC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/gnEdR6parZzQSqEUkUJlmM1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/czJjWQg2FM6Rx0Lr9Q2Eqn1y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0221/jE22AGy9QKNfRC3DpR8QeVqV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/MDgawcaFpjyiTfjw29TLANGt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/QQLj4CDqSyUzJ2oWdQrivpfo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/ZX0AonCT39jvO2JOgiOw91d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202103/0223/apczqgQ4sKHQ4q2HutcXenQD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/h7hyS7NaWNUNPeglxMHuaOD3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/3y9lAT2sYxzhKpmA3iuaFI7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202112/2118/RWpok9cXrDh3ELPnSwrn9kfd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202102/2617/GWw6AbFlQr6u7jE3ba08hzhm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:14:48.960000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:16:41.360000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA23876_00\", \"name\": \"The Secret Order: Return to the Buried Kingdom\", \"localizedName\": \"The Secret Order: Return to the Buried Kingdom\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001150, \"titleIds\": [\"CUSA23877_00\", \"CUSA23876_00\"], \"name\": \"The Secret Order: Return to the Buried Kingdom\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Secret Order: Return to the Buried Kingdom\", \"uk-UA\": \"The Secret Order: Return to the Buried Kingdom\", \"de-DE\": \"The Secret Order: Return to the Buried Kingdom\", \"en-US\": \"The Secret Order: Return to the Buried Kingdom\", \"pt-BR\": \"The Secret Order: Return to the Buried Kingdom\", \"es-ES\": \"The Secret Order: Return to the Buried Kingdom\", \"ar-AE\": \"The Secret Order: Return to the Buried Kingdom\", \"no-NO\": \"The Secret Order: Return to the Buried Kingdom\", \"fr-CA\": \"The Secret Order: Return to the Buried Kingdom\", \"it-IT\": \"The Secret Order: Return to the Buried Kingdom\", \"pl-PL\": \"The Secret Order: Return to the Buried Kingdom\", \"ru-RU\": \"The Secret Order: Return to the Buried Kingdom\", \"nl-NL\": \"The Secret Order: Return to the Buried Kingdom\", \"pt-PT\": \"The Secret Order: Return to the Buried Kingdom\", \"sv-SE\": \"The Secret Order: Return to the Buried Kingdom\", \"da-DK\": \"The Secret Order: Return to the Buried Kingdom\", \"tr-TR\": \"The Secret Order: Return to the Buried Kingdom\", \"fr-FR\": \"The Secret Order: Return to the Buried Kingdom\", \"en-GB\": \"The Secret Order: Return to the Buried Kingdom\", \"es-419\": \"The Secret Order: Return to the Buried Kingdom\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA23876_00/1/i_325021e1ba78725c1e960540a137ae22dc191ef99bedcf4c0947a67805fe04be/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:09:31.720000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:13:47.740000Z\", \"playDuration\": \"PT4M12S\"}, {\"titleId\": \"PPSA14971_00\", \"name\": \"Ultimate Runner\", \"localizedName\": \"Ultimate Runner\", \"imageUrl\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 231907, \"titleIds\": [\"PPSA14972_00\", \"CUSA13147_00\", \"PPSA14971_00\", \"CUSA11645_00\"], \"name\": \"Ultimate Runner\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/7c8f84a1b0d87f8e3da10d423fc79ab66ccce0445f4a2915.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/c06bb19f47862a8336308f7ee3a4de4db667631630296af7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA11645_00/8/i_28ac87bf3906221370b5c670820afc714730d1baf9247207e58ff801971a72df/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/defe61e567fd7ed0722e334ed60cfc32d09c6aeca2865d16.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/06cd1c3b18a40c1f4113966d5f6f0babdecae65fee16a9ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/FREE_CONTENTPwHyW6KgIcSyXmE4ErvG/PREVIEW_SCREENSHOT4_172795.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTkevJwUOu8URU6qHjLrTo/PREVIEW_SCREENSHOT6_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTi94f3LNnJCNuGOszRpiL/PREVIEW_SCREENSHOT5_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENT22ODMVmrd1UmgpUwdQ28/PREVIEW_SCREENSHOT3_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTVf00N75qpL95feeZ6MiX/PREVIEW_SCREENSHOT2_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultimate Runner\", \"uk-UA\": \"Ultimate Runner\", \"de-DE\": \"Ultimate Runner\", \"en-US\": \"Ultimate Runner\", \"pt-BR\": \"Ultimate Runner\", \"es-ES\": \"Ultimate Runner\", \"ar-AE\": \"Ultimate Runner\", \"no-NO\": \"Ultimate Runner\", \"fr-CA\": \"Ultimate Runner\", \"it-IT\": \"Ultimate Runner\", \"pl-PL\": \"Ultimate Runner\", \"ru-RU\": \"Ultimate Runner\", \"nl-NL\": \"Ultimate Runner\", \"pt-PT\": \"Ultimate Runner\", \"sv-SE\": \"Ultimate Runner\", \"da-DK\": \"Ultimate Runner\", \"tr-TR\": \"Ultimate Runner\", \"fr-FR\": \"Ultimate Runner\", \"en-GB\": \"Ultimate Runner\", \"es-419\": \"Ultimate Runner\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/7c8f84a1b0d87f8e3da10d423fc79ab66ccce0445f4a2915.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/c06bb19f47862a8336308f7ee3a4de4db667631630296af7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA11645_00/8/i_28ac87bf3906221370b5c670820afc714730d1baf9247207e58ff801971a72df/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1309/defe61e567fd7ed0722e334ed60cfc32d09c6aeca2865d16.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1308/06cd1c3b18a40c1f4113966d5f6f0babdecae65fee16a9ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/FREE_CONTENTPwHyW6KgIcSyXmE4ErvG/PREVIEW_SCREENSHOT4_172795.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTkevJwUOu8URU6qHjLrTo/PREVIEW_SCREENSHOT6_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTi94f3LNnJCNuGOszRpiL/PREVIEW_SCREENSHOT5_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENT22ODMVmrd1UmgpUwdQ28/PREVIEW_SCREENSHOT3_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/EP3024/CUSA11645_00/FREE_CONTENTVf00N75qpL95feeZ6MiX/PREVIEW_SCREENSHOT2_539162.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/cdn/UP3165/CUSA13147_00/QBuqthEoihGUTyljHTFMlp7yf4yOnrRJ.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T05:05:15.370000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:08:13.960000Z\", \"playDuration\": \"PT2M26S\"}, {\"titleId\": \"PPSA08618_00\", \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"localizedName\": \"Puzzle Quest 3: Match 3 RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005398, \"titleIds\": [\"CUSA34761_00\", \"CUSA34760_00\", \"PPSA08617_00\", \"PPSA08618_00\"], \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Quest 3: Match 3 RPG\", \"uk-UA\": \"Puzzle Quest 3: Match 3 RPG\", \"de-DE\": \"Puzzle Quest 3: Match 3 RPG\", \"en-US\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-BR\": \"Puzzle Quest 3: Match 3 RPG\", \"es-ES\": \"Puzzle Quest 3: Match 3 RPG\", \"ar-AE\": \"Puzzle Quest 3: Match 3 RPG\", \"no-NO\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-CA\": \"Puzzle Quest 3: Match 3 RPG\", \"it-IT\": \"Puzzle Quest 3: Match 3 RPG\", \"pl-PL\": \"Puzzle Quest 3: Match 3 RPG\", \"ru-RU\": \"Puzzle Quest 3: Match 3 RPG\", \"nl-NL\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-PT\": \"Puzzle Quest 3: Match 3 RPG\", \"sv-SE\": \"Puzzle Quest 3: Match 3 RPG\", \"da-DK\": \"Puzzle Quest 3: Match 3 RPG\", \"tr-TR\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-FR\": \"Puzzle Quest 3: Match 3 RPG\", \"en-GB\": \"Puzzle Quest 3: Match 3 RPG\", \"es-419\": \"Puzzle Quest 3: Match 3 RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:26:44.290000Z\", \"lastPlayedDateTime\": \"2023-06-04T05:04:21.880000Z\", \"playDuration\": \"PT36M54S\"}, {\"titleId\": \"CUSA34761_00\", \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"localizedName\": \"Puzzle Quest 3: Match 3 RPG\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005398, \"titleIds\": [\"CUSA34761_00\", \"CUSA34760_00\", \"PPSA08617_00\", \"PPSA08618_00\"], \"name\": \"Puzzle Quest 3: Match 3 RPG\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Puzzle Quest 3: Match 3 RPG\", \"uk-UA\": \"Puzzle Quest 3: Match 3 RPG\", \"de-DE\": \"Puzzle Quest 3: Match 3 RPG\", \"en-US\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-BR\": \"Puzzle Quest 3: Match 3 RPG\", \"es-ES\": \"Puzzle Quest 3: Match 3 RPG\", \"ar-AE\": \"Puzzle Quest 3: Match 3 RPG\", \"no-NO\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-CA\": \"Puzzle Quest 3: Match 3 RPG\", \"it-IT\": \"Puzzle Quest 3: Match 3 RPG\", \"pl-PL\": \"Puzzle Quest 3: Match 3 RPG\", \"ru-RU\": \"Puzzle Quest 3: Match 3 RPG\", \"nl-NL\": \"Puzzle Quest 3: Match 3 RPG\", \"pt-PT\": \"Puzzle Quest 3: Match 3 RPG\", \"sv-SE\": \"Puzzle Quest 3: Match 3 RPG\", \"da-DK\": \"Puzzle Quest 3: Match 3 RPG\", \"tr-TR\": \"Puzzle Quest 3: Match 3 RPG\", \"fr-FR\": \"Puzzle Quest 3: Match 3 RPG\", \"en-GB\": \"Puzzle Quest 3: Match 3 RPG\", \"es-419\": \"Puzzle Quest 3: Match 3 RPG\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4b83a283fff0e9372dbd5aca7a76e7dc626162b983d835d5.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/4159fd8fbb33705504359c2a6f5b119ac6542ddaf06e367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0117/98ff7b07fae579bfee48609d5be09c68d153df0b191272a2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/f488088890a7ad8568aadc9998dafc5170fafb7efc4084ca.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c71370416b445cdf5b8988a703d350e84806dd080c95c046.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/e2c34d016600a09db9bc73b918beba12ba10eb8eedfd2052.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/faef4bd460e0d23cc74e01dd66354c0a3a1187f05cb40e7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c1a4cdefad2f7b403570624be525e28aead921ccf41dd5fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/0027c24860fdc8fb54e4c5817225139a7037b6a451dbf937.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/d7edfd1da052faaaca23ee0d6f861a4d177aabbb0bafa575.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/3202b166e0a077b84316f6647c9ec1ae1f617cef5bc3357e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/9db216871f5e11679dbb5273759809b8ed924d9bc71b376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/a5ed131d55d7a0d9ce21f180adc2c1fc8b63cb0fa9685cda.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2614/c47f834456f7a2037222f24d2cc89cc5079349bb199d5c47.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:21:19.030000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:26:39.360000Z\", \"playDuration\": \"PT4M53S\"}, {\"titleId\": \"PPSA04571_00\", \"name\": \"Endless Fables: Shadow Within\", \"localizedName\": \"Endless Fables: Shadow Within\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003403, \"titleIds\": [\"CUSA29379_00\", \"PPSA04571_00\", \"CUSA29378_00\", \"PPSA04572_00\"], \"name\": \"Endless Fables: Shadow Within\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Endless Fables: Shadow Within\", \"uk-UA\": \"Endless Fables: Shadow Within\", \"de-DE\": \"Endless Fables: Shadow Within\", \"en-US\": \"Endless Fables: Shadow Within\", \"pt-BR\": \"Endless Fables: Shadow Within\", \"es-ES\": \"Endless Fables: Shadow Within\", \"ar-AE\": \"Endless Fables: Shadow Within\", \"no-NO\": \"Endless Fables: Shadow Within\", \"fr-CA\": \"Endless Fables: Shadow Within\", \"it-IT\": \"Endless Fables: Shadow Within\", \"pl-PL\": \"Endless Fables: Shadow Within\", \"ru-RU\": \"Endless Fables: Shadow Within\", \"nl-NL\": \"Endless Fables: Shadow Within\", \"pt-PT\": \"Endless Fables: Shadow Within\", \"sv-SE\": \"Endless Fables: Shadow Within\", \"da-DK\": \"Endless Fables: Shadow Within\", \"tr-TR\": \"Endless Fables: Shadow Within\", \"fr-FR\": \"Endless Fables: Shadow Within\", \"en-GB\": \"Endless Fables: Shadow Within\", \"es-419\": \"Endless Fables: Shadow Within\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:18:53.000000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:20:01.250000Z\", \"playDuration\": \"PT54S\"}, {\"titleId\": \"CUSA29378_00\", \"name\": \"Endless Fables: Shadow Within\", \"localizedName\": \"Endless Fables: Shadow Within\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003403, \"titleIds\": [\"CUSA29379_00\", \"PPSA04571_00\", \"CUSA29378_00\", \"PPSA04572_00\"], \"name\": \"Endless Fables: Shadow Within\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Endless Fables: Shadow Within\", \"uk-UA\": \"Endless Fables: Shadow Within\", \"de-DE\": \"Endless Fables: Shadow Within\", \"en-US\": \"Endless Fables: Shadow Within\", \"pt-BR\": \"Endless Fables: Shadow Within\", \"es-ES\": \"Endless Fables: Shadow Within\", \"ar-AE\": \"Endless Fables: Shadow Within\", \"no-NO\": \"Endless Fables: Shadow Within\", \"fr-CA\": \"Endless Fables: Shadow Within\", \"it-IT\": \"Endless Fables: Shadow Within\", \"pl-PL\": \"Endless Fables: Shadow Within\", \"ru-RU\": \"Endless Fables: Shadow Within\", \"nl-NL\": \"Endless Fables: Shadow Within\", \"pt-PT\": \"Endless Fables: Shadow Within\", \"sv-SE\": \"Endless Fables: Shadow Within\", \"da-DK\": \"Endless Fables: Shadow Within\", \"tr-TR\": \"Endless Fables: Shadow Within\", \"fr-FR\": \"Endless Fables: Shadow Within\", \"en-GB\": \"Endless Fables: Shadow Within\", \"es-419\": \"Endless Fables: Shadow Within\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/MoCz9FSwgl8BViWaIr7WDqfD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/qy0qQzYkPRr8pHDSAO5aDGRF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/tRIvaiXkP7JlB9mSk0mmtbxC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/TUP1xbEJjFzfuCy4vrldr2v4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202109/1313/wB2kYGgavP26rVB5HMmzFrrl.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/lCZtlOL4iSHWMg0VVR9GGss4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/OzZCmFFg63t85fHIsgzDPw2I.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/JM69UaDgBF5ITWUkbLYl8rau.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/5LQ6X9hEVLlVg4gW4x2AdLoq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/7qsUt8sVhyy2SgOB8M5JUZyC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/pOi1fIrLjanFKEHhUhJEaGAZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uNzKbByjxy34n76lAeOoWP5q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/IR6yknlWboDZIsSUTL4Hlrdh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/uO5sU0f8Cj9IhI3ZEcztyxi2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/mAp0idxYqEXRpNGOtha8ztPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/HLJ9KLpPst7nfHdS523Csgtz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2314/e83OeKGfQdStl7mRLVvFRmLE.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:16:20.530000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:18:51.520000Z\", \"playDuration\": \"PT2M1S\"}, {\"titleId\": \"CUSA16354_00\", \"name\": \"Darkestville Castle\", \"localizedName\": \"Darkestville Castle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234403, \"titleIds\": [\"CUSA16354_00\", \"CUSA16176_00\", \"CUSA20228_00\", \"CUSA20190_00\"], \"name\": \"Darkestville Castle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/av3Mvh1fJdqyeotVQB05eRvO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16354_00/4/i_e4c62ed2a6fcebbc6775cdd4123b2f8d88cbd92e87b81f9338d7f38296530b7d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/aLz39Rt5HLupXPRNekmUDNTC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/MekHOo0DyXHMxIJ5VhHJcYMZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Darkestville Castle\", \"uk-UA\": \"Darkestville Castle\", \"de-DE\": \"Darkestville Castle\", \"en-US\": \"Darkestville Castle\", \"pt-BR\": \"Darkestville Castle\", \"es-ES\": \"Darkestville Castle\", \"ar-AE\": \"Darkestville Castle\", \"no-NO\": \"Darkestville Castle\", \"fr-CA\": \"Darkestville Castle\", \"it-IT\": \"Darkestville Castle\", \"pl-PL\": \"Darkestville Castle\", \"ru-RU\": \"Darkestville Castle\", \"nl-NL\": \"Darkestville Castle\", \"pt-PT\": \"Darkestville Castle\", \"sv-SE\": \"Darkestville Castle\", \"da-DK\": \"Darkestville Castle\", \"tr-TR\": \"Darkestville Castle\", \"fr-FR\": \"Darkestville Castle\", \"en-GB\": \"Darkestville Castle\", \"es-419\": \"Darkestville Castle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/av3Mvh1fJdqyeotVQB05eRvO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA16354_00/4/i_e4c62ed2a6fcebbc6775cdd4123b2f8d88cbd92e87b81f9338d7f38296530b7d/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/aLz39Rt5HLupXPRNekmUDNTC.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2914/MekHOo0DyXHMxIJ5VhHJcYMZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/2311/au7TDIMx5drfO7zmOX679XYN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:10:57.830000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:14:39.130000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA25993_00\", \"name\": \"Demon Hunter: Revelation\", \"localizedName\": \"Demon Hunter: Revelation\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002067, \"titleIds\": [\"CUSA25993_00\", \"CUSA25994_00\"], \"name\": \"Demon Hunter: Revelation\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/u1euthWKwoDyAnrarQxd5f3I.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/8JIgQ33OglvSBdVgbh6Z60Tm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kKByPd8Om47tCFB3PkITSk3p.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/ql9jVslkk4Pmm4DM6GzN488Y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/YaLyzKuvo9nxVmEzLlC7ZGsx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7aDdwwxLTehhC1Caxi3LzeXX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/wleNaKW7H5kQ0yyizt8g40S3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/VJzNRbXwJZ3RkjTydNsWtGc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/2usqyi1aBgJa7V9cmraHe1ly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/zhEG9jeSocRALCdgt1Bx3FS4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kEy4KyUs3FIoCgZN3WOqYOWa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/d5ZsUGR0WXPHXZDHfYzo5dBI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/qmdyPnvFeHpxi9J7AbZ0rWWY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/o3M1WyiuRYdO2LgruSpqjqD7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/eZtUUW7XxsrIAQJF7lhlcmJV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Revelation\", \"uk-UA\": \"Demon Hunter: Revelation\", \"de-DE\": \"Demon Hunter: Revelation\", \"en-US\": \"Demon Hunter: Revelation\", \"pt-BR\": \"Demon Hunter: Revelation\", \"es-ES\": \"Demon Hunter: Revelation\", \"ar-AE\": \"Demon Hunter: Revelation\", \"no-NO\": \"Demon Hunter: Revelation\", \"fr-CA\": \"Demon Hunter: Revelation\", \"it-IT\": \"Demon Hunter: Revelation\", \"pl-PL\": \"Demon Hunter: Revelation\", \"ru-RU\": \"Demon Hunter: Revelation\", \"nl-NL\": \"Demon Hunter: Revelation\", \"pt-PT\": \"Demon Hunter: Revelation\", \"sv-SE\": \"Demon Hunter: Revelation\", \"da-DK\": \"Demon Hunter: Revelation\", \"tr-TR\": \"Demon Hunter: Revelation\", \"fr-FR\": \"Demon Hunter: Revelation\", \"en-GB\": \"Demon Hunter: Revelation\", \"es-419\": \"Demon Hunter: Revelation\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/u1euthWKwoDyAnrarQxd5f3I.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/8JIgQ33OglvSBdVgbh6Z60Tm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kKByPd8Om47tCFB3PkITSk3p.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/ql9jVslkk4Pmm4DM6GzN488Y.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/YaLyzKuvo9nxVmEzLlC7ZGsx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7aDdwwxLTehhC1Caxi3LzeXX.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/wleNaKW7H5kQ0yyizt8g40S3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/VJzNRbXwJZ3RkjTydNsWtGc0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/2usqyi1aBgJa7V9cmraHe1ly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/zhEG9jeSocRALCdgt1Bx3FS4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/kEy4KyUs3FIoCgZN3WOqYOWa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/d5ZsUGR0WXPHXZDHfYzo5dBI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/qmdyPnvFeHpxi9J7AbZ0rWWY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/o3M1WyiuRYdO2LgruSpqjqD7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/eZtUUW7XxsrIAQJF7lhlcmJV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202101/1217/7X4U78ulxHG0MYZ6Q2ATw9dt.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:06:37.340000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:10:12.590000Z\", \"playDuration\": \"PT2M41S\"}, {\"titleId\": \"PPSA06378_00\", \"name\": \"Demon Hunter: Ascendance\", \"localizedName\": \"Demon Hunter: Ascendance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004426, \"titleIds\": [\"PPSA06378_00\", \"PPSA06379_00\", \"CUSA32047_00\", \"CUSA32048_00\"], \"name\": \"Demon Hunter: Ascendance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Ascendance\", \"uk-UA\": \"Demon Hunter: Ascendance\", \"de-DE\": \"Demon Hunter: Ascendance\", \"en-US\": \"Demon Hunter: Ascendance\", \"pt-BR\": \"Demon Hunter: Ascendance\", \"es-ES\": \"Demon Hunter: Ascendance\", \"ar-AE\": \"Demon Hunter: Ascendance\", \"no-NO\": \"Demon Hunter: Ascendance\", \"fr-CA\": \"Demon Hunter: Ascendance\", \"it-IT\": \"Demon Hunter: Ascendance\", \"pl-PL\": \"Demon Hunter: Ascendance\", \"ru-RU\": \"Demon Hunter: Ascendance\", \"nl-NL\": \"Demon Hunter: Ascendance\", \"pt-PT\": \"Demon Hunter: Ascendance\", \"sv-SE\": \"Demon Hunter: Ascendance\", \"da-DK\": \"Demon Hunter: Ascendance\", \"tr-TR\": \"Demon Hunter: Ascendance\", \"fr-FR\": \"Demon Hunter: Ascendance\", \"en-GB\": \"Demon Hunter: Ascendance\", \"es-419\": \"Demon Hunter: Ascendance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:04:08.440000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:05:44.590000Z\", \"playDuration\": \"PT57S\"}, {\"titleId\": \"CUSA32047_00\", \"name\": \"Demon Hunter: Ascendance\", \"localizedName\": \"Demon Hunter: Ascendance\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004426, \"titleIds\": [\"PPSA06378_00\", \"PPSA06379_00\", \"CUSA32047_00\", \"CUSA32048_00\"], \"name\": \"Demon Hunter: Ascendance\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Ascendance\", \"uk-UA\": \"Demon Hunter: Ascendance\", \"de-DE\": \"Demon Hunter: Ascendance\", \"en-US\": \"Demon Hunter: Ascendance\", \"pt-BR\": \"Demon Hunter: Ascendance\", \"es-ES\": \"Demon Hunter: Ascendance\", \"ar-AE\": \"Demon Hunter: Ascendance\", \"no-NO\": \"Demon Hunter: Ascendance\", \"fr-CA\": \"Demon Hunter: Ascendance\", \"it-IT\": \"Demon Hunter: Ascendance\", \"pl-PL\": \"Demon Hunter: Ascendance\", \"ru-RU\": \"Demon Hunter: Ascendance\", \"nl-NL\": \"Demon Hunter: Ascendance\", \"pt-PT\": \"Demon Hunter: Ascendance\", \"sv-SE\": \"Demon Hunter: Ascendance\", \"da-DK\": \"Demon Hunter: Ascendance\", \"tr-TR\": \"Demon Hunter: Ascendance\", \"fr-FR\": \"Demon Hunter: Ascendance\", \"en-GB\": \"Demon Hunter: Ascendance\", \"es-419\": \"Demon Hunter: Ascendance\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/JZablJrUULSBTzXHm3Imz77W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/CjfPdqveev4Nr0mqlCzGz1NJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/ZX9kZP0WUoPzEwQfVItsvSDY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0312/SmmIOJwXqsky5Bo2qrPDVagw.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/1010/jS32tJ4TGCkBnjFIHEadaGuz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/jBRcVMtPOYyGRTPpfnkU5gxM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/Sp4pRqAzz7P7N73OY7qC6R1E.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vuxhFY3p0vhzQLQzsTHa067G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/vlpemymIFezftzYGFrcE6bhy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/3zN6iY82FzVHEojXcFfJYcqK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/lNB11lwlqG2Z2hvIQF8zDRUL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9IlQfQyGpNQIObwtII1w8tgC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/G4X89bQaR1pgCv1ew6EChMci.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/EntMHqnh1rDS4eevYqUZfwzv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0414/9kMTIiFELkRvRgIEwTgOqR2B.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202201/0307/DabNkS2miaqnY8ZFZaN4H28z.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T04:01:22.510000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:04:05.440000Z\", \"playDuration\": \"PT2M21S\"}, {\"titleId\": \"PPSA05135_00\", \"name\": \"Demon Hunter: Riddles of Light\", \"localizedName\": \"Demon Hunter: Riddles of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003730, \"titleIds\": [\"CUSA30209_00\", \"PPSA05136_00\", \"CUSA30210_00\", \"PPSA05135_00\"], \"name\": \"Demon Hunter: Riddles of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Riddles of Light\", \"uk-UA\": \"Demon Hunter: Riddles of Light\", \"de-DE\": \"Demon Hunter: Riddles of Light\", \"en-US\": \"Demon Hunter: Riddles of Light\", \"pt-BR\": \"Demon Hunter: Riddles of Light\", \"es-ES\": \"Demon Hunter: Riddles of Light\", \"ar-AE\": \"Demon Hunter: Riddles of Light\", \"no-NO\": \"Demon Hunter: Riddles of Light\", \"fr-CA\": \"Demon Hunter: Riddles of Light\", \"it-IT\": \"Demon Hunter: Riddles of Light\", \"pl-PL\": \"Demon Hunter: Riddles of Light\", \"ru-RU\": \"Demon Hunter: Riddles of Light\", \"nl-NL\": \"Demon Hunter: Riddles of Light\", \"pt-PT\": \"Demon Hunter: Riddles of Light\", \"sv-SE\": \"Demon Hunter: Riddles of Light\", \"da-DK\": \"Demon Hunter: Riddles of Light\", \"tr-TR\": \"Demon Hunter: Riddles of Light\", \"fr-FR\": \"Demon Hunter: Riddles of Light\", \"en-GB\": \"Demon Hunter: Riddles of Light\", \"es-419\": \"Demon Hunter: Riddles of Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:59:04.720000Z\", \"lastPlayedDateTime\": \"2023-06-04T04:00:21.310000Z\", \"playDuration\": \"PT1M12S\"}, {\"titleId\": \"CUSA30209_00\", \"name\": \"Demon Hunter: Riddles of Light\", \"localizedName\": \"Demon Hunter: Riddles of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003730, \"titleIds\": [\"CUSA30209_00\", \"PPSA05136_00\", \"CUSA30210_00\", \"PPSA05135_00\"], \"name\": \"Demon Hunter: Riddles of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Demon Hunter: Riddles of Light\", \"uk-UA\": \"Demon Hunter: Riddles of Light\", \"de-DE\": \"Demon Hunter: Riddles of Light\", \"en-US\": \"Demon Hunter: Riddles of Light\", \"pt-BR\": \"Demon Hunter: Riddles of Light\", \"es-ES\": \"Demon Hunter: Riddles of Light\", \"ar-AE\": \"Demon Hunter: Riddles of Light\", \"no-NO\": \"Demon Hunter: Riddles of Light\", \"fr-CA\": \"Demon Hunter: Riddles of Light\", \"it-IT\": \"Demon Hunter: Riddles of Light\", \"pl-PL\": \"Demon Hunter: Riddles of Light\", \"ru-RU\": \"Demon Hunter: Riddles of Light\", \"nl-NL\": \"Demon Hunter: Riddles of Light\", \"pt-PT\": \"Demon Hunter: Riddles of Light\", \"sv-SE\": \"Demon Hunter: Riddles of Light\", \"da-DK\": \"Demon Hunter: Riddles of Light\", \"tr-TR\": \"Demon Hunter: Riddles of Light\", \"fr-FR\": \"Demon Hunter: Riddles of Light\", \"en-GB\": \"Demon Hunter: Riddles of Light\", \"es-419\": \"Demon Hunter: Riddles of Light\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/quKqtQP50azFJvMztnAjx52W.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/QRcMiNW1ZP8JWJ4YG530vcQ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/Y3DRFcNVLRWXoYPglNg5m3LH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wQNoyachFioP7x0ZxkDqZZsP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/SIFoijxzPoGHJWkODKAzi6dr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/g7V221CNpmeehvvkbHfKx5Yb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/OxXlDSi8u7lmz4cKLmic9kjY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/QBe9MoWkldZrFDFVvXyqXr3U.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/AvtO5pdB29NglgO7nkFDf8p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/gkmCUmEKZ3U0R2hvpAEMs7OU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0613/Wn8qH7Qbn2e34PPRDdVQEnrL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YmOp0IP5FrmUgweuEQnoQdmt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/py9sODFr4UsjipmjINnddFqU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/YuJrASTWE32UGETlHfHTUeMr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/eVKmmwsevdhN16huWYMHDN9Z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/0615/wFZ7DCZRRRae4IFZJ7Rbp0oI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T00:55:41.490000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:59:01.760000Z\", \"playDuration\": \"PT5M16S\"}, {\"titleId\": \"PPSA09743_00\", \"name\": \"Vegas Infinite\", \"localizedName\": \"Vegas Infinite\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005964, \"titleIds\": [\"PPSA09743_00\"], \"name\": \"Vegas Infinite\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/23bbed95d23f6f68a465835255fba86707b6a0770ad8d91f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/5d29db8df2b9125f2a2521662b5d0b1a54a6e306424e08c6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/aec29a5b853ca011c2b0635f2e0b75ded3e9a3f8d3d1a459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0822/9525c5083c92dbbddaf14a264ef81db5f7804d52f4c3274a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/541ada80bcc832fd0e2cc1d779919155af63fdf0116f5fa1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/2b6c7c596ddb917b9759118998bb43269760cfb8e4d45a91.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/39262f2b16a5727d7eff06310763a02f20d6b10ebaef8c0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/ea135488c36f4f229c4c420a7cd097d099879072140e2042.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/3d98f5a65005e3851f3469b3914d88923db1c32d9f967545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/2cef6ed4f4d5279cd6fabb7cb5b096d50bef51945e6ffa48.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/6b02c60601f2178e16a03c288d6c8623bd175ad2c6109ae1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/c5495a6fa419956cf506a0fb48c930591fb76d2b0d5bdedc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/6e713569abb7b5d7a7844d52fef3438333b82ed2b6d802d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"UNIQUE\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Infinite\", \"uk-UA\": \"Vegas Infinite\", \"de-DE\": \"Vegas Infinite\", \"en-US\": \"Vegas Infinite\", \"ko-KR\": \"Vegas Infinite\", \"pt-BR\": \"Vegas Infinite\", \"es-ES\": \"Vegas Infinite\", \"ar-AE\": \"Vegas Infinite\", \"no-NO\": \"Vegas Infinite\", \"fr-CA\": \"Vegas Infinite\", \"it-IT\": \"Vegas Infinite\", \"pl-PL\": \"Vegas Infinite\", \"ru-RU\": \"Vegas Infinite\", \"zh-Hans\": \"Vegas Infinite\", \"nl-NL\": \"Vegas Infinite\", \"pt-PT\": \"Vegas Infinite\", \"zh-Hant\": \"Vegas Infinite\", \"sv-SE\": \"Vegas Infinite\", \"da-DK\": \"Vegas Infinite\", \"tr-TR\": \"Vegas Infinite\", \"fr-FR\": \"Vegas Infinite\", \"en-GB\": \"Vegas Infinite\", \"es-419\": \"Vegas Infinite\", \"ja-JP\": \"Vegas Infinite\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/23bbed95d23f6f68a465835255fba86707b6a0770ad8d91f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/5d29db8df2b9125f2a2521662b5d0b1a54a6e306424e08c6.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/aec29a5b853ca011c2b0635f2e0b75ded3e9a3f8d3d1a459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0822/9525c5083c92dbbddaf14a264ef81db5f7804d52f4c3274a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/541ada80bcc832fd0e2cc1d779919155af63fdf0116f5fa1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202309/0821/2b6c7c596ddb917b9759118998bb43269760cfb8e4d45a91.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/39262f2b16a5727d7eff06310763a02f20d6b10ebaef8c0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/ea135488c36f4f229c4c420a7cd097d099879072140e2042.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/3d98f5a65005e3851f3469b3914d88923db1c32d9f967545.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/2cef6ed4f4d5279cd6fabb7cb5b096d50bef51945e6ffa48.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/6b02c60601f2178e16a03c288d6c8623bd175ad2c6109ae1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/1621/c5495a6fa419956cf506a0fb48c930591fb76d2b0d5bdedc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0316/6e713569abb7b5d7a7844d52fef3438333b82ed2b6d802d3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202308/2914/da52f6f78912010986df6ded044a91c7a72e164e1cd72360.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:50:36.630000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:52:47.280000Z\", \"playDuration\": \"PT2M7S\"}, {\"titleId\": \"PPSA15827_00\", \"name\": \"Cave Digger: Riches\", \"localizedName\": \"Cave Digger: Riches\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 232984, \"titleIds\": [\"CUSA20112_00\", \"CUSA14289_00\", \"CUSA14068_00\", \"PPSA15828_00\", \"PPSA15827_00\", \"CUSA20416_00\"], \"name\": \"Cave Digger: Riches\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0214/IvD6gSE1IHmsWm9yjft20jYW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2009/WxiPuut0jVPNIB2bgcE3tBYs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"SIMULATOR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cave Digger: Riches\", \"uk-UA\": \"Cave Digger: Riches\", \"de-DE\": \"Cave Digger: Riches\", \"en-US\": \"Cave Digger: Riches\", \"ko-KR\": \"Cave Digger: Riches\", \"pt-BR\": \"Cave Digger: Riches\", \"es-ES\": \"Cave Digger: Riches\", \"ar-AE\": \"Cave Digger: Riches\", \"no-NO\": \"Cave Digger: Riches\", \"fr-CA\": \"Cave Digger: Riches\", \"it-IT\": \"Cave Digger: Riches\", \"pl-PL\": \"Cave Digger: Riches\", \"ru-RU\": \"Cave Digger: Riches\", \"zh-Hans\": \"Cave Digger: Riches\", \"nl-NL\": \"Cave Digger: Riches\", \"pt-PT\": \"Cave Digger: Riches\", \"zh-Hant\": \"Cave Digger: Riches\", \"sv-SE\": \"Cave Digger: Riches\", \"da-DK\": \"Cave Digger: Riches\", \"tr-TR\": \"Cave Digger: Riches\", \"fr-FR\": \"Cave Digger: Riches\", \"en-GB\": \"Cave Digger: Riches\", \"es-419\": \"Cave Digger: Riches\", \"ja-JP\": \"Cave Digger: Riches\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/0214/IvD6gSE1IHmsWm9yjft20jYW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202201/2009/WxiPuut0jVPNIB2bgcE3tBYs.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA14068_00/15/i_ee42779c74bef5975054ea1a85ef4906bbdf74c1fcb4251fa98f78fc58f5e96b/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:39:31.190000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:49:50.720000Z\", \"playDuration\": \"PT1M52S\"}, {\"titleId\": \"CUSA18462_00\", \"name\": \"Freedom Finger\", \"localizedName\": \"Freedom Finger\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000262, \"titleIds\": [\"CUSA18462_00\", \"CUSA18507_00\", \"CUSA19041_00\"], \"name\": \"Freedom Finger\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Freedom Finger\", \"uk-UA\": \"Freedom Finger\", \"de-DE\": \"Freedom Finger\", \"en-US\": \"Freedom Finger\", \"pt-BR\": \"Freedom Finger\", \"es-ES\": \"Freedom Finger\", \"ar-AE\": \"Freedom Finger\", \"no-NO\": \"Freedom Finger\", \"fr-CA\": \"Freedom Finger\", \"it-IT\": \"Freedom Finger\", \"pl-PL\": \"Freedom Finger\", \"ru-RU\": \"Freedom Finger\", \"zh-Hans\": \"Freedom Finger\", \"nl-NL\": \"Freedom Finger\", \"pt-PT\": \"Freedom Finger\", \"zh-Hant\": \"Freedom Finger\", \"sv-SE\": \"Freedom Finger\", \"da-DK\": \"Freedom Finger\", \"tr-TR\": \"Freedom Finger\", \"fr-FR\": \"Freedom Finger\", \"en-GB\": \"Freedom Finger\", \"es-419\": \"Freedom Finger\", \"ja-JP\": \"Freedom Finger\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T03:13:52.380000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:15:44.850000Z\", \"playDuration\": \"PT1M40S\"}, {\"titleId\": \"CUSA19041_00\", \"name\": \"Freedom Finger\", \"localizedName\": \"Freedom Finger\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000262, \"titleIds\": [\"CUSA18462_00\", \"CUSA18507_00\", \"CUSA19041_00\"], \"name\": \"Freedom Finger\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Freedom Finger\", \"uk-UA\": \"Freedom Finger\", \"de-DE\": \"Freedom Finger\", \"en-US\": \"Freedom Finger\", \"pt-BR\": \"Freedom Finger\", \"es-ES\": \"Freedom Finger\", \"ar-AE\": \"Freedom Finger\", \"no-NO\": \"Freedom Finger\", \"fr-CA\": \"Freedom Finger\", \"it-IT\": \"Freedom Finger\", \"pl-PL\": \"Freedom Finger\", \"ru-RU\": \"Freedom Finger\", \"zh-Hans\": \"Freedom Finger\", \"nl-NL\": \"Freedom Finger\", \"pt-PT\": \"Freedom Finger\", \"zh-Hant\": \"Freedom Finger\", \"sv-SE\": \"Freedom Finger\", \"da-DK\": \"Freedom Finger\", \"tr-TR\": \"Freedom Finger\", \"fr-FR\": \"Freedom Finger\", \"en-GB\": \"Freedom Finger\", \"es-419\": \"Freedom Finger\", \"ja-JP\": \"Freedom Finger\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/pic0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA18462_00/2/i_54d03602f69f9e112f6f344182e08d5dee75a611512447d757e778c2534f2970/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2021-10-17T12:21:49.060000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:13:49.850000Z\", \"playDuration\": \"PT2M35S\"}, {\"titleId\": \"PPSA15293_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T02:25:11.280000Z\", \"lastPlayedDateTime\": \"2023-06-04T03:01:09.870000Z\", \"playDuration\": \"PT35M38S\"}, {\"titleId\": \"CUSA42289_00\", \"name\": \"Mighty Mage\", \"localizedName\": \"Mighty Mage\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007932, \"titleIds\": [\"PPSA15293_00\", \"PPSA15294_00\", \"CUSA42290_00\", \"CUSA42291_00\", \"PPSA15296_00\", \"CUSA42292_00\", \"PPSA15295_00\", \"CUSA42289_00\"], \"name\": \"Mighty Mage\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mighty Mage\", \"uk-UA\": \"Mighty Mage\", \"de-DE\": \"Mighty Mage\", \"en-US\": \"Mighty Mage\", \"ko-KR\": \"Mighty Mage\", \"pt-BR\": \"Mighty Mage\", \"es-ES\": \"Mighty Mage\", \"ar-AE\": \"Mighty Mage\", \"no-NO\": \"Mighty Mage\", \"fr-CA\": \"Mighty Mage\", \"it-IT\": \"Mighty Mage\", \"pl-PL\": \"Mighty Mage\", \"ru-RU\": \"Mighty Mage\", \"zh-Hans\": \"Mighty Mage\", \"nl-NL\": \"Mighty Mage\", \"pt-PT\": \"Mighty Mage\", \"zh-Hant\": \"Mighty Mage\", \"sv-SE\": \"Mighty Mage\", \"da-DK\": \"Mighty Mage\", \"tr-TR\": \"Mighty Mage\", \"fr-FR\": \"Mighty Mage\", \"en-GB\": \"Mighty Mage\", \"es-419\": \"Mighty Mage\", \"ja-JP\": \"Mighty Mage\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/92e6bd34417f463a914c3f34cd63b817b43e4b129c4782d4.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/20ab7cd0a243af0a51574049bccdeb26db0a23b0d0bc305a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/90361d789e1a0ebc3fb022aafc96b470aad28cb3fcf63b9a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/5f1b6514d548518aa0058da7722fc27f1944f9e492058439.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/65b89fb567d788a8e10307b5106f8a85be57199e849aa126.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/d84f2d6122789bdb5c2234af25aebf0af4ce719b27c2af73.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/e709b83a78911d8fc2c13cdd85602bf382de62353df4ff3e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/01cfd5d4738f9990a758174db744082f1c1bd983caaae8e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/dfbc06835e1051bffc0304dd0dbbce413165138df1ae2311.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/f34343ffa2094a410cdb02f462f7e42ba6807974db45fb03.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2017/c5cb97e5099890fadc75ea9d903aa8825fd8614b19f4b3dd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2013/38bdd4976840b47f709250ec5b9da54ade822db44f9108a3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-04T01:46:23.120000Z\", \"lastPlayedDateTime\": \"2023-06-04T02:25:09.210000Z\", \"playDuration\": \"PT38M10S\"}, {\"titleId\": \"PPSA10831_00\", \"name\": \"Mothmen 1966\", \"localizedName\": \"Mothmen 1966\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005010, \"titleIds\": [\"PPSA10830_00\", \"PPSA10831_00\", \"CUSA33546_00\", \"PPSA10829_00\", \"CUSA33544_00\", \"CUSA33545_00\"], \"name\": \"Mothmen 1966\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/RE2Bwi6prv8q4UuiLJgn5moC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1405/OdRspiB2fSygVoY6iw2tKyqg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1202/cnsOI09Gpib7m9HbOIsId16p.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/TnA9JE5RkrgdTliL3nEFpKIY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/P12Gs6Nr55CpKef4EUe8Tyvp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/K2lct2jEVJzNu6e02fhXNxUf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/MvKrdkFA9tSXpyugsSYEEmRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/8y7QCude48y8Il8aXoEf6Sf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/FnXjfmarGOTg2RkJbPc5pY27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/v8dbKQWUlyavOw3h8ftKYY62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/0z5ttYdWjx56eSYc4ix96BNn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/AzZwEXxdnaZG6f6Ov4LQSEuh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/b66b4PqzFis4CY3b2ZL7yjWG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/Ccd6Sik54EoFqD8qZypezkZB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothmen 1966\", \"uk-UA\": \"Mothmen 1966\", \"de-DE\": \"Mothmen 1966\", \"en-US\": \"Mothmen 1966\", \"ko-KR\": \"Mothmen 1966\", \"pt-BR\": \"Mothmen 1966\", \"es-ES\": \"Mothmen 1966\", \"ar-AE\": \"Mothmen 1966\", \"no-NO\": \"Mothmen 1966\", \"fr-CA\": \"Mothmen 1966\", \"it-IT\": \"Mothmen 1966\", \"pl-PL\": \"Mothmen 1966\", \"ru-RU\": \"Mothmen 1966\", \"zh-Hans\": \"\\u5929\\u86fe\\u4eba1966\", \"nl-NL\": \"Mothmen 1966\", \"pt-PT\": \"Mothmen 1966\", \"zh-Hant\": \"\\u5929\\u86fe\\u4eba1966\", \"sv-SE\": \"Mothmen 1966\", \"da-DK\": \"Mothmen 1966\", \"tr-TR\": \"Mothmen 1966\", \"fr-FR\": \"Mothmen 1966\", \"en-GB\": \"Mothmen 1966\", \"es-419\": \"Mothmen 1966\", \"ja-JP\": \"\\u30e2\\u30b9\\u30e1\\u30f3 1966\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/RE2Bwi6prv8q4UuiLJgn5moC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1405/OdRspiB2fSygVoY6iw2tKyqg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1202/cnsOI09Gpib7m9HbOIsId16p.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/TnA9JE5RkrgdTliL3nEFpKIY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/P12Gs6Nr55CpKef4EUe8Tyvp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/K2lct2jEVJzNu6e02fhXNxUf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/MvKrdkFA9tSXpyugsSYEEmRw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/8y7QCude48y8Il8aXoEf6Sf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/FnXjfmarGOTg2RkJbPc5pY27.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/v8dbKQWUlyavOw3h8ftKYY62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/0z5ttYdWjx56eSYc4ix96BNn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/AzZwEXxdnaZG6f6Ov4LQSEuh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/b66b4PqzFis4CY3b2ZL7yjWG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/Ccd6Sik54EoFqD8qZypezkZB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2002/CZ2tyV7P0D5olCW4oVxQwtlK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T13:08:10.410000Z\", \"lastPlayedDateTime\": \"2023-06-02T13:49:25.320000Z\", \"playDuration\": \"PT41M9S\"}, {\"titleId\": \"CUSA42510_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T12:52:20.730000Z\", \"lastPlayedDateTime\": \"2023-06-02T12:57:57.540000Z\", \"playDuration\": \"PT4M30S\"}, {\"titleId\": \"CUSA42509_00\", \"name\": \"Galactic Lords\", \"localizedName\": \"Galactic Lords\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008027, \"titleIds\": [\"PPSA20268_00\", \"CUSA42510_00\", \"CUSA42511_00\", \"CUSA42512_00\", \"PPSA20265_00\", \"CUSA42509_00\", \"PPSA20267_00\", \"PPSA20266_00\"], \"name\": \"Galactic Lords\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"STRATEGY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Galactic Lords\", \"uk-UA\": \"Galactic Lords\", \"de-DE\": \"Galactic Lords\", \"en-US\": \"Galactic Lords\", \"ko-KR\": \"Galactic Lords\", \"pt-BR\": \"Galactic Lords\", \"es-ES\": \"Galactic Lords\", \"ar-AE\": \"Galactic Lords\", \"no-NO\": \"Galactic Lords\", \"fr-CA\": \"Galactic Lords\", \"it-IT\": \"Galactic Lords\", \"pl-PL\": \"Galactic Lords\", \"ru-RU\": \"Galactic Lords\", \"zh-Hans\": \"Galactic Lords\", \"nl-NL\": \"Galactic Lords\", \"pt-PT\": \"Galactic Lords\", \"zh-Hant\": \"Galactic Lords\", \"sv-SE\": \"Galactic Lords\", \"da-DK\": \"Galactic Lords\", \"tr-TR\": \"Galactic Lords\", \"fr-FR\": \"Galactic Lords\", \"en-GB\": \"Galactic Lords\", \"es-419\": \"Galactic Lords\", \"ja-JP\": \"Galactic Lords\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2415/103d40212782fdcc59dfc9dc07c223e512d993f983de6aa5.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/6d28228e26934a6c90225f0ea938e627e4eec0f879a6c976.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/73a6035fb1d0f9fc8cb0f340038e36768ec7fd9039481d46.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/e307717f9f9665ea7252fdb655a887b829f0b0ee1dfe21d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/9c85c206b3aeff1b9cdd8be1ca76bedb36a4558d1c89922e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/b84877caf83b75166d87a6fe71dc07dc84f062b3027ef558.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/7058e3405b6951d3c4491c71c128471e4e2421797b8be7fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/c857fbd2a2d69c9c5f92f00d53e20748f0a0828af66ae3b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2301/a50abc6bcc2e18e7cd8121969fef333d067024d11ae7a138.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T12:41:20.290000Z\", \"lastPlayedDateTime\": \"2023-06-02T12:52:18.750000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"PPSA16464_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:55:48.350000Z\", \"lastPlayedDateTime\": \"2023-06-02T07:08:54.840000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA43387_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T07:00:37.990000Z\", \"lastPlayedDateTime\": \"2023-06-02T07:05:36.440000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"CUSA43386_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:51:47.960000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:54:55.800000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"CUSA43385_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:47:21.670000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:51:43.120000Z\", \"playDuration\": \"PT4M4S\"}, {\"titleId\": \"PPSA16463_00\", \"name\": \"Cat Ping Pong\", \"localizedName\": \"Cat Ping Pong\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008378, \"titleIds\": [\"CUSA43385_00\", \"PPSA16462_00\", \"PPSA16463_00\", \"CUSA43386_00\", \"CUSA43387_00\", \"PPSA16464_00\"], \"name\": \"Cat Ping Pong\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cat Ping Pong\", \"uk-UA\": \"Cat Ping Pong\", \"de-DE\": \"Cat Ping Pong\", \"en-US\": \"Cat Ping Pong\", \"pt-BR\": \"Cat Ping Pong\", \"es-ES\": \"Cat Ping Pong\", \"ar-AE\": \"Cat Ping Pong\", \"no-NO\": \"Cat Ping Pong\", \"fr-CA\": \"Cat Ping Pong\", \"it-IT\": \"Cat Ping Pong\", \"pl-PL\": \"Cat Ping Pong\", \"ru-RU\": \"Cat Ping Pong\", \"nl-NL\": \"Cat Ping Pong\", \"pt-PT\": \"Cat Ping Pong\", \"sv-SE\": \"Cat Ping Pong\", \"da-DK\": \"Cat Ping Pong\", \"tr-TR\": \"Cat Ping Pong\", \"fr-FR\": \"Cat Ping Pong\", \"en-GB\": \"Cat Ping Pong\", \"es-419\": \"Cat Ping Pong\", \"ja-JP\": \"Cat Ping Pong\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/63ba5610dc4389dc12b4fcb100ce8c49e5f9b1f7783363d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/91fa8b90fdc4e37748deabad0f2da8dbb2930f274934ecbe.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/c39f890175fab5932e2751dd9471adc9cfa8e49189addcfb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/59fc7b7b7b4682de99a31d8021c085e50a169df00c43b3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/4a89fe240b406ecafb8a629c27cbc7ded4abfa341fe38636.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/dd0361c1b1636ac43770b484fa5dfa4ec89cd2e6729ea040.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/43549016b5427b9cddbd31e7c8536cd7a4f80ccc45fa25b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/7c6d13d4a91efa6eb6a4cd06017bd5cf5242226797a090a7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/385363d6decbbe3d89a887e32c3922573d0a38c9dcdc992d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/14ba68b6322682cf2c31b53818d36fe133d8ad64c8d50c6c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/dfa2de3b395017ced597394bcbc3af671f2827d5595233fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/1e5969902e7fe0ea1ea9508bf746fc8defb784403af22fb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/353c2753b1be89b380ec2d92dc419030a98825a6a2afb14b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2520/f28aeab98d61010ce9946e4f925a66395cd3f0bbbf376cdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2322/6c9f2bb5bc26c2ab4400d3640c317f195fa05e7842796b92.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:41:03.440000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:47:18.230000Z\", \"playDuration\": \"PT4M39S\"}, {\"titleId\": \"PPSA16664_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-02T06:22:01.040000Z\", \"lastPlayedDateTime\": \"2023-06-02T06:40:42.290000Z\", \"playDuration\": \"PT18M30S\"}, {\"titleId\": \"PPSA07591_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T15:06:00.150000Z\", \"lastPlayedDateTime\": \"2023-06-01T16:08:14.100000Z\", \"playDuration\": \"PT1H2M7S\"}, {\"titleId\": \"CUSA29220_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T10:37:33.870000Z\", \"lastPlayedDateTime\": \"2023-06-01T14:55:20.110000Z\", \"playDuration\": \"PT1H29M50S\"}, {\"titleId\": \"PPSA12237_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T05:55:11.390000Z\", \"lastPlayedDateTime\": \"2023-06-01T05:57:31.500000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"CUSA39163_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T05:51:35.220000Z\", \"lastPlayedDateTime\": \"2023-06-01T05:54:03.910000Z\", \"playDuration\": \"PT2M24S\"}, {\"titleId\": \"PPSA11419_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:22:56.790000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:28:37.150000Z\", \"playDuration\": \"PT5M36S\"}, {\"titleId\": \"PPSA11418_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:19:35.380000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:22:54.640000Z\", \"playDuration\": \"PT3M12S\"}, {\"titleId\": \"CUSA38188_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:16:32.510000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:19:33.330000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"CUSA38187_00\", \"name\": \"Eperon Defend\", \"localizedName\": \"Eperon Defend\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006576, \"titleIds\": [\"CUSA38188_00\", \"PPSA11421_00\", \"PPSA11419_00\", \"PPSA11420_00\", \"CUSA38190_00\", \"CUSA38189_00\", \"CUSA38187_00\", \"PPSA11418_00\"], \"name\": \"Eperon Defend\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"QUIZ\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eperon Defend\", \"uk-UA\": \"Eperon Defend\", \"de-DE\": \"Eperon Defend\", \"en-US\": \"Eperon Defend\", \"ko-KR\": \"Eperon Defend\", \"pt-BR\": \"Eperon Defend\", \"es-ES\": \"Eperon Defend\", \"ar-AE\": \"Eperon Defend\", \"no-NO\": \"Eperon Defend\", \"fr-CA\": \"Eperon Defend\", \"it-IT\": \"Eperon Defend\", \"pl-PL\": \"Eperon Defend\", \"ru-RU\": \"Eperon Defend\", \"zh-Hans\": \"Eperon Defend\", \"nl-NL\": \"Eperon Defend\", \"pt-PT\": \"Eperon Defend\", \"zh-Hant\": \"Eperon Defend\", \"sv-SE\": \"Eperon Defend\", \"da-DK\": \"Eperon Defend\", \"tr-TR\": \"Eperon Defend\", \"fr-FR\": \"Eperon Defend\", \"en-GB\": \"Eperon Defend\", \"es-419\": \"Eperon Defend\", \"ja-JP\": \"Eperon Defend\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/b79zeTL7pFUmpBlxqyYPWUUV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/B5JgP4r2CPyRaJixcLGfGzly.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/XpIGPAr2YHMEeMbieVqRST1c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/6uHW5QYsmbWNvHendLfneeyP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/P0r7Tj2uMmYaYfB44AvTv2jn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/QbFREGw90iVjbCYL88aWjvCz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/ff4afc7cae4c41870e8e2157c366420e7170b7619f695d54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/3a990760db39698898129feb62e40226612e2876e76541ba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0208/4792417ccb6cad8c6f16df970aa0c97ef1ce499435715286.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/3017/oj4MFdX7dkFrUhS2IUdNlm2b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T02:12:36.340000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:16:30.430000Z\", \"playDuration\": \"PT3M48S\"}, {\"titleId\": \"PPSA14143_00\", \"name\": \"Savannah Runnah\", \"localizedName\": \"Savannah Runnah\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005921, \"titleIds\": [\"PPSA16664_00\", \"CUSA36021_00\", \"CUSA36022_00\", \"PPSA14143_00\", \"CUSA36020_00\"], \"name\": \"Savannah Runnah\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Savannah Runnah\", \"uk-UA\": \"Savannah Runnah\", \"de-DE\": \"Savannah Runnah\", \"en-US\": \"Savannah Runnah\", \"ko-KR\": \"Savannah Runnah\", \"pt-BR\": \"Savannah Runnah\", \"es-ES\": \"Savannah Runnah\", \"ar-AE\": \"Savannah Runnah\", \"no-NO\": \"Savannah Runnah\", \"fr-CA\": \"Savannah Runnah\", \"it-IT\": \"Savannah Runnah\", \"pl-PL\": \"Savannah Runnah\", \"ru-RU\": \"Savannah Runnah\", \"zh-Hans\": \"Savannah Runnah\", \"nl-NL\": \"Savannah Runnah\", \"pt-PT\": \"Savannah Runnah\", \"zh-Hant\": \"Savannah Runnah\", \"sv-SE\": \"Savannah Runnah\", \"da-DK\": \"Savannah Runnah\", \"tr-TR\": \"Savannah Runnah\", \"fr-FR\": \"Savannah Runnah\", \"en-GB\": \"Savannah Runnah\", \"es-419\": \"Savannah Runnah\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/mtONL5cAX70fyh5f8E9nwKqm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/471d8cc088b270320bd4da28291feabd40d79edb065238f7.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/yhyFPIS7607HfVYIF0qUv1jv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/XbHB2N2JYmNnGRMVwUqM8j2V.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0313/TeeDSygltFLxplLTiS7qQNre.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/04e519dac557b17fddcdadb86c3fa1aafaa86a93168226ba.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/cvEoIzr4W9mPq8JSZGoxYe1w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/2408/b2650f7afaa1cc56409ab77f3df6373e97549187d9124804.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0312/T7DzunFHVkqjOJtzbtSvo0ld.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:53:36.000000Z\", \"lastPlayedDateTime\": \"2023-06-01T02:12:18.230000Z\", \"playDuration\": \"PT18M31S\"}, {\"titleId\": \"PPSA12240_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:47:17.570000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:49:37.300000Z\", \"playDuration\": \"PT2M17S\"}, {\"titleId\": \"PPSA12239_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:44:51.870000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:47:15.430000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA39165_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:41:40.510000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:44:49.580000Z\", \"playDuration\": \"PT1M49S\"}, {\"titleId\": \"CUSA39166_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:39:35.070000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:41:38.560000Z\", \"playDuration\": \"PT1M58S\"}, {\"titleId\": \"CUSA39164_00\", \"name\": \"Stroke The Dik-Dik\", \"localizedName\": \"Stroke The Dik-Dik\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006803, \"titleIds\": [\"PPSA12240_00\", \"CUSA39165_00\", \"CUSA39166_00\", \"CUSA39164_00\", \"CUSA39163_00\", \"PPSA12239_00\", \"PPSA12237_00\"], \"name\": \"Stroke The Dik-Dik\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Aivohalvaus Dik-Dik\", \"uk-UA\": \"\\u041f\\u043e\\u0433\\u043b\\u0430\\u0434\\u044c\\u0442\\u0435 \\u0414\\u0456\\u043a-\\u0414\\u0456\\u043a\", \"de-DE\": \"Streicheln Sie das Dik-Dik\", \"en-US\": \"Stroke The Dik-Dik\", \"ko-KR\": \"\\uc2a4\\ud2b8\\ub85c\\ud06c \\ub354 \\ub515\\ub515\", \"pt-BR\": \"Golpe O Dik-Dik\", \"es-ES\": \"Golpe El Dik-Dik\", \"ar-AE\": \"\\u0627\\u0644\\u0633\\u0643\\u062a\\u0629 \\u0627\\u0644\\u062f\\u0645\\u0627\\u063a\\u064a\\u0629 \\u062f\\u064a\\u0643 \\u062f\\u064a\\u0643\", \"no-NO\": \"Strek Dik-Dik\", \"fr-CA\": \"Stroke Le Dik-Dik\", \"it-IT\": \"Stroke The Dik-Dik\", \"pl-PL\": \"Udar Dik-Dik\", \"ru-RU\": \"\\u0418\\u043d\\u0441\\u0443\\u043b\\u044c\\u0442 \\u0414\\u0438\\u043a-\\u0414\\u0438\\u043a\", \"zh-Hans\": \"\\u629a\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"nl-NL\": \"Aaien De Dik-Dik\", \"pt-PT\": \"Golpe O Dik-Dik\", \"zh-Hant\": \"\\u64ab\\u6478\\u8fea\\u514b\\u8fea\\u514b\", \"sv-SE\": \"Stroke The Dik-Dik\", \"da-DK\": \"Streg Dik-Dik\", \"tr-TR\": \"Dik-Dik \\u0130nme\", \"fr-FR\": \"Stroke Le Dik-Dik\", \"en-GB\": \"Stroke The Dik-Dik\", \"es-419\": \"Golpe El Dik-Dik\", \"ja-JP\": \"\\u30b9\\u30c8\\u30ed\\u30fc\\u30af\\u30fb\\u30b6\\u30fb\\u30c7\\u30a3\\u30af\\u30fb\\u30c7\\u30a3\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/939af4351a67569589029a91905fb62cb335582c3131192a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/71bcc4e5ad8d4127de57e264a2638a04c53d07c5d33f1aab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2807/ee9f2f92fc2ccf612e287045f1deb16ce5bd5b4edb128105.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0710/794f54c1481754009408f9d2eb545a30627dba4561b1c836.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0506/CDWtYtjz5qUb50nPvJ9JLUO4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-06-01T01:35:31.610000Z\", \"lastPlayedDateTime\": \"2023-06-01T01:39:33.120000Z\", \"playDuration\": \"PT2M54S\"}, {\"titleId\": \"PPSA04828_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-31T14:43:41.510000Z\", \"lastPlayedDateTime\": \"2023-05-31T16:18:11.010000Z\", \"playDuration\": \"PT1H34M4S\"}, {\"titleId\": \"CUSA29772_00\", \"name\": \"River City Girls Zero\", \"localizedName\": \"River City Girls Zero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10003349, \"titleIds\": [\"CUSA29771_00\", \"CUSA29772_00\", \"PPSA04828_00\", \"PPSA07591_00\", \"CUSA29220_00\", \"PPSA04827_00\"], \"name\": \"River City Girls Zero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FIGHTING\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"River City Girls Zero\", \"uk-UA\": \"River City Girls Zero\", \"de-DE\": \"River City Girls Zero\", \"en-US\": \"River City Girls Zero\", \"ko-KR\": \"\\uc5f4\\ud608\\uacbd\\ud30c \\ucfe0\\ub2c8\\uc624\\uad70 \\uc678\\uc804 \\ub9ac\\ubc84\\uc2dc\\ud2f0 \\uac78\\uc988 \\uc81c\\ub85c\", \"pt-BR\": \"River City Girls Zero\", \"es-ES\": \"River City Girls Zero\", \"ar-AE\": \"River City Girls Zero\", \"no-NO\": \"River City Girls Zero\", \"fr-CA\": \"River City Girls Zero\", \"it-IT\": \"River City Girls Zero\", \"pl-PL\": \"River City Girls Zero\", \"ru-RU\": \"River City Girls Zero\", \"zh-Hans\": \"\\u70ed\\u8840\\u786c\\u6d3e\\u56fd\\u592b\\u541b\\u5916\\u4f20 \\u70ed\\u8840\\u5c11\\u5973 \\u96f6\", \"nl-NL\": \"River City Girls Zero\", \"pt-PT\": \"River City Girls Zero\", \"zh-Hant\": \"\\u71b1\\u8840\\u786c\\u6d3e\\u570b\\u592b\\u541b\\u5916\\u50b3 \\u71b1\\u8840\\u5c11\\u5973 \\u96f6\", \"sv-SE\": \"River City Girls Zero\", \"da-DK\": \"River City Girls Zero\", \"tr-TR\": \"River City Girls Zero\", \"fr-FR\": \"River City Girls Zero\", \"en-GB\": \"River City Girls Zero\", \"es-419\": \"River City Girls Zero\", \"ja-JP\": \"\\u65b0\\u30fb\\u71b1\\u8840\\u786c\\u6d3e \\u304f\\u306b\\u304a\\u305f\\u3061\\u306e\\u633d\\u6b4c -with River City Girls Extra-\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/A7KTCFNcUcrJCXNgzlj1BbqW.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/ZLziVieAC7H2NdXWxQPJgDAo.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/hPTXEpnyI8WxWrH4V1SdGYU1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/4nz2c0s6UWdFWcCde3XhY60K.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2416/hxaS0ZAvZ6xrmfMRbd2zFAcG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/1eRzEzugxxm8TE05gztorOCh.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/giatT1Rd3QHGf9x1wLHGBITO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/9UsTmYZd7zcrpqGz28fC5QW1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/fB8UjtDQ3G2y4VkVPSMsZcx8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/JVamJHfLQnOzjWEoC0WhvDlI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/F3MU17xoeYjrRC1B19j54n96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/tUX4BnqQ64nuEcxCEq5PdAVQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/2418/062ulXEr3zGcelxv2HQaVMai.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-31T07:11:48.340000Z\", \"lastPlayedDateTime\": \"2023-05-31T14:43:38.670000Z\", \"playDuration\": \"PT3H59M3S\"}, {\"titleId\": \"PPSA13888_00\", \"name\": \"Teslagrad Remastered\", \"localizedName\": \"Teslagrad Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007403, \"titleIds\": [\"CUSA40876_00\", \"CUSA40877_00\", \"PPSA13888_00\", \"PPSA13887_00\"], \"name\": \"Teslagrad Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Teslagrad Remastered\", \"uk-UA\": \"Teslagrad Remastered\", \"de-DE\": \"Teslagrad Remastered\", \"en-US\": \"Teslagrad Remastered\", \"ko-KR\": \"\\ud14c\\uc2ac\\ub77c\\uadf8\\ub77c\\ub4dc \\ub9ac\\ub9c8\\uc2a4\\ud130\\ub4dc (Teslagrad Remastered)\", \"pt-BR\": \"Teslagrad Remastered\", \"es-ES\": \"Teslagrad Remastered\", \"ar-AE\": \"Teslagrad Remastered\", \"no-NO\": \"Teslagrad Remastered\", \"fr-CA\": \"Teslagrad Remastered\", \"it-IT\": \"Teslagrad Remastered\", \"pl-PL\": \"Teslagrad Remastered\", \"ru-RU\": \"Teslagrad Remastered\", \"zh-Hans\": \"Teslagrad Remastered\", \"nl-NL\": \"Teslagrad Remastered\", \"pt-PT\": \"Teslagrad Remastered\", \"zh-Hant\": \"Teslagrad Remastered\", \"sv-SE\": \"Teslagrad Remastered\", \"da-DK\": \"Teslagrad Remastered\", \"tr-TR\": \"Teslagrad Remastered\", \"fr-FR\": \"Teslagrad Remastered\", \"en-GB\": \"Teslagrad Remastered\", \"es-419\": \"Teslagrad Remastered\", \"ja-JP\": \"Teslagrad Remastered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T08:51:41.490000Z\", \"lastPlayedDateTime\": \"2023-05-31T06:54:55.860000Z\", \"playDuration\": \"PT2H40M16S\"}, {\"titleId\": \"CUSA40877_00\", \"name\": \"Teslagrad Remastered\", \"localizedName\": \"Teslagrad Remastered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007403, \"titleIds\": [\"CUSA40876_00\", \"CUSA40877_00\", \"PPSA13888_00\", \"PPSA13887_00\"], \"name\": \"Teslagrad Remastered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Teslagrad Remastered\", \"uk-UA\": \"Teslagrad Remastered\", \"de-DE\": \"Teslagrad Remastered\", \"en-US\": \"Teslagrad Remastered\", \"ko-KR\": \"\\ud14c\\uc2ac\\ub77c\\uadf8\\ub77c\\ub4dc \\ub9ac\\ub9c8\\uc2a4\\ud130\\ub4dc (Teslagrad Remastered)\", \"pt-BR\": \"Teslagrad Remastered\", \"es-ES\": \"Teslagrad Remastered\", \"ar-AE\": \"Teslagrad Remastered\", \"no-NO\": \"Teslagrad Remastered\", \"fr-CA\": \"Teslagrad Remastered\", \"it-IT\": \"Teslagrad Remastered\", \"pl-PL\": \"Teslagrad Remastered\", \"ru-RU\": \"Teslagrad Remastered\", \"zh-Hans\": \"Teslagrad Remastered\", \"nl-NL\": \"Teslagrad Remastered\", \"pt-PT\": \"Teslagrad Remastered\", \"zh-Hant\": \"Teslagrad Remastered\", \"sv-SE\": \"Teslagrad Remastered\", \"da-DK\": \"Teslagrad Remastered\", \"tr-TR\": \"Teslagrad Remastered\", \"fr-FR\": \"Teslagrad Remastered\", \"en-GB\": \"Teslagrad Remastered\", \"es-419\": \"Teslagrad Remastered\", \"ja-JP\": \"Teslagrad Remastered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/b1630e3053bc094a6160d4a3d316b9bd438c0ac78ad1be70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/97559578f809fc59f5aaf113b15dfe451320ce1b0f511941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9f16092ef269e002aa0fe3da6c6cdf19afd4470a89f53b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/34d185d6a8e6cf62222febae6885ffb6ddbd6b3aae2a7661.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/ee9809370ccfd9e97aef8f30521dabdf944f27ffa3c39469.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/e29183b47c29cc4d18bd095fefb8e510e450d54268a40bce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/08fc84996592dfd0fc3be4294a70a3e0a43fbfe763033f09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/8f6bfc2284cd3fd0c0b1e18d6fffb12a9ccdfc47dc774c5c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/51345a6b87124a78d51811ad553628fce9b260f60db6793e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/fbb062baced9fcd6f6684c42e2d42e33ac5ca8d258a7cead.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/53bf57a5e8ecf5b98a7d3214c865cb9a9f5a4326d69b9c0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/5cee1472580b6098c4bc76a2cf22aa4d07c46968255cc820.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/d5cc53a9a462c8e6e51e292c404f7797e6316701efae1ad1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1822/2601927c827a6476bb5a88a14171cc502b4d224c5f47f6bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0523/982b66dbf67c6310f11e4c353fb709d7dc179c4e21301108.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T06:07:20.690000Z\", \"lastPlayedDateTime\": \"2023-05-31T05:42:54.500000Z\", \"playDuration\": \"PT4H18M57S\"}, {\"titleId\": \"PPSA09803_00\", \"name\": \"GRIS\", \"localizedName\": \"GRIS\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 234650, \"titleIds\": [\"CUSA16703_00\", \"PPSA09803_00\", \"PPSA09804_00\", \"CUSA16694_00\"], \"name\": \"GRIS\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a1fjw5n0WpBfBSjLGpBZHd5Y.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/c38DvA26vUkMT0SXB38tESNS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/k5m7YQ0uOlwpqSYe5XoZ7aJX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/TUcdStV7dVvBP18WwB3OJL1R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1323/YOZxVAwYhvlkZU2IXlSBW3B8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/PMjvy3y1p6gkPsBwCUuaFnfv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/NLFpV4A42ZNG8RT14Ae38Swv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/aTukDQABvbBuCl2ZJKsuZtHs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/QiKJsy96ssAEum73ziUCHwFN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/VaIX0d6v82ZWDg1tPgztsYyW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/74SmglFHaJ0jPdA067tma21H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/9tTlr4KlHtVFpOUe8LU621pw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/95p5Zwxf9FWOStkNxr3QLnhQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/7FMEvLKpR5Al01wPy0bCKuTs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a4zZWdkvr5ElfjOPp1SLqtye.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"GRIS\", \"uk-UA\": \"GRIS\", \"de-DE\": \"GRIS\", \"en-US\": \"GRIS\", \"ko-KR\": \"GRIS\", \"pt-BR\": \"GRIS\", \"es-ES\": \"GRIS\", \"ar-AE\": \"GRIS\", \"no-NO\": \"GRIS\", \"fr-CA\": \"GRIS\", \"it-IT\": \"GRIS\", \"pl-PL\": \"GRIS\", \"ru-RU\": \"GRIS\", \"zh-Hans\": \"GRIS\", \"nl-NL\": \"GRIS\", \"pt-PT\": \"GRIS\", \"zh-Hant\": \"GRIS\", \"sv-SE\": \"GRIS\", \"da-DK\": \"GRIS\", \"tr-TR\": \"GRIS\", \"fr-FR\": \"GRIS\", \"en-GB\": \"GRIS\", \"es-419\": \"GRIS\", \"ja-JP\": \"GRIS\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a1fjw5n0WpBfBSjLGpBZHd5Y.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/c38DvA26vUkMT0SXB38tESNS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/k5m7YQ0uOlwpqSYe5XoZ7aJX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/TUcdStV7dVvBP18WwB3OJL1R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1323/YOZxVAwYhvlkZU2IXlSBW3B8.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/PMjvy3y1p6gkPsBwCUuaFnfv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/NLFpV4A42ZNG8RT14Ae38Swv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/aTukDQABvbBuCl2ZJKsuZtHs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/QiKJsy96ssAEum73ziUCHwFN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/VaIX0d6v82ZWDg1tPgztsYyW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/74SmglFHaJ0jPdA067tma21H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/9tTlr4KlHtVFpOUe8LU621pw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/95p5Zwxf9FWOStkNxr3QLnhQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/7FMEvLKpR5Al01wPy0bCKuTs.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1801/a4zZWdkvr5ElfjOPp1SLqtye.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2621/erwvzuQhwWYIg8EJYkxawE8a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T14:11:41.200000Z\", \"lastPlayedDateTime\": \"2023-05-31T02:26:13.920000Z\", \"playDuration\": \"PT4H39M27S\"}, {\"titleId\": \"PPSA13706_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T04:28:05.650000Z\", \"lastPlayedDateTime\": \"2023-05-30T06:01:27.300000Z\", \"playDuration\": \"PT1H33M2S\"}, {\"titleId\": \"PPSA13707_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-30T02:02:06.360000Z\", \"lastPlayedDateTime\": \"2023-05-30T04:28:03.500000Z\", \"playDuration\": \"PT2H22M37S\"}, {\"titleId\": \"CUSA40645_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 4, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T14:25:07.090000Z\", \"lastPlayedDateTime\": \"2023-05-29T17:09:44.130000Z\", \"playDuration\": \"PT2H40M26S\"}, {\"titleId\": \"CUSA40644_00\", \"name\": \"The Creepy Syndrome\", \"localizedName\": \"The Creepy Syndrome\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007309, \"titleIds\": [\"CUSA40644_00\", \"CUSA40645_00\", \"CUSA43535_00\", \"PPSA13706_00\", \"PPSA13707_00\", \"PPSA16622_00\"], \"name\": \"The Creepy Syndrome\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\", \"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Creepy Syndrome\", \"uk-UA\": \"The Creepy Syndrome\", \"de-DE\": \"The Creepy Syndrome\", \"en-US\": \"The Creepy Syndrome\", \"ko-KR\": \"The Creepy Syndrome\", \"pt-BR\": \"The Creepy Syndrome\", \"es-ES\": \"The Creepy Syndrome\", \"ar-AE\": \"The Creepy Syndrome\", \"no-NO\": \"The Creepy Syndrome\", \"fr-CA\": \"The Creepy Syndrome\", \"it-IT\": \"The Creepy Syndrome\", \"pl-PL\": \"The Creepy Syndrome\", \"ru-RU\": \"The Creepy Syndrome\", \"zh-Hans\": \"The Creepy Syndrome\", \"nl-NL\": \"The Creepy Syndrome\", \"pt-PT\": \"The Creepy Syndrome\", \"zh-Hant\": \"The Creepy Syndrome\", \"sv-SE\": \"The Creepy Syndrome\", \"da-DK\": \"The Creepy Syndrome\", \"tr-TR\": \"The Creepy Syndrome\", \"fr-FR\": \"The Creepy Syndrome\", \"en-GB\": \"The Creepy Syndrome\", \"es-419\": \"The Creepy Syndrome\", \"ja-JP\": \"The Creepy Syndrome\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/30f9d0ca0c953d6e37722dd80cbac83c4d1b39912601fb74.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/90deef39c290ad71020c76c36dda0a5286a3a087408d116f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/a21dfc7a0b45e6b99edc629f51c1c5c715e82a1fe063f470.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/0909/a24a3810c959c7ef759fc1b4c368b8f7f0e0806ce4940cc8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/1c6d9890c8f982a55dd69f31e4cbbfaa231166d7cd47dfae.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/38fbe149eb7e3bee50b607130dc8c04a9b21ecae31c9c8a0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/8ee3e1e18387d638347615621b557eab6b41cfac8c5a7e71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/36bce888bf5283ec33ac3e15425080982d4fdb7e65f3a9eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/e76b522af03e4f4d487637aedf304c9a4d17860eb83d9433.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/88b541d835dbe60dd21d1bb6766ea2b22b8dfa60db8280d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/ad725dd49bc2d863e640b2da22f63456abc625c1413000ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/efdb3403b80f9398b643724d4cff4f4267ef82b83a3d06c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/3009/6ce1b8ab94aade632f86dac2ea98cc0aeed78333161f9bc8.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T10:42:33.260000Z\", \"lastPlayedDateTime\": \"2023-05-29T14:25:04.820000Z\", \"playDuration\": \"PT3H30M52S\"}, {\"titleId\": \"CUSA31152_00\", \"name\": \"Meet Your Maker\", \"localizedName\": \"Meet Your Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 8, \"concept\": {\"id\": 10004068, \"titleIds\": [\"CUSA31154_00\", \"CUSA31152_00\", \"CUSA44079_00\", \"CUSA31153_00\", \"CUSA43042_00\", \"CUSA31151_00\", \"PPSA05722_00\", \"PPSA05723_00\"], \"name\": \"Meet Your Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"STRATEGY\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meet Your Maker\", \"uk-UA\": \"Meet Your Maker\", \"de-DE\": \"Meet Your Maker\", \"en-US\": \"Meet Your Maker\", \"ko-KR\": \"Meet Your Maker\", \"pt-BR\": \"Meet Your Maker\", \"es-ES\": \"Meet Your Maker\", \"ar-AE\": \"Meet Your Maker\", \"no-NO\": \"Meet Your Maker\", \"fr-CA\": \"Meet Your Maker\", \"it-IT\": \"Meet Your Maker\", \"pl-PL\": \"Meet Your Maker\", \"ru-RU\": \"Meet Your Maker\", \"zh-Hans\": \"Meet Your Maker\", \"nl-NL\": \"Meet Your Maker\", \"pt-PT\": \"Meet Your Maker\", \"zh-Hant\": \"Meet Your Maker\", \"sv-SE\": \"Meet Your Maker\", \"da-DK\": \"Meet Your Maker\", \"tr-TR\": \"Meet Your Maker\", \"fr-FR\": \"Meet Your Maker\", \"en-GB\": \"Meet Your Maker\", \"es-419\": \"Meet Your Maker\", \"ja-JP\": \"Meet Your Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-06T16:29:06.390000Z\", \"lastPlayedDateTime\": \"2023-05-29T10:18:33.240000Z\", \"playDuration\": \"PT31M28S\"}, {\"titleId\": \"PPSA05723_00\", \"name\": \"Meet Your Maker\", \"localizedName\": \"Meet Your Maker\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 20, \"concept\": {\"id\": 10004068, \"titleIds\": [\"CUSA31154_00\", \"CUSA31152_00\", \"CUSA44079_00\", \"CUSA31153_00\", \"CUSA43042_00\", \"CUSA31151_00\", \"PPSA05722_00\", \"PPSA05723_00\"], \"name\": \"Meet Your Maker\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"STRATEGY\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Meet Your Maker\", \"uk-UA\": \"Meet Your Maker\", \"de-DE\": \"Meet Your Maker\", \"en-US\": \"Meet Your Maker\", \"ko-KR\": \"Meet Your Maker\", \"pt-BR\": \"Meet Your Maker\", \"es-ES\": \"Meet Your Maker\", \"ar-AE\": \"Meet Your Maker\", \"no-NO\": \"Meet Your Maker\", \"fr-CA\": \"Meet Your Maker\", \"it-IT\": \"Meet Your Maker\", \"pl-PL\": \"Meet Your Maker\", \"ru-RU\": \"Meet Your Maker\", \"zh-Hans\": \"Meet Your Maker\", \"nl-NL\": \"Meet Your Maker\", \"pt-PT\": \"Meet Your Maker\", \"zh-Hant\": \"Meet Your Maker\", \"sv-SE\": \"Meet Your Maker\", \"da-DK\": \"Meet Your Maker\", \"tr-TR\": \"Meet Your Maker\", \"fr-FR\": \"Meet Your Maker\", \"en-GB\": \"Meet Your Maker\", \"es-419\": \"Meet Your Maker\", \"ja-JP\": \"Meet Your Maker\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bc8uAlXmzCvWDSondK98fB8i.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/PUVCY7BuaxCUtAaQNQVGLooO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/2z4U7Aw7zQdP2GFC4wX1odJE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/ULWNgvtCXcV410ZINqZ6nNtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/GsgTeEbkSgKk4WTOXdcyFhKQ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bqtDZVNBcFbWq7ZHMxqQvZDm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/uyjcooL1ChekyuVnsgdc3cFC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/yRjJPhYjAW68hhqQqv4iDIEh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bYraGtwS1BYGyTlM7rrw3PaD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/wgYZa0TmnrJqI1MctOwKgUai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/qcqLbZwlAomJ8ZSD1e3wCH9j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2115/P24AgjpjFs3keDoWAuTlev4A.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/r829cmCcUy41ASk8DcQDtgzP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/2802/bi9VYKGOaaysOajvb1DQLDgA.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-06T12:19:06.210000Z\", \"lastPlayedDateTime\": \"2023-05-29T10:14:45.890000Z\", \"playDuration\": \"PT15H48M22S\"}, {\"titleId\": \"CUSA43588_00\", \"name\": \"Santas Monster Shootout\", \"localizedName\": \"Santas Monster Shootout\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008471, \"titleIds\": [\"CUSA43588_00\", \"CUSA43587_00\"], \"name\": \"Santas Monster Shootout\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Santas Monster Shootout\", \"uk-UA\": \"Santas Monster Shootout\", \"de-DE\": \"Santas Monster Shootout\", \"en-US\": \"Santas Monster Shootout\", \"pt-BR\": \"Santas Monster Shootout\", \"es-ES\": \"Santas Monster Shootout\", \"ar-AE\": \"Santas Monster Shootout\", \"no-NO\": \"Santas Monster Shootout\", \"fr-CA\": \"Santas Monster Shootout\", \"it-IT\": \"Santas Monster Shootout\", \"pl-PL\": \"Santas Monster Shootout\", \"ru-RU\": \"Santas Monster Shootout\", \"nl-NL\": \"Santas Monster Shootout\", \"pt-PT\": \"Santas Monster Shootout\", \"sv-SE\": \"Santas Monster Shootout\", \"da-DK\": \"Santas Monster Shootout\", \"tr-TR\": \"Santas Monster Shootout\", \"fr-FR\": \"Santas Monster Shootout\", \"en-GB\": \"Santas Monster Shootout\", \"es-419\": \"Santas Monster Shootout\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T08:06:20.750000Z\", \"lastPlayedDateTime\": \"2023-05-29T09:14:06.140000Z\", \"playDuration\": \"PT1H7M40S\"}, {\"titleId\": \"CUSA43587_00\", \"name\": \"Santas Monster Shootout\", \"localizedName\": \"Santas Monster Shootout\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008471, \"titleIds\": [\"CUSA43588_00\", \"CUSA43587_00\"], \"name\": \"Santas Monster Shootout\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Santas Monster Shootout\", \"uk-UA\": \"Santas Monster Shootout\", \"de-DE\": \"Santas Monster Shootout\", \"en-US\": \"Santas Monster Shootout\", \"pt-BR\": \"Santas Monster Shootout\", \"es-ES\": \"Santas Monster Shootout\", \"ar-AE\": \"Santas Monster Shootout\", \"no-NO\": \"Santas Monster Shootout\", \"fr-CA\": \"Santas Monster Shootout\", \"it-IT\": \"Santas Monster Shootout\", \"pl-PL\": \"Santas Monster Shootout\", \"ru-RU\": \"Santas Monster Shootout\", \"nl-NL\": \"Santas Monster Shootout\", \"pt-PT\": \"Santas Monster Shootout\", \"sv-SE\": \"Santas Monster Shootout\", \"da-DK\": \"Santas Monster Shootout\", \"tr-TR\": \"Santas Monster Shootout\", \"fr-FR\": \"Santas Monster Shootout\", \"en-GB\": \"Santas Monster Shootout\", \"es-419\": \"Santas Monster Shootout\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35dacd323cef1354e4dbcb09a4c5f4ac9abeb4188b78f60e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/eca69d3c3daa031e23706694dae5b9430814cf5e20e6b12a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/995ba8dbbdb4d8a2139ca695203f0317190c92c6e5626b7b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f0f835f346d876c800d9d11fec735e7b023eba6ffc661aec.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/f4a3c9915caf63ce197083e29d8c1a2283c79834a6326455.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/12a940af8984c93f9c88e3ad4859c9644862c82341a97d71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/35876ce7d23b0c46da0164572743662bf92e8740b877d90e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/2b2f4b445f9be347abe0d94ac7f016e3023c493c30826750.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0415/0deaf181dba79dc3b916ff875ec3ed9ff30a01d851356253.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-29T06:18:45.120000Z\", \"lastPlayedDateTime\": \"2023-05-29T08:06:19.320000Z\", \"playDuration\": \"PT1H44M40S\"}, {\"titleId\": \"PPSA14132_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:58:02.560000Z\", \"lastPlayedDateTime\": \"2023-05-28T15:11:49.740000Z\", \"playDuration\": \"PT43M46S\"}, {\"titleId\": \"PPSA14133_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T09:06:33.520000Z\", \"lastPlayedDateTime\": \"2023-05-28T14:28:13.090000Z\", \"playDuration\": \"PT49M22S\"}, {\"titleId\": \"CUSA41116_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:57:13.310000Z\", \"lastPlayedDateTime\": \"2023-05-28T13:15:08.420000Z\", \"playDuration\": \"PT1H13S\"}, {\"titleId\": \"CUSA41117_00\", \"name\": \"Mothered\", \"localizedName\": \"Mothered\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10007526, \"titleIds\": [\"CUSA47071_00\", \"PPSA14133_00\", \"CUSA41116_00\", \"CUSA41117_00\", \"PPSA20839_00\", \"PPSA14132_00\"], \"name\": \"Mothered\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mothered\", \"uk-UA\": \"Mothered\", \"de-DE\": \"Mothered\", \"en-US\": \"Mothered\", \"ko-KR\": \"Mothered\", \"pt-BR\": \"Mothered\", \"es-ES\": \"Mothered\", \"ar-AE\": \"Mothered\", \"no-NO\": \"Mothered\", \"fr-CA\": \"Mothered\", \"it-IT\": \"Mothered\", \"pl-PL\": \"Mothered\", \"ru-RU\": \"Mothered\", \"zh-Hans\": \"Mothered\", \"nl-NL\": \"Mothered\", \"pt-PT\": \"Mothered\", \"zh-Hant\": \"Mothered\", \"sv-SE\": \"Mothered\", \"da-DK\": \"Mothered\", \"tr-TR\": \"Mothered\", \"fr-FR\": \"Mothered\", \"en-GB\": \"Mothered\", \"es-419\": \"Mothered\", \"ja-JP\": \"Mothered\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/6939eaac93b6fa4d77025f24973b69e618f012f34ef4add6.PNG\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0610/27ef029f2ad8a5f4ff3994ded5aec02513226ef7dd0b6c29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f9ea25307ef1157958f6157766d4fc4a93f8b7a3ae3d9411.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2710/0af991377ca0cdaab6115fa56703526eaeeca4d8b2a8df57.PNG\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/f5854ea19fa901d22a224111b6c442e48c19d8441293f059.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/1288942ab22997b14f1120fac4dbcc15f25dd2f49e97f534.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/88e569db0ef58559caf213558c60e5fee56cebc947bdb4bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/2b7eee33d624636c4f35cfac7d071862e0741dbb94d7a931.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/e93129d099b5c756f2eabcc0ac0929f53b245f269896bbb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/dead033fa27227a50525560c25addf2bfd7a7c13613451b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/33e9600623467bbd616639c16c267dc2c4ca743ba7ec3b56.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/71e1af5bc4701cc493ac753a364fa4c2e4004c68ca060135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0609/11ba74675d1e5b3583c3df11fcf6995657de38de04947cb9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:56:34.940000Z\", \"lastPlayedDateTime\": \"2023-05-28T12:11:19.930000Z\", \"playDuration\": \"PT1H27M53S\"}, {\"titleId\": \"CUSA40170_00\", \"name\": \"Fuyukara Kururu\", \"localizedName\": \"Fuyukara Kururu\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007105, \"titleIds\": [\"CUSA40170_00\", \"CUSA40171_00\"], \"name\": \"Fuyukara Kururu\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/f22fbe469b275096b051ed3204a38cf88b91e0c8b7e664eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/448f28bb3acedad7369e7c879cd118762e47a360bbe700ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/747711a51a26943e7793c3af5e58e03a643290bf9bfc56fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/235e7c01b0aa718f6a396bb6d847b40c95a2b8a9e3e2d4eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/efd95f65990f89ad898b9f49f989fa3753e8b3e135bfbaeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/45f747d86a120da542aa1343aa92510acc18da3a70da5584.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/df494eb3e6ccb0fd474e042db028c62e9e6a3653f3a5c537.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/dd0a262298b944798979d96ae4819826559122c58fc7b7c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/4b484da3a5ebe4878eb3ccef85c37c8745dba146df27387d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/406241d3683adab92291339f25b162a087ede91522e6bfdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Fuyukara Kururu\", \"en-GB\": \"Fuyukara Kururu\", \"ja-JP\": \"\\u3075\\u3086\\u304b\\u3089\\u3001\\u304f\\u308b\\u308b\\u3002\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/f22fbe469b275096b051ed3204a38cf88b91e0c8b7e664eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/448f28bb3acedad7369e7c879cd118762e47a360bbe700ce.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/747711a51a26943e7793c3af5e58e03a643290bf9bfc56fb.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/235e7c01b0aa718f6a396bb6d847b40c95a2b8a9e3e2d4eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/efd95f65990f89ad898b9f49f989fa3753e8b3e135bfbaeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/45f747d86a120da542aa1343aa92510acc18da3a70da5584.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/df494eb3e6ccb0fd474e042db028c62e9e6a3653f3a5c537.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/dd0a262298b944798979d96ae4819826559122c58fc7b7c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/4b484da3a5ebe4878eb3ccef85c37c8745dba146df27387d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/406241d3683adab92291339f25b162a087ede91522e6bfdf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1200/6f463eb69362488fb295a105e85ae66240caecacc7b5ef9d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T10:14:28.710000Z\", \"lastPlayedDateTime\": \"2023-05-28T10:23:27.640000Z\", \"playDuration\": \"PT8M55S\"}, {\"titleId\": \"CUSA26390_00\", \"name\": \"Maze\", \"localizedName\": \"Maze\", \"imageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 235150, \"titleIds\": [\"CUSA26390_00\", \"CUSA17893_00\", \"CUSA17969_00\"], \"name\": \"Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/1QXeqN6SvRy7iWB3rRs4R2Ti.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/3XWnL9zcuTbWXikvzHRhaXwG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/A4b4tHjfW5urQssQTfHhIxJz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/djIbzCssbBy6uqlZnNBxaS0r.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307X1HuSALer1SqkM2aeaapakv8rMLYgbv2dPdyz02rMVYGz1X9dQTcU632iAzRuJcrwiRTfnPatuq9pXwAEj-pGkPOOh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307LlI3yVUTkoIdloTf4eTWrSD92Ezz3Vfd6UB2WkRiGOA6fEblOSNW2hSa7Wg2CJ31DQkumZ5dSDxWCn7hNd6hzIC1fp_.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Lh1i5Ad3cZcD4sMPuR5rkyZFC2YtuMBJ9g8i3qD2PvQnIxsyac5O3nLs9Atr_tYfHnDKSMG59zFQg2X6DJYw6YZSsWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lTEiVtd2k7Ox1GeKq778LxYptfGLfwTeONS39rhdQ0sqbx6HuCe5q3FhMAPWMuzdrAGj2q1SStfdx2bIv3GNishnRqv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307tL0iwrXrGB_wwb2L-Don6Iz8oEcQX8KIPQLn1g3lqJApuU1UQYaq7EJTgMzqHlwONp_J710GEZHHTestvqHJXQiRzja.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Vo67UtI3zScY16ytzPzJ0LYyKow77R5k3XeIUVX1i20aPzITuGhhXoVXlQCfSV_Icwy3rdWHymOp_Kz0lz4eJ8ZfmyB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307KKsSW0cgA2j0K-xArfIBSy0PeI3XPbv4I6DY7OT25V0dZHnW28KM4FNe_Lio1O99ogZeziuhKOtIDSuxA1gf8QEaqse.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073BTtlvIx39jOhxI2ijstXEy4S_M2JKPV2xuup1dCEIoYNzSP3BhwShosh4-3A7h4TIkMQ1F9OdLaV5IL20v6HgfVJTw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Maze\", \"uk-UA\": \"Maze\", \"de-DE\": \"Maze\", \"en-US\": \"Maze\", \"pt-BR\": \"Maze\", \"es-ES\": \"Maze\", \"ar-AE\": \"Maze\", \"no-NO\": \"Maze\", \"fr-CA\": \"Maze\", \"it-IT\": \"Maze\", \"pl-PL\": \"Maze\", \"ru-RU\": \"Maze\", \"nl-NL\": \"Maze\", \"pt-PT\": \"Maze\", \"sv-SE\": \"Maze\", \"da-DK\": \"Maze\", \"tr-TR\": \"Maze\", \"fr-FR\": \"Maze\", \"en-GB\": \"Maze\", \"es-419\": \"Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/1QXeqN6SvRy7iWB3rRs4R2Ti.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/3XWnL9zcuTbWXikvzHRhaXwG.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/A4b4tHjfW5urQssQTfHhIxJz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2416/djIbzCssbBy6uqlZnNBxaS0r.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307X1HuSALer1SqkM2aeaapakv8rMLYgbv2dPdyz02rMVYGz1X9dQTcU632iAzRuJcrwiRTfnPatuq9pXwAEj-pGkPOOh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307LlI3yVUTkoIdloTf4eTWrSD92Ezz3Vfd6UB2WkRiGOA6fEblOSNW2hSa7Wg2CJ31DQkumZ5dSDxWCn7hNd6hzIC1fp_.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Lh1i5Ad3cZcD4sMPuR5rkyZFC2YtuMBJ9g8i3qD2PvQnIxsyac5O3nLs9Atr_tYfHnDKSMG59zFQg2X6DJYw6YZSsWw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307lTEiVtd2k7Ox1GeKq778LxYptfGLfwTeONS39rhdQ0sqbx6HuCe5q3FhMAPWMuzdrAGj2q1SStfdx2bIv3GNishnRqv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307tL0iwrXrGB_wwb2L-Don6Iz8oEcQX8KIPQLn1g3lqJApuU1UQYaq7EJTgMzqHlwONp_J710GEZHHTestvqHJXQiRzja.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307Vo67UtI3zScY16ytzPzJ0LYyKow77R5k3XeIUVX1i20aPzITuGhhXoVXlQCfSV_Icwy3rdWHymOp_Kz0lz4eJ8ZfmyB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/11307KKsSW0cgA2j0K-xArfIBSy0PeI3XPbv4I6DY7OT25V0dZHnW28KM4FNe_Lio1O99ogZeziuhKOtIDSuxA1gf8QEaqse.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/cfn/113073BTtlvIx39jOhxI2ijstXEy4S_M2JKPV2xuup1dCEIoYNzSP3BhwShosh4-3A7h4TIkMQ1F9OdLaV5IL20v6HgfVJTw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/gs2-sec/appkgo/prod/CUSA17893_00/1/i_2f402ff623e36fd0640b0c961f1413a73b6dc66acdb96a4a7b663b2655291f2c/i/icon0.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T08:05:19.390000Z\", \"lastPlayedDateTime\": \"2023-05-28T08:46:50.010000Z\", \"playDuration\": \"PT41M18S\"}, {\"titleId\": \"PPSA04256_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:55:07.540000Z\", \"lastPlayedDateTime\": \"2023-05-28T08:02:45.190000Z\", \"playDuration\": \"PT7M22S\"}, {\"titleId\": \"PPSA04247_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:43:38.620000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:55:05.410000Z\", \"playDuration\": \"PT11M11S\"}, {\"titleId\": \"CUSA28115_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:36:00.220000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:43:36.280000Z\", \"playDuration\": \"PT7M29S\"}], \"nextOffset\": 800, \"previousOffset\": 599, \"totalItemCount\": 13571}" } } }, @@ -445,56 +441,56 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:14 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive", "Transfer-Encoding" ], "X-Psn-Request-Id": [ - "60e05eca-8408-1031-91f6-790d773cb745" + "2cdef7b7-94aa-1031-ad0d-53c3a4bb2127" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "60e05eca-8408-1031-91f5-790d773cb745" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "2cdef7b7-94aa-1031-ad0c-53c3a4bb2127" ], "Transfer-Encoding": [ "chunked" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Expires": [ + "Sun, 12 Jan 2025 03:19:14 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Max-Age": [ + "3600" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:04 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:04 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"PPSA08127_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T04:11:15.910000Z\", \"lastPlayedDateTime\": \"2023-05-28T05:20:13.730000Z\", \"playDuration\": \"PT1H8M6S\"}, {\"titleId\": \"PPSA06638_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T02:08:33.350000Z\", \"lastPlayedDateTime\": \"2023-05-28T04:10:40.900000Z\", \"playDuration\": \"PT1H11M27S\"}, {\"titleId\": \"PPSA06639_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T23:49:38.510000Z\", \"lastPlayedDateTime\": \"2023-05-28T02:08:30.880000Z\", \"playDuration\": \"PT1H23M14S\"}, {\"titleId\": \"CUSA32377_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T15:28:06.790000Z\", \"lastPlayedDateTime\": \"2023-05-27T17:10:51.030000Z\", \"playDuration\": \"PT1H42M20S\"}, {\"titleId\": \"CUSA32376_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T11:12:26.510000Z\", \"lastPlayedDateTime\": \"2023-05-27T15:25:55.290000Z\", \"playDuration\": \"PT4H11M18S\"}, {\"titleId\": \"PPSA07008_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T08:18:42.470000Z\", \"lastPlayedDateTime\": \"2023-05-27T08:54:25.450000Z\", \"playDuration\": \"PT35M17S\"}, {\"titleId\": \"PPSA07009_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T07:37:07.790000Z\", \"lastPlayedDateTime\": \"2023-05-27T08:18:40.520000Z\", \"playDuration\": \"PT40M39S\"}, {\"titleId\": \"CUSA32863_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T06:56:02.180000Z\", \"lastPlayedDateTime\": \"2023-05-27T07:36:21.680000Z\", \"playDuration\": \"PT40M13S\"}, {\"titleId\": \"CUSA32864_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T05:49:31.380000Z\", \"lastPlayedDateTime\": \"2023-05-27T06:56:00.120000Z\", \"playDuration\": \"PT51M56S\"}, {\"titleId\": \"PPSA12601_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T15:23:36.080000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:29:45.030000Z\", \"playDuration\": \"PT6M5S\"}, {\"titleId\": \"PPSA12602_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T15:17:25.450000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:23:34.030000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"CUSA39558_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T15:06:10.670000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:17:23.400000Z\", \"playDuration\": \"PT11M\"}, {\"titleId\": \"CUSA39559_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T14:58:50.790000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:06:08.640000Z\", \"playDuration\": \"PT7M10S\"}, {\"titleId\": \"PPSA16651_00\", \"name\": \"MEMORY LANE\", \"localizedName\": \"MEMORY LANE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000870, \"titleIds\": [\"PPSA19413_00\", \"CUSA20326_00\", \"CUSA20343_00\", \"PPSA16650_00\", \"CUSA27865_00\", \"PPSA16651_00\", \"CUSA27864_00\", \"PPSA19412_00\"], \"name\": \"MEMORY LANE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/d9cc5877b4f578fdafda429d80107aa7da4052b9ce346780.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/7d5a49dbb5744d8c0b49961d460152b5d16ed3fcb5ecc90a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2306/7TdBaPoROJcF4Hz0cOrwQq2D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/dd885c43a891f74d3be585593237592f36dc54fd6b8bfb72.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/2205/h5978j1AwfpVh8IcIV5mLIVa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/29dffc2d21180d1e4854a239246e8dd67aaff6a801909e85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/D79WFCgBFkev67pLYSnMn6bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/5E7tyy7tpdjKl6Isq0v8GNiu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/9Ay4vANoKPS4cj2SPf6Loesl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/br9xUPeS1Zx7I204BE2ESypL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/uXwtutlswuIlp1odYppxVojc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/UXdiqTKPDAOGNwK7bDSoVp2x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Memory Lane\", \"uk-UA\": \"Memory Lane\", \"de-DE\": \"Memory Lane\", \"en-US\": \"MEMORY LANE\", \"ko-KR\": \"MEMORY LANE\", \"pt-BR\": \"MEMORY LANE\", \"es-ES\": \"MEMORY LANE\", \"ar-AE\": \"Memory Lane\", \"no-NO\": \"Memory Lane\", \"fr-CA\": \"MEMORY LANE\", \"it-IT\": \"Memory Lane\", \"pl-PL\": \"Memory Lane\", \"ru-RU\": \"Memory Lane\", \"zh-Hans\": \"MEMORY LANE\", \"nl-NL\": \"Memory Lane\", \"pt-PT\": \"Memory Lane\", \"zh-Hant\": \"MEMORY LANE\", \"sv-SE\": \"Memory Lane\", \"da-DK\": \"Memory Lane\", \"tr-TR\": \"Memory Lane\", \"fr-FR\": \"Memory Lane\", \"en-GB\": \"Memory Lane\", \"es-419\": \"Memory Lane\", \"ja-JP\": \"MEMORY LANE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/d9cc5877b4f578fdafda429d80107aa7da4052b9ce346780.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/7d5a49dbb5744d8c0b49961d460152b5d16ed3fcb5ecc90a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2306/7TdBaPoROJcF4Hz0cOrwQq2D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/dd885c43a891f74d3be585593237592f36dc54fd6b8bfb72.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/2205/h5978j1AwfpVh8IcIV5mLIVa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/29dffc2d21180d1e4854a239246e8dd67aaff6a801909e85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/D79WFCgBFkev67pLYSnMn6bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/5E7tyy7tpdjKl6Isq0v8GNiu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/9Ay4vANoKPS4cj2SPf6Loesl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/br9xUPeS1Zx7I204BE2ESypL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/uXwtutlswuIlp1odYppxVojc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/UXdiqTKPDAOGNwK7bDSoVp2x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T14:49:53.950000Z\", \"lastPlayedDateTime\": \"2023-05-26T14:57:27.710000Z\", \"playDuration\": \"PT7M10S\"}, {\"titleId\": \"CUSA43154_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:03:21.170000Z\", \"lastPlayedDateTime\": \"2023-05-26T14:49:50.900000Z\", \"playDuration\": \"PT14M21S\"}, {\"titleId\": \"PPSA03738_00\", \"name\": \"The Light in the Darkness\", \"localizedName\": \"The Light in the Darkness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002497, \"titleIds\": [\"PPSA03738_00\", \"CUSA45366_00\", \"CUSA45034_00\", \"PPSA03085_00\", \"CUSA29814_00\"], \"name\": \"The Light in the Darkness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Light in the Darkness\", \"uk-UA\": \"The Light in the Darkness\", \"de-DE\": \"The Light in the Darkness\", \"en-US\": \"The Light in the Darkness\", \"ko-KR\": \"The Light in the Darkness\", \"pt-BR\": \"The Light in the Darkness\", \"es-ES\": \"The Light in the Darkness\", \"ar-AE\": \"The Light in the Darkness\", \"no-NO\": \"The Light in the Darkness\", \"fr-CA\": \"The Light in the Darkness\", \"it-IT\": \"The Light in the Darkness\", \"pl-PL\": \"The Light in the Darkness\", \"ru-RU\": \"The Light in the Darkness\", \"zh-Hans\": \"The Light in the Darkness\", \"nl-NL\": \"The Light in the Darkness\", \"pt-PT\": \"The Light in the Darkness\", \"zh-Hant\": \"The Light in the Darkness\", \"sv-SE\": \"The Light in the Darkness\", \"da-DK\": \"The Light in the Darkness\", \"tr-TR\": \"The Light in the Darkness\", \"fr-FR\": \"The Light in the Darkness\", \"en-GB\": \"The Light in the Darkness\", \"es-419\": \"The Light in the Darkness\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:50:56.360000Z\", \"lastPlayedDateTime\": \"2023-05-26T14:48:36.970000Z\", \"playDuration\": \"PT1H6M32S\"}, {\"titleId\": \"PPSA16759_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:49:36.000000Z\", \"lastPlayedDateTime\": \"2023-05-26T13:31:32.830000Z\", \"playDuration\": \"PT41M22S\"}, {\"titleId\": \"PPSA16761_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:50:17.460000Z\", \"lastPlayedDateTime\": \"2023-05-26T12:45:32.550000Z\", \"playDuration\": \"PT41M8S\"}, {\"titleId\": \"PPSA16762_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:49:09.400000Z\", \"lastPlayedDateTime\": \"2023-05-26T12:00:51.400000Z\", \"playDuration\": \"PT41M57S\"}, {\"titleId\": \"PPSA16760_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:48:42.720000Z\", \"lastPlayedDateTime\": \"2023-05-26T11:06:21.480000Z\", \"playDuration\": \"PT43M\"}, {\"titleId\": \"PPSA16202_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:39:07.600000Z\", \"lastPlayedDateTime\": \"2023-05-26T08:46:30.450000Z\", \"playDuration\": \"PT7M20S\"}, {\"titleId\": \"PPSA16203_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:31:48.420000Z\", \"lastPlayedDateTime\": \"2023-05-26T08:39:05.670000Z\", \"playDuration\": \"PT7M\"}, {\"titleId\": \"CUSA43153_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:21:27.880000Z\", \"lastPlayedDateTime\": \"2023-05-26T08:31:46.390000Z\", \"playDuration\": \"PT8M6S\"}, {\"titleId\": \"PPSA09001_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T05:57:41.240000Z\", \"lastPlayedDateTime\": \"2023-05-26T07:13:18.500000Z\", \"playDuration\": \"PT1H13M52S\"}, {\"titleId\": \"PPSA09000_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T04:18:48.840000Z\", \"lastPlayedDateTime\": \"2023-05-26T05:54:49.670000Z\", \"playDuration\": \"PT1H35M57S\"}, {\"titleId\": \"CUSA35254_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T08:04:27.990000Z\", \"lastPlayedDateTime\": \"2023-05-26T04:18:01.980000Z\", \"playDuration\": \"PT1H29M54S\"}, {\"titleId\": \"CUSA35253_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T04:02:05.950000Z\", \"lastPlayedDateTime\": \"2023-05-25T16:57:03.490000Z\", \"playDuration\": \"PT3H47M19S\"}, {\"titleId\": \"PPSA10992_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T15:24:07.350000Z\", \"lastPlayedDateTime\": \"2023-05-25T16:53:27.120000Z\", \"playDuration\": \"PT1H28M57S\"}, {\"titleId\": \"PPSA10993_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T11:46:30.000000Z\", \"lastPlayedDateTime\": \"2023-05-25T13:16:55.500000Z\", \"playDuration\": \"PT1H30M2S\"}, {\"titleId\": \"CUSA37681_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T12:53:35.560000Z\", \"lastPlayedDateTime\": \"2023-05-25T11:46:17.150000Z\", \"playDuration\": \"PT2H2M14S\"}, {\"titleId\": \"CUSA03099_00\", \"name\": \"Prime Video\", \"localizedName\": \"Prime Video\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"category\": \"ps4_nongame_mini_app\", \"service\": \"none_purchased\", \"playCount\": 6, \"concept\": {\"id\": 200242, \"titleIds\": [\"CUSA00126_00\", \"PPSA02082_00\", \"CUSA00130_00\", \"CUSA01808_00\", \"PPSA02083_00\", \"CUSA03413_00\", \"PPSA02081_00\", \"CUSA02877_00\", \"CUSA03099_00\", \"CUSA17942_00\", \"CUSA17943_00\", \"CUSA01888_00\"], \"name\": \"Prime Video\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/PbqMnw5RzJ1i0zgi41RbpMmF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/rMBPkewTtONnpn2FkfjhZjJa.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/gj2EdFs0IUhvSbI0eGSjECZU.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/UxaWCYnHsJkBZaCRyuAE57UI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Prime Video\", \"uk-UA\": \"Prime Video\", \"de-DE\": \"Prime Video\", \"en-US\": \"Prime Video\", \"ko-KR\": \"Prime Video\", \"pt-BR\": \"Prime Video\", \"es-ES\": \"Prime Video\", \"ar-AE\": \"Prime Video\", \"no-NO\": \"Prime Video\", \"fr-CA\": \"Prime Video\", \"it-IT\": \"Prime Video\", \"pl-PL\": \"Prime Video\", \"ru-RU\": \"Prime Video\", \"zh-Hans\": \"Prime Video\", \"nl-NL\": \"Prime Video\", \"pt-PT\": \"Prime Video\", \"zh-Hant\": \"Prime Video\", \"sv-SE\": \"Prime Video\", \"da-DK\": \"Prime Video\", \"tr-TR\": \"Prime Video\", \"fr-FR\": \"Prime Video\", \"en-GB\": \"Prime Video\", \"es-419\": \"Prime Video\", \"ja-JP\": \"Prime Video\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/PbqMnw5RzJ1i0zgi41RbpMmF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/rMBPkewTtONnpn2FkfjhZjJa.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/gj2EdFs0IUhvSbI0eGSjECZU.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/UxaWCYnHsJkBZaCRyuAE57UI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-29T14:29:22.540000Z\", \"lastPlayedDateTime\": \"2023-05-25T04:47:43.360000Z\", \"playDuration\": \"PT2H39M16S\"}, {\"titleId\": \"CUSA37682_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T11:02:04.460000Z\", \"lastPlayedDateTime\": \"2023-05-24T12:53:32.450000Z\", \"playDuration\": \"PT1H41M11S\"}, {\"titleId\": \"PPSA10995_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:54:37.580000Z\", \"lastPlayedDateTime\": \"2023-05-24T11:01:13.280000Z\", \"playDuration\": \"PT6M30S\"}, {\"titleId\": \"PPSA10994_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:50:46.220000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:54:35.350000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"CUSA37684_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:43:18.210000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:47:16.300000Z\", \"playDuration\": \"PT3M44S\"}, {\"titleId\": \"CUSA37683_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:36:03.820000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:42:59.450000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"CUSA41273_00\", \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"localizedName\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007454, \"titleIds\": [\"CUSA41272_00\", \"CUSA41275_00\", \"CUSA41273_00\", \"CUSA41274_00\", \"CUSA41050_00\", \"CUSA41051_00\", \"CUSA41001_00\", \"CUSA41049_00\"], \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"uk-UA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"de-DE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-US\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ko-KR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-BR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-ES\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ar-AE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"no-NO\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-CA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"it-IT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pl-PL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ru-RU\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hans\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"nl-NL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-PT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hant\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"sv-SE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"da-DK\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"tr-TR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-FR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-GB\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-419\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ja-JP\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T07:26:58.060000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:35:45.440000Z\", \"playDuration\": \"PT3H8M13S\"}, {\"titleId\": \"CUSA42940_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T06:19:24.640000Z\", \"lastPlayedDateTime\": \"2023-05-24T07:26:30.990000Z\", \"playDuration\": \"PT1H7M2S\"}, {\"titleId\": \"CUSA42939_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T05:02:05.730000Z\", \"lastPlayedDateTime\": \"2023-05-24T06:18:58.030000Z\", \"playDuration\": \"PT1H16M45S\"}, {\"titleId\": \"CUSA42937_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T04:19:17.000000Z\", \"lastPlayedDateTime\": \"2023-05-24T05:02:01.670000Z\", \"playDuration\": \"PT42M15S\"}, {\"titleId\": \"CUSA42938_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T01:57:26.110000Z\", \"lastPlayedDateTime\": \"2023-05-24T03:14:46.800000Z\", \"playDuration\": \"PT49M28S\"}, {\"titleId\": \"CUSA43375_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T01:51:53.600000Z\", \"lastPlayedDateTime\": \"2023-05-24T01:56:54.420000Z\", \"playDuration\": \"PT4M36S\"}, {\"titleId\": \"PPSA16549_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:28:32.600000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:31:46.220000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"PPSA16552_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:26:02.570000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:28:29.280000Z\", \"playDuration\": \"PT2M22S\"}, {\"titleId\": \"PPSA16551_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:23:42.290000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:25:59.360000Z\", \"playDuration\": \"PT2M11S\"}, {\"titleId\": \"PPSA16550_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:17:41.450000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:23:39.000000Z\", \"playDuration\": \"PT5M45S\"}, {\"titleId\": \"CUSA24937_00\", \"name\": \"WE WERE HERE TOO\", \"localizedName\": \"WE WERE HERE TOO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10001636, \"titleIds\": [\"CUSA25835_00\", \"CUSA24938_00\", \"CUSA24937_00\", \"CUSA25836_00\"], \"name\": \"WE WERE HERE TOO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/yW2EMrYvDrGiWqzPGWT59g2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/6qTr5e4Nk1OBmlbZiAhDsbpq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/U7DYy00WvBGu5LlCv4fQYIFr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ZzAKVm0IQWlYOIy363lnDmOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/Ept7XcGk12tByxTijjL7kv1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ua2XjIYxXBrv56HeUeMH3Gdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/1JdwfhyORiNC6QS6WmUI5ohh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/b1rBdQMAFbzAEzkwLYZRCVcD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/36EbevL1XHtsfpmSu1pfUj5o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/jEJPUhyfxmSKHnbIpmbFDX4N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/aO1acyYcMKkC4m8Rqe5Ojp3j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOO\", \"uk-UA\": \"WE WERE HERE TOO\", \"de-DE\": \"WE WERE HERE TOO\", \"en-US\": \"WE WERE HERE TOO\", \"ko-KR\": \"WE WERE HERE TOO\", \"pt-BR\": \"WE WERE HERE TOO\", \"es-ES\": \"WE WERE HERE TOO\", \"ar-AE\": \"WE WERE HERE TOO\", \"no-NO\": \"WE WERE HERE TOO\", \"fr-CA\": \"WE WERE HERE TOO\", \"it-IT\": \"WE WERE HERE TOO\", \"pl-PL\": \"WE WERE HERE TOO\", \"ru-RU\": \"WE WERE HERE TOO\", \"zh-Hans\": \"WE WERE HERE TOO\", \"nl-NL\": \"WE WERE HERE TOO\", \"pt-PT\": \"WE WERE HERE TOO\", \"zh-Hant\": \"WE WERE HERE TOO\", \"sv-SE\": \"WE WERE HERE TOO\", \"da-DK\": \"WE WERE HERE TOO\", \"tr-TR\": \"WE WERE HERE TOO\", \"fr-FR\": \"WE WERE HERE TOO\", \"en-GB\": \"WE WERE HERE TOO\", \"es-419\": \"WE WERE HERE TOO\", \"ja-JP\": \"WE WERE HERE TOO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/yW2EMrYvDrGiWqzPGWT59g2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/6qTr5e4Nk1OBmlbZiAhDsbpq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/U7DYy00WvBGu5LlCv4fQYIFr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ZzAKVm0IQWlYOIy363lnDmOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/Ept7XcGk12tByxTijjL7kv1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ua2XjIYxXBrv56HeUeMH3Gdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/1JdwfhyORiNC6QS6WmUI5ohh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/b1rBdQMAFbzAEzkwLYZRCVcD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/36EbevL1XHtsfpmSu1pfUj5o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/jEJPUhyfxmSKHnbIpmbFDX4N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/aO1acyYcMKkC4m8Rqe5Ojp3j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T13:02:22.520000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:12:24.250000Z\", \"playDuration\": \"PT3H17M18S\"}, {\"titleId\": \"PPSA07917_00\", \"name\": \"Ganbare! Super Strikers\", \"localizedName\": \"Ganbare! Super Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 235045, \"titleIds\": [\"CUSA16954_00\", \"CUSA17643_00\", \"CUSA17621_00\", \"PCSE01440_00\", \"PPSA07916_00\", \"PPSA07917_00\"], \"name\": \"Ganbare! Super Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ganbare! Super Strikers\", \"uk-UA\": \"Ganbare! Super Strikers\", \"de-DE\": \"Ganbare! Super Strikers\", \"en-US\": \"Ganbare! Super Strikers\", \"ko-KR\": \"Ganbare! Super Strikers\", \"pt-BR\": \"Ganbare! Super Strikers\", \"es-ES\": \"Ganbare! Super Strikers\", \"ar-AE\": \"Ganbare! Super Strikers\", \"no-NO\": \"Ganbare! Super Strikers\", \"fr-CA\": \"Ganbare! Super Strikers\", \"it-IT\": \"Ganbare! Super Strikers\", \"pl-PL\": \"Ganbare! Super Strikers\", \"ru-RU\": \"Ganbare! Super Strikers\", \"zh-Hans\": \"Ganbare! Super Strikers\", \"nl-NL\": \"Ganbare! Super Strikers\", \"pt-PT\": \"Ganbare! Super Strikers\", \"zh-Hant\": \"Ganbare! Super Strikers\", \"sv-SE\": \"Ganbare! Super Strikers\", \"da-DK\": \"Ganbare! Super Strikers\", \"tr-TR\": \"Ganbare! Super Strikers\", \"fr-FR\": \"Ganbare! Super Strikers\", \"en-GB\": \"Ganbare! Super Strikers\", \"es-419\": \"Ganbare! Super Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T12:34:55.340000Z\", \"lastPlayedDateTime\": \"2023-05-23T11:41:32.720000Z\", \"playDuration\": \"PT4H26M3S\"}, {\"titleId\": \"CUSA43374_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T11:01:15.710000Z\", \"lastPlayedDateTime\": \"2023-05-23T11:19:54.080000Z\", \"playDuration\": \"PT18M10S\"}, {\"titleId\": \"CUSA43364_00\", \"name\": \"Tilting Tiles: Micro Challenge\", \"localizedName\": \"Tilting Tiles: Micro Challenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008367, \"titleIds\": [\"CUSA43364_00\", \"CUSA43363_00\"], \"name\": \"Tilting Tiles: Micro Challenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"CASUAL\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tilting Tiles: Micro Challenge\", \"uk-UA\": \"Tilting Tiles: Micro Challenge\", \"de-DE\": \"Tilting Tiles: Micro Challenge\", \"en-US\": \"Tilting Tiles: Micro Challenge\", \"pt-BR\": \"Tilting Tiles: Micro Challenge\", \"es-ES\": \"Tilting Tiles: Micro Challenge\", \"ar-AE\": \"Tilting Tiles: Micro Challenge\", \"no-NO\": \"Tilting Tiles: Micro Challenge\", \"fr-CA\": \"Tilting Tiles: Micro Challenge\", \"it-IT\": \"Tilting Tiles: Micro Challenge\", \"pl-PL\": \"Tilting Tiles: Micro Challenge\", \"ru-RU\": \"Tilting Tiles: Micro Challenge\", \"nl-NL\": \"Tilting Tiles: Micro Challenge\", \"pt-PT\": \"Tilting Tiles: Micro Challenge\", \"sv-SE\": \"Tilting Tiles: Micro Challenge\", \"da-DK\": \"Tilting Tiles: Micro Challenge\", \"tr-TR\": \"Tilting Tiles: Micro Challenge\", \"fr-FR\": \"Tilting Tiles: Micro Challenge\", \"en-GB\": \"Tilting Tiles: Micro Challenge\", \"es-419\": \"Tilting Tiles: Micro Challenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T08:29:23.650000Z\", \"lastPlayedDateTime\": \"2023-05-23T08:49:06.830000Z\", \"playDuration\": \"PT19M22S\"}, {\"titleId\": \"CUSA43363_00\", \"name\": \"Tilting Tiles: Micro Challenge\", \"localizedName\": \"Tilting Tiles: Micro Challenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008367, \"titleIds\": [\"CUSA43364_00\", \"CUSA43363_00\"], \"name\": \"Tilting Tiles: Micro Challenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"CASUAL\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tilting Tiles: Micro Challenge\", \"uk-UA\": \"Tilting Tiles: Micro Challenge\", \"de-DE\": \"Tilting Tiles: Micro Challenge\", \"en-US\": \"Tilting Tiles: Micro Challenge\", \"pt-BR\": \"Tilting Tiles: Micro Challenge\", \"es-ES\": \"Tilting Tiles: Micro Challenge\", \"ar-AE\": \"Tilting Tiles: Micro Challenge\", \"no-NO\": \"Tilting Tiles: Micro Challenge\", \"fr-CA\": \"Tilting Tiles: Micro Challenge\", \"it-IT\": \"Tilting Tiles: Micro Challenge\", \"pl-PL\": \"Tilting Tiles: Micro Challenge\", \"ru-RU\": \"Tilting Tiles: Micro Challenge\", \"nl-NL\": \"Tilting Tiles: Micro Challenge\", \"pt-PT\": \"Tilting Tiles: Micro Challenge\", \"sv-SE\": \"Tilting Tiles: Micro Challenge\", \"da-DK\": \"Tilting Tiles: Micro Challenge\", \"tr-TR\": \"Tilting Tiles: Micro Challenge\", \"fr-FR\": \"Tilting Tiles: Micro Challenge\", \"en-GB\": \"Tilting Tiles: Micro Challenge\", \"es-419\": \"Tilting Tiles: Micro Challenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T07:53:00.960000Z\", \"lastPlayedDateTime\": \"2023-05-23T08:20:35.130000Z\", \"playDuration\": \"PT27M13S\"}, {\"titleId\": \"PPSA07916_00\", \"name\": \"Ganbare! Super Strikers\", \"localizedName\": \"Ganbare! Super Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 235045, \"titleIds\": [\"CUSA16954_00\", \"CUSA17643_00\", \"CUSA17621_00\", \"PCSE01440_00\", \"PPSA07916_00\", \"PPSA07917_00\"], \"name\": \"Ganbare! Super Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ganbare! Super Strikers\", \"uk-UA\": \"Ganbare! Super Strikers\", \"de-DE\": \"Ganbare! Super Strikers\", \"en-US\": \"Ganbare! Super Strikers\", \"ko-KR\": \"Ganbare! Super Strikers\", \"pt-BR\": \"Ganbare! Super Strikers\", \"es-ES\": \"Ganbare! Super Strikers\", \"ar-AE\": \"Ganbare! Super Strikers\", \"no-NO\": \"Ganbare! Super Strikers\", \"fr-CA\": \"Ganbare! Super Strikers\", \"it-IT\": \"Ganbare! Super Strikers\", \"pl-PL\": \"Ganbare! Super Strikers\", \"ru-RU\": \"Ganbare! Super Strikers\", \"zh-Hans\": \"Ganbare! Super Strikers\", \"nl-NL\": \"Ganbare! Super Strikers\", \"pt-PT\": \"Ganbare! Super Strikers\", \"zh-Hant\": \"Ganbare! Super Strikers\", \"sv-SE\": \"Ganbare! Super Strikers\", \"da-DK\": \"Ganbare! Super Strikers\", \"tr-TR\": \"Ganbare! Super Strikers\", \"fr-FR\": \"Ganbare! Super Strikers\", \"en-GB\": \"Ganbare! Super Strikers\", \"es-419\": \"Ganbare! Super Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T15:27:24.830000Z\", \"lastPlayedDateTime\": \"2023-05-22T08:33:20.090000Z\", \"playDuration\": \"PT5H29M5S\"}, {\"titleId\": \"PPSA03099_00\", \"name\": \"Dead Island 2\", \"localizedName\": \"Dead Island 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 201061, \"titleIds\": [\"CUSA36373_00\", \"CUSA35681_00\", \"CUSA36372_00\", \"PPSA03099_00\", \"CUSA35646_00\", \"CUSA36368_00\", \"CUSA36369_00\", \"PPSA03098_00\", \"PPSA09377_00\", \"CUSA00936_00\", \"CUSA29825_00\", \"CUSA01826_00\", \"CUSA01014_00\", \"CUSA27043_00\", \"CUSA36370_00\", \"CUSA36371_00\"], \"name\": \"Dead Island 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Island 2\", \"uk-UA\": \"Dead Island 2\", \"de-DE\": \"Dead Island 2\", \"en-US\": \"Dead Island 2\", \"ko-KR\": \"Dead Island 2\", \"pt-BR\": \"Dead Island 2\", \"es-ES\": \"Dead Island 2\", \"ar-AE\": \"Dead Island 2\", \"no-NO\": \"Dead Island 2\", \"fr-CA\": \"Dead Island 2\", \"it-IT\": \"Dead Island 2\", \"pl-PL\": \"Dead Island 2\", \"ru-RU\": \"Dead Island 2\", \"zh-Hans\": \"Dead Island 2\", \"nl-NL\": \"Dead Island 2\", \"pt-PT\": \"Dead Island 2\", \"zh-Hant\": \"Dead Island 2\", \"sv-SE\": \"Dead Island 2\", \"da-DK\": \"Dead Island 2\", \"tr-TR\": \"Dead Island 2\", \"fr-FR\": \"Dead Island 2\", \"en-GB\": \"Dead Island 2\", \"es-419\": \"Dead Island 2\", \"ja-JP\": \"Dead Island 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T04:46:30.420000Z\", \"lastPlayedDateTime\": \"2023-05-22T05:26:40.720000Z\", \"playDuration\": \"PT38M11S\"}, {\"titleId\": \"CUSA32780_00\", \"name\": \"Labyrinth of Zangetsu\", \"localizedName\": \"Labyrinth of Zangetsu\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10002574, \"titleIds\": [\"CUSA34612_00\", \"CUSA32781_00\", \"CUSA32780_00\", \"CUSA27232_00\"], \"name\": \"Labyrinth of Zangetsu\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/LjyV66ZTpeiieVOWgetNrjzy.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/TuUbGHiwgSyqA2yodWWHRrpF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/blUeD7CgV5QeoB596bQMFlA2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/L5XAbEIIaOy064kKkBf09TK4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/4GdT5rtSHVnPAfzodx0gnRjV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/sRtZrEcsCib2M4uTsnG5QPpL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/6Z3J53kSGUYZ9L0e68FfwesS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/pl6n9LFQ6wSHG2USECQSCHJN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/px4zCUiaA3DdQpmihm3CaJph.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/T8i7ICv4ls0NUdRlJUccyPDu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Labyrinth of Zangetsu\", \"uk-UA\": \"Labyrinth of Zangetsu\", \"de-DE\": \"Labyrinth of Zangetsu\", \"en-US\": \"Labyrinth of Zangetsu\", \"ko-KR\": \"Labyrinth of Zangetsu\", \"pt-BR\": \"Labyrinth of Zangetsu\", \"es-ES\": \"Labyrinth of Zangetsu\", \"ar-AE\": \"Labyrinth of Zangetsu\", \"no-NO\": \"Labyrinth of Zangetsu\", \"fr-CA\": \"Labyrinth of Zangetsu\", \"it-IT\": \"Labyrinth of Zangetsu\", \"pl-PL\": \"Labyrinth of Zangetsu\", \"ru-RU\": \"Labyrinth of Zangetsu\", \"zh-Hans\": \"Labyrinth of Zangetsu\", \"nl-NL\": \"Labyrinth of Zangetsu\", \"pt-PT\": \"Labyrinth of Zangetsu\", \"zh-Hant\": \"Labyrinth of Zangetsu\", \"sv-SE\": \"Labyrinth of Zangetsu\", \"da-DK\": \"Labyrinth of Zangetsu\", \"tr-TR\": \"Labyrinth of Zangetsu\", \"fr-FR\": \"Labyrinth of Zangetsu\", \"en-GB\": \"Labyrinth of Zangetsu\", \"es-419\": \"Labyrinth of Zangetsu\", \"ja-JP\": \"Labyrinth of Zangetsu\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/LjyV66ZTpeiieVOWgetNrjzy.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/TuUbGHiwgSyqA2yodWWHRrpF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/blUeD7CgV5QeoB596bQMFlA2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/L5XAbEIIaOy064kKkBf09TK4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/4GdT5rtSHVnPAfzodx0gnRjV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/sRtZrEcsCib2M4uTsnG5QPpL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/6Z3J53kSGUYZ9L0e68FfwesS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/pl6n9LFQ6wSHG2USECQSCHJN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/px4zCUiaA3DdQpmihm3CaJph.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/T8i7ICv4ls0NUdRlJUccyPDu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T04:30:56.210000Z\", \"lastPlayedDateTime\": \"2023-05-22T04:45:43.270000Z\", \"playDuration\": \"PT14M41S\"}, {\"titleId\": \"PPSA15876_00\", \"name\": \"Mia and the Dragon Princess\", \"localizedName\": \"Mia and the Dragon Princess\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006967, \"titleIds\": [\"CUSA42819_00\", \"PPSA15876_00\", \"CUSA39636_00\", \"CUSA39635_00\", \"PPSA15877_00\", \"CUSA42820_00\"], \"name\": \"Mia and the Dragon Princess\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mia and the Dragon Princess\", \"uk-UA\": \"Mia and the Dragon Princess\", \"de-DE\": \"Mia and the Dragon Princess\", \"en-US\": \"Mia and the Dragon Princess\", \"ko-KR\": \"Mia and the Dragon Princess\", \"pt-BR\": \"Mia and the Dragon Princess\", \"es-ES\": \"Mia and the Dragon Princess\", \"ar-AE\": \"Mia and the Dragon Princess\", \"no-NO\": \"Mia and the Dragon Princess\", \"fr-CA\": \"Mia and the Dragon Princess\", \"it-IT\": \"Mia and the Dragon Princess\", \"pl-PL\": \"Mia and the Dragon Princess\", \"ru-RU\": \"Mia and the Dragon Princess\", \"zh-Hans\": \"Mia and the Dragon Princess\", \"nl-NL\": \"Mia and the Dragon Princess\", \"pt-PT\": \"Mia and the Dragon Princess\", \"zh-Hant\": \"Mia and the Dragon Princess\", \"sv-SE\": \"Mia and the Dragon Princess\", \"da-DK\": \"Mia and the Dragon Princess\", \"tr-TR\": \"Mia and the Dragon Princess\", \"fr-FR\": \"Mia and the Dragon Princess\", \"en-GB\": \"Mia and the Dragon Princess\", \"es-419\": \"Mia and the Dragon Princess\", \"ja-JP\": \"Mia and the Dragon Princess\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T07:57:56.860000Z\", \"lastPlayedDateTime\": \"2023-05-21T15:25:11.760000Z\", \"playDuration\": \"PT4H40S\"}, {\"titleId\": \"PPSA15467_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T12:21:53.210000Z\", \"lastPlayedDateTime\": \"2023-05-21T12:41:47.890000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"PPSA15468_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T12:04:40.450000Z\", \"lastPlayedDateTime\": \"2023-05-21T12:21:51.370000Z\", \"playDuration\": \"PT16M59S\"}, {\"titleId\": \"CUSA42465_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T11:41:59.150000Z\", \"lastPlayedDateTime\": \"2023-05-21T12:03:01.570000Z\", \"playDuration\": \"PT20M54S\"}, {\"titleId\": \"CUSA42464_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T03:13:58.400000Z\", \"lastPlayedDateTime\": \"2023-05-21T11:41:57.690000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"CUSA39635_00\", \"name\": \"Mia and the Dragon Princess\", \"localizedName\": \"Mia and the Dragon Princess\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006967, \"titleIds\": [\"CUSA42819_00\", \"PPSA15876_00\", \"CUSA39636_00\", \"CUSA39635_00\", \"PPSA15877_00\", \"CUSA42820_00\"], \"name\": \"Mia and the Dragon Princess\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mia and the Dragon Princess\", \"uk-UA\": \"Mia and the Dragon Princess\", \"de-DE\": \"Mia and the Dragon Princess\", \"en-US\": \"Mia and the Dragon Princess\", \"ko-KR\": \"Mia and the Dragon Princess\", \"pt-BR\": \"Mia and the Dragon Princess\", \"es-ES\": \"Mia and the Dragon Princess\", \"ar-AE\": \"Mia and the Dragon Princess\", \"no-NO\": \"Mia and the Dragon Princess\", \"fr-CA\": \"Mia and the Dragon Princess\", \"it-IT\": \"Mia and the Dragon Princess\", \"pl-PL\": \"Mia and the Dragon Princess\", \"ru-RU\": \"Mia and the Dragon Princess\", \"zh-Hans\": \"Mia and the Dragon Princess\", \"nl-NL\": \"Mia and the Dragon Princess\", \"pt-PT\": \"Mia and the Dragon Princess\", \"zh-Hant\": \"Mia and the Dragon Princess\", \"sv-SE\": \"Mia and the Dragon Princess\", \"da-DK\": \"Mia and the Dragon Princess\", \"tr-TR\": \"Mia and the Dragon Princess\", \"fr-FR\": \"Mia and the Dragon Princess\", \"en-GB\": \"Mia and the Dragon Princess\", \"es-419\": \"Mia and the Dragon Princess\", \"ja-JP\": \"Mia and the Dragon Princess\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T04:00:50.960000Z\", \"lastPlayedDateTime\": \"2023-05-21T07:57:30.590000Z\", \"playDuration\": \"PT3H56M34S\"}, {\"titleId\": \"PPSA09200_00\", \"name\": \"Mind Maze\", \"localizedName\": \"Mind Maze\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001824, \"titleIds\": [\"PPSA09200_00\", \"CUSA25389_00\", \"CUSA25388_00\", \"PPSA09199_00\", \"PPSA03963_00\", \"PPSA03964_00\"], \"name\": \"Mind Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mind Maze\", \"uk-UA\": \"Mind Maze\", \"de-DE\": \"Mind Maze\", \"en-US\": \"Mind Maze\", \"ko-KR\": \"Mind Maze\", \"pt-BR\": \"Mind Maze\", \"es-ES\": \"Mind Maze\", \"ar-AE\": \"Mind Maze\", \"no-NO\": \"Mind Maze\", \"fr-CA\": \"Mind Maze\", \"it-IT\": \"Mind Maze\", \"pl-PL\": \"Mind Maze\", \"ru-RU\": \"Mind Maze\", \"zh-Hans\": \"Mind Maze\", \"nl-NL\": \"Mind Maze\", \"pt-PT\": \"Mind Maze\", \"zh-Hant\": \"Mind Maze\", \"sv-SE\": \"Mind Maze\", \"da-DK\": \"Mind Maze\", \"tr-TR\": \"Mind Maze\", \"fr-FR\": \"Mind Maze\", \"en-GB\": \"Mind Maze\", \"es-419\": \"Mind Maze\", \"ja-JP\": \"Mind Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T14:29:11.670000Z\", \"lastPlayedDateTime\": \"2023-05-20T17:06:06.920000Z\", \"playDuration\": \"PT2H36M32S\"}, {\"titleId\": \"PPSA09199_00\", \"name\": \"Mind Maze\", \"localizedName\": \"Mind Maze\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001824, \"titleIds\": [\"PPSA09200_00\", \"CUSA25389_00\", \"CUSA25388_00\", \"PPSA09199_00\", \"PPSA03963_00\", \"PPSA03964_00\"], \"name\": \"Mind Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mind Maze\", \"uk-UA\": \"Mind Maze\", \"de-DE\": \"Mind Maze\", \"en-US\": \"Mind Maze\", \"ko-KR\": \"Mind Maze\", \"pt-BR\": \"Mind Maze\", \"es-ES\": \"Mind Maze\", \"ar-AE\": \"Mind Maze\", \"no-NO\": \"Mind Maze\", \"fr-CA\": \"Mind Maze\", \"it-IT\": \"Mind Maze\", \"pl-PL\": \"Mind Maze\", \"ru-RU\": \"Mind Maze\", \"zh-Hans\": \"Mind Maze\", \"nl-NL\": \"Mind Maze\", \"pt-PT\": \"Mind Maze\", \"zh-Hant\": \"Mind Maze\", \"sv-SE\": \"Mind Maze\", \"da-DK\": \"Mind Maze\", \"tr-TR\": \"Mind Maze\", \"fr-FR\": \"Mind Maze\", \"en-GB\": \"Mind Maze\", \"es-419\": \"Mind Maze\", \"ja-JP\": \"Mind Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:45:31.000000Z\", \"lastPlayedDateTime\": \"2023-05-20T14:25:37.450000Z\", \"playDuration\": \"PT2H50M57S\"}, {\"titleId\": \"PPSA03789_00\", \"name\": \"HUMANITY\", \"localizedName\": \"HUMANITY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233011, \"titleIds\": [\"CUSA28074_00\", \"PPSA03771_00\", \"CUSA28072_00\", \"CUSA28076_00\", \"PPSA13276_00\", \"CUSA14178_00\", \"CUSA39491_00\", \"PPSA13278_00\", \"PPSA03788_00\", \"CUSA39489_00\", \"CUSA40188_00\", \"CUSA14162_00\", \"CUSA40186_00\", \"CUSA28073_00\", \"CUSA28071_00\", \"CUSA28075_00\", \"CUSA39490_00\", \"PPSA13275_00\", \"PPSA13277_00\", \"CUSA14150_00\", \"PPSA03789_00\", \"PPSA03790_00\", \"CUSA39488_00\", \"CUSA40187_00\", \"CUSA40189_00\"], \"name\": \"HUMANITY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"HUMANITY\", \"uk-UA\": \"HUMANITY\", \"de-DE\": \"HUMANITY\", \"en-US\": \"HUMANITY\", \"ko-KR\": \"HUMANITY\", \"pt-BR\": \"HUMANITY\", \"es-ES\": \"HUMANITY\", \"ar-AE\": \"HUMANITY\", \"no-NO\": \"HUMANITY\", \"fr-CA\": \"HUMANITY\", \"it-IT\": \"HUMANITY\", \"pl-PL\": \"HUMANITY\", \"ru-RU\": \"HUMANITY\", \"zh-Hans\": \"HUMANITY\", \"nl-NL\": \"HUMANITY\", \"pt-PT\": \"HUMANITY\", \"zh-Hant\": \"HUMANITY\", \"sv-SE\": \"HUMANITY\", \"da-DK\": \"HUMANITY\", \"tr-TR\": \"HUMANITY\", \"fr-FR\": \"HUMANITY\", \"en-GB\": \"HUMANITY\", \"es-419\": \"HUMANITY\", \"ja-JP\": \"HUMANITY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:39:09.670000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:41:16.940000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA14162_00\", \"name\": \"HUMANITY\", \"localizedName\": \"HUMANITY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233011, \"titleIds\": [\"CUSA28074_00\", \"PPSA03771_00\", \"CUSA28072_00\", \"CUSA28076_00\", \"PPSA13276_00\", \"CUSA14178_00\", \"CUSA39491_00\", \"PPSA13278_00\", \"PPSA03788_00\", \"CUSA39489_00\", \"CUSA40188_00\", \"CUSA14162_00\", \"CUSA40186_00\", \"CUSA28073_00\", \"CUSA28071_00\", \"CUSA28075_00\", \"CUSA39490_00\", \"PPSA13275_00\", \"PPSA13277_00\", \"CUSA14150_00\", \"PPSA03789_00\", \"PPSA03790_00\", \"CUSA39488_00\", \"CUSA40187_00\", \"CUSA40189_00\"], \"name\": \"HUMANITY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"HUMANITY\", \"uk-UA\": \"HUMANITY\", \"de-DE\": \"HUMANITY\", \"en-US\": \"HUMANITY\", \"ko-KR\": \"HUMANITY\", \"pt-BR\": \"HUMANITY\", \"es-ES\": \"HUMANITY\", \"ar-AE\": \"HUMANITY\", \"no-NO\": \"HUMANITY\", \"fr-CA\": \"HUMANITY\", \"it-IT\": \"HUMANITY\", \"pl-PL\": \"HUMANITY\", \"ru-RU\": \"HUMANITY\", \"zh-Hans\": \"HUMANITY\", \"nl-NL\": \"HUMANITY\", \"pt-PT\": \"HUMANITY\", \"zh-Hant\": \"HUMANITY\", \"sv-SE\": \"HUMANITY\", \"da-DK\": \"HUMANITY\", \"tr-TR\": \"HUMANITY\", \"fr-FR\": \"HUMANITY\", \"en-GB\": \"HUMANITY\", \"es-419\": \"HUMANITY\", \"ja-JP\": \"HUMANITY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:36:36.990000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:39:06.630000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA25218_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:15:51.030000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:35:54.360000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"PPSA02196_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:26:26.100000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:33:40.380000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"CUSA25220_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:23:45.490000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:26:22.870000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA25219_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"GB\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:18:56.350000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:23:42.380000Z\", \"playDuration\": \"PT4M35S\"}, {\"titleId\": \"PPSA11058_00\", \"name\": \"Pool Blitz\", \"localizedName\": \"Pool Blitz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006452, \"titleIds\": [\"CUSA45923_00\", \"CUSA45924_00\", \"PPSA11059_00\", \"PPSA11058_00\"], \"name\": \"Pool Blitz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/8d6658ac4cdacf9a9fa1177c59b38a363a22fed579f2c87a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/71dd5a6a621831531997479358209dae6a7ab0c2ea4958d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/6f8d4a433eb7999a5778122742fae718faadbd98eabd0f2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/cab22cf26ba5fa0ad34305f4fac950dab74857456f45e8fb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/4032a04668ba045ffa3006bf822df96f9b8834d8eac0f90a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/a7362ffec5bdff4d71af5629f6732635349538690617b0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/c8db615ca20edc60ae8863b82f471a993a08633c49bcc89f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/b74bd64d98c15df4a47f16f54d350065c7f2adbe46c56ef1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/8cf534fb196f82653ff5a8db2f505965a96cda2a9612f349.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/cb191d33da98b4f70a17f9aa40a7829516178c2a91d6c48b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/44b10b17eeaa01cbc2a108aa3bb3d52e3b640b771d9a6968.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/38cd074a4f542af8ec4b406bf8ca7e8603abe8b1871baa8c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pool Blitz\", \"uk-UA\": \"Pool Blitz\", \"de-DE\": \"Pool Blitz\", \"en-US\": \"Pool Blitz\", \"ko-KR\": \"Pool Blitz\", \"pt-BR\": \"Pool Blitz\", \"es-ES\": \"Pool Blitz\", \"ar-AE\": \"Pool Blitz\", \"no-NO\": \"Pool Blitz\", \"fr-CA\": \"Pool Blitz\", \"it-IT\": \"Pool Blitz\", \"pl-PL\": \"Pool Blitz\", \"ru-RU\": \"Pool Blitz\", \"zh-Hans\": \"Pool Blitz\", \"nl-NL\": \"Pool Blitz\", \"pt-PT\": \"Pool Blitz\", \"zh-Hant\": \"Pool Blitz\", \"sv-SE\": \"Pool Blitz\", \"da-DK\": \"Pool Blitz\", \"tr-TR\": \"Pool Blitz\", \"fr-FR\": \"Pool Blitz\", \"en-GB\": \"Pool Blitz\", \"es-419\": \"Pool Blitz\", \"ja-JP\": \"\\u30d3\\u30ea\\u30e4\\u30fc\\u30c9\\u30d6\\u30ea\\u30c3\\u30c4\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/8d6658ac4cdacf9a9fa1177c59b38a363a22fed579f2c87a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/71dd5a6a621831531997479358209dae6a7ab0c2ea4958d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/6f8d4a433eb7999a5778122742fae718faadbd98eabd0f2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/cab22cf26ba5fa0ad34305f4fac950dab74857456f45e8fb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/4032a04668ba045ffa3006bf822df96f9b8834d8eac0f90a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/a7362ffec5bdff4d71af5629f6732635349538690617b0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/c8db615ca20edc60ae8863b82f471a993a08633c49bcc89f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/b74bd64d98c15df4a47f16f54d350065c7f2adbe46c56ef1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/8cf534fb196f82653ff5a8db2f505965a96cda2a9612f349.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/cb191d33da98b4f70a17f9aa40a7829516178c2a91d6c48b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/44b10b17eeaa01cbc2a108aa3bb3d52e3b640b771d9a6968.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/38cd074a4f542af8ec4b406bf8ca7e8603abe8b1871baa8c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:12:22.980000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:15:40.460000Z\", \"playDuration\": \"PT2M37S\"}, {\"titleId\": \"PPSA15364_00\", \"name\": \"Omega Strikers\", \"localizedName\": \"Omega Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005856, \"titleIds\": [\"PPSA12453_00\", \"CUSA40622_00\", \"CUSA42374_00\", \"CUSA42375_00\", \"CUSA42373_00\", \"PPSA15363_00\", \"PPSA15365_00\", \"PPSA15364_00\"], \"name\": \"Omega Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Omega Strikers\", \"uk-UA\": \"Omega Strikers\", \"de-DE\": \"Omega Strikers\", \"en-US\": \"Omega Strikers\", \"ko-KR\": \"\\uc624\\uba54\\uac00 \\uc2a4\\ud2b8\\ub77c\\uc774\\ucee4\\uc2a4\", \"pt-BR\": \"Omega Strikers\", \"es-ES\": \"Omega Strikers\", \"ar-AE\": \"Omega Strikers\", \"no-NO\": \"Omega Strikers\", \"fr-CA\": \"Omega Strikers\", \"it-IT\": \"Omega Strikers\", \"pl-PL\": \"Omega Strikers\", \"ru-RU\": \"Omega Strikers\", \"zh-Hans\": \"Omega Strikers\", \"nl-NL\": \"Omega Strikers\", \"pt-PT\": \"Omega Strikers\", \"zh-Hant\": \"Omega Strikers\", \"sv-SE\": \"Omega Strikers\", \"da-DK\": \"Omega Strikers\", \"tr-TR\": \"Omega Strikers\", \"fr-FR\": \"Omega Strikers\", \"en-GB\": \"Omega Strikers\", \"es-419\": \"Omega Strikers\", \"ja-JP\": \"Omega Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T09:06:02.870000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:06:42.440000Z\", \"playDuration\": \"PT36S\"}, {\"titleId\": \"CUSA42374_00\", \"name\": \"Omega Strikers\", \"localizedName\": \"Omega Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005856, \"titleIds\": [\"PPSA12453_00\", \"CUSA40622_00\", \"CUSA42374_00\", \"CUSA42375_00\", \"CUSA42373_00\", \"PPSA15363_00\", \"PPSA15365_00\", \"PPSA15364_00\"], \"name\": \"Omega Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Omega Strikers\", \"uk-UA\": \"Omega Strikers\", \"de-DE\": \"Omega Strikers\", \"en-US\": \"Omega Strikers\", \"ko-KR\": \"\\uc624\\uba54\\uac00 \\uc2a4\\ud2b8\\ub77c\\uc774\\ucee4\\uc2a4\", \"pt-BR\": \"Omega Strikers\", \"es-ES\": \"Omega Strikers\", \"ar-AE\": \"Omega Strikers\", \"no-NO\": \"Omega Strikers\", \"fr-CA\": \"Omega Strikers\", \"it-IT\": \"Omega Strikers\", \"pl-PL\": \"Omega Strikers\", \"ru-RU\": \"Omega Strikers\", \"zh-Hans\": \"Omega Strikers\", \"nl-NL\": \"Omega Strikers\", \"pt-PT\": \"Omega Strikers\", \"zh-Hant\": \"Omega Strikers\", \"sv-SE\": \"Omega Strikers\", \"da-DK\": \"Omega Strikers\", \"tr-TR\": \"Omega Strikers\", \"fr-FR\": \"Omega Strikers\", \"en-GB\": \"Omega Strikers\", \"es-419\": \"Omega Strikers\", \"ja-JP\": \"Omega Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T09:04:35.070000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:05:54.990000Z\", \"playDuration\": \"PT1M7S\"}, {\"titleId\": \"PPSA06776_00\", \"name\": \"Bus Simulator 21 Next Stop\", \"localizedName\": \"Bus Simulator 21 Next Stop\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233251, \"titleIds\": [\"PPSA06775_00\", \"PPSA06776_00\", \"CUSA15259_00\", \"CUSA28757_00\", \"CUSA28760_00\", \"CUSA28758_00\", \"CUSA14925_00\", \"CUSA28759_00\"], \"name\": \"Bus Simulator 21 Next Stop\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bus Simulator 21 Next Stop\", \"uk-UA\": \"Bus Simulator 21 Next Stop\", \"de-DE\": \"Bus Simulator 21 Next Stop\", \"en-US\": \"Bus Simulator 21 Next Stop\", \"ko-KR\": \"Bus Simulator 21 Next Stop\", \"pt-BR\": \"Bus Simulator 21 Next Stop\", \"es-ES\": \"Bus Simulator 21 Next Stop\", \"ar-AE\": \"Bus Simulator 21 Next Stop\", \"no-NO\": \"Bus Simulator 21 Next Stop\", \"fr-CA\": \"Bus Simulator 21 Next Stop\", \"it-IT\": \"Bus Simulator 21 Next Stop\", \"pl-PL\": \"Bus Simulator 21 Next Stop\", \"ru-RU\": \"Bus Simulator 21 Next Stop\", \"zh-Hans\": \"Bus Simulator 21 Next Stop\", \"nl-NL\": \"Bus Simulator 21 Next Stop\", \"pt-PT\": \"Bus Simulator 21 Next Stop\", \"zh-Hant\": \"Bus Simulator 21 Next Stop\", \"sv-SE\": \"Bus Simulator 21 Next Stop\", \"da-DK\": \"Bus Simulator 21 Next Stop\", \"tr-TR\": \"Bus Simulator 21 Next Stop\", \"fr-FR\": \"Bus Simulator 21 Next Stop\", \"en-GB\": \"Bus Simulator 21 Next Stop\", \"es-419\": \"Bus Simulator 21 Next Stop\", \"ja-JP\": \"Bus Simulator 21 Next Stop\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T09:01:22.890000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:03:49.330000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"CUSA14925_00\", \"name\": \"Bus Simulator 21 Next Stop\", \"localizedName\": \"Bus Simulator 21 Next Stop\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233251, \"titleIds\": [\"PPSA06775_00\", \"PPSA06776_00\", \"CUSA15259_00\", \"CUSA28757_00\", \"CUSA28760_00\", \"CUSA28758_00\", \"CUSA14925_00\", \"CUSA28759_00\"], \"name\": \"Bus Simulator 21 Next Stop\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bus Simulator 21 Next Stop\", \"uk-UA\": \"Bus Simulator 21 Next Stop\", \"de-DE\": \"Bus Simulator 21 Next Stop\", \"en-US\": \"Bus Simulator 21 Next Stop\", \"ko-KR\": \"Bus Simulator 21 Next Stop\", \"pt-BR\": \"Bus Simulator 21 Next Stop\", \"es-ES\": \"Bus Simulator 21 Next Stop\", \"ar-AE\": \"Bus Simulator 21 Next Stop\", \"no-NO\": \"Bus Simulator 21 Next Stop\", \"fr-CA\": \"Bus Simulator 21 Next Stop\", \"it-IT\": \"Bus Simulator 21 Next Stop\", \"pl-PL\": \"Bus Simulator 21 Next Stop\", \"ru-RU\": \"Bus Simulator 21 Next Stop\", \"zh-Hans\": \"Bus Simulator 21 Next Stop\", \"nl-NL\": \"Bus Simulator 21 Next Stop\", \"pt-PT\": \"Bus Simulator 21 Next Stop\", \"zh-Hant\": \"Bus Simulator 21 Next Stop\", \"sv-SE\": \"Bus Simulator 21 Next Stop\", \"da-DK\": \"Bus Simulator 21 Next Stop\", \"tr-TR\": \"Bus Simulator 21 Next Stop\", \"fr-FR\": \"Bus Simulator 21 Next Stop\", \"en-GB\": \"Bus Simulator 21 Next Stop\", \"es-419\": \"Bus Simulator 21 Next Stop\", \"ja-JP\": \"Bus Simulator 21 Next Stop\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:37:59.500000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:01:02.900000Z\", \"playDuration\": \"PT46M21S\"}, {\"titleId\": \"PPSA11192_00\", \"name\": \"Pursuit Force (PSP)\", \"localizedName\": \"Pursuit Force (PSP)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006276, \"titleIds\": [\"CUSA37192_00\", \"CUSA37932_00\", \"CUSA37193_00\", \"CUSA37191_00\", \"PPSA10609_00\", \"PPSA10610_00\", \"PPSA10611_00\", \"PPSA11192_00\"], \"name\": \"Pursuit Force (PSP)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pursuit Force\", \"uk-UA\": \"Pursuit Force\", \"de-DE\": \"Pursuit Force\", \"en-US\": \"Pursuit Force (PSP)\", \"ko-KR\": \"\\uccb4\\uc774\\uc2a4 \\uce85\", \"pt-BR\": \"Pursuit Force\", \"es-ES\": \"Pursuit Force\", \"ar-AE\": \"Pursuit Force\", \"no-NO\": \"Pursuit Force\", \"fr-CA\": \"Pursuit Force\", \"it-IT\": \"Pursuit Force\", \"pl-PL\": \"Pursuit Force\", \"ru-RU\": \"Pursuit Force\", \"zh-Hans\": \"Pursuit Force (PSP)\", \"nl-NL\": \"Pursuit Force\", \"pt-PT\": \"Pursuit Force\", \"zh-Hant\": \"Pursuit Force\", \"sv-SE\": \"Pursuit Force\", \"da-DK\": \"Pursuit Force\", \"tr-TR\": \"Pursuit Force\", \"fr-FR\": \"Pursuit Force\", \"en-GB\": \"Pursuit Force\", \"es-419\": \"Pursuit Force\", \"ja-JP\": \"\\u30d1\\u30fc\\u30b9\\u30fc\\u30c8\\u30d5\\u30a9\\u30fc\\u30b9 \\uff5e\\u5927\\u8ffd\\u8de1\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:30:10.370000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:37:13.370000Z\", \"playDuration\": \"PT6M34S\"}, {\"titleId\": \"CUSA37932_00\", \"name\": \"Pursuit Force (PSP)\", \"localizedName\": \"Pursuit Force (PSP)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006276, \"titleIds\": [\"CUSA37192_00\", \"CUSA37932_00\", \"CUSA37193_00\", \"CUSA37191_00\", \"PPSA10609_00\", \"PPSA10610_00\", \"PPSA10611_00\", \"PPSA11192_00\"], \"name\": \"Pursuit Force (PSP)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pursuit Force\", \"uk-UA\": \"Pursuit Force\", \"de-DE\": \"Pursuit Force\", \"en-US\": \"Pursuit Force (PSP)\", \"ko-KR\": \"\\uccb4\\uc774\\uc2a4 \\uce85\", \"pt-BR\": \"Pursuit Force\", \"es-ES\": \"Pursuit Force\", \"ar-AE\": \"Pursuit Force\", \"no-NO\": \"Pursuit Force\", \"fr-CA\": \"Pursuit Force\", \"it-IT\": \"Pursuit Force\", \"pl-PL\": \"Pursuit Force\", \"ru-RU\": \"Pursuit Force\", \"zh-Hans\": \"Pursuit Force (PSP)\", \"nl-NL\": \"Pursuit Force\", \"pt-PT\": \"Pursuit Force\", \"zh-Hant\": \"Pursuit Force\", \"sv-SE\": \"Pursuit Force\", \"da-DK\": \"Pursuit Force\", \"tr-TR\": \"Pursuit Force\", \"fr-FR\": \"Pursuit Force\", \"en-GB\": \"Pursuit Force\", \"es-419\": \"Pursuit Force\", \"ja-JP\": \"\\u30d1\\u30fc\\u30b9\\u30fc\\u30c8\\u30d5\\u30a9\\u30fc\\u30b9 \\uff5e\\u5927\\u8ffd\\u8de1\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:23:22.930000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:30:04.220000Z\", \"playDuration\": \"PT6M31S\"}, {\"titleId\": \"PPSA11139_00\", \"name\": \"Blade Dancer: Lineage of Light\", \"localizedName\": \"Blade Dancer: Lineage of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006483, \"titleIds\": [\"CUSA37873_00\", \"PPSA11137_00\", \"PPSA11140_00\", \"PPSA11138_00\", \"PPSA11139_00\", \"CUSA37872_00\", \"CUSA37870_00\", \"CUSA37871_00\"], \"name\": \"Blade Dancer: Lineage of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blade Dancer: Lineage of Light\", \"uk-UA\": \"Blade Dancer: Lineage of Light\", \"de-DE\": \"Blade Dancer: Lineage of Light\", \"en-US\": \"Blade Dancer: Lineage of Light\", \"ko-KR\": \"Blade Dancer: Lineage of Light\", \"pt-BR\": \"Blade Dancer: Lineage of Light\", \"es-ES\": \"Blade Dancer: Lineage of Light\", \"ar-AE\": \"Blade Dancer: Lineage of Light\", \"no-NO\": \"Blade Dancer: Lineage of Light\", \"fr-CA\": \"Blade Dancer: Lineage of Light\", \"it-IT\": \"Blade Dancer: Lineage of Light\", \"pl-PL\": \"Blade Dancer: Lineage of Light\", \"ru-RU\": \"Blade Dancer: Lineage of Light\", \"zh-Hans\": \"\\u5251\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7ea6\\u5b9a\", \"nl-NL\": \"Blade Dancer: Lineage of Light\", \"pt-PT\": \"Blade Dancer: Lineage of Light\", \"zh-Hant\": \"\\u528d\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7d04\\u5b9a\", \"sv-SE\": \"Blade Dancer: Lineage of Light\", \"da-DK\": \"Blade Dancer: Lineage of Light\", \"tr-TR\": \"Blade Dancer: Lineage of Light\", \"fr-FR\": \"Blade Dancer: Lineage of Light\", \"en-GB\": \"Blade Dancer: Lineage of Light\", \"es-419\": \"Blade Dancer: Lineage of Light\", \"ja-JP\": \"\\u30d6\\u30ec\\u30a4\\u30c9\\u30c0\\u30f3\\u30b5\\u30fc \\u5343\\u5e74\\u306e\\u7d04\\u675f\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:19:04.280000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:22:21.150000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA37872_00\", \"name\": \"Blade Dancer: Lineage of Light\", \"localizedName\": \"Blade Dancer: Lineage of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006483, \"titleIds\": [\"CUSA37873_00\", \"PPSA11137_00\", \"PPSA11140_00\", \"PPSA11138_00\", \"PPSA11139_00\", \"CUSA37872_00\", \"CUSA37870_00\", \"CUSA37871_00\"], \"name\": \"Blade Dancer: Lineage of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blade Dancer: Lineage of Light\", \"uk-UA\": \"Blade Dancer: Lineage of Light\", \"de-DE\": \"Blade Dancer: Lineage of Light\", \"en-US\": \"Blade Dancer: Lineage of Light\", \"ko-KR\": \"Blade Dancer: Lineage of Light\", \"pt-BR\": \"Blade Dancer: Lineage of Light\", \"es-ES\": \"Blade Dancer: Lineage of Light\", \"ar-AE\": \"Blade Dancer: Lineage of Light\", \"no-NO\": \"Blade Dancer: Lineage of Light\", \"fr-CA\": \"Blade Dancer: Lineage of Light\", \"it-IT\": \"Blade Dancer: Lineage of Light\", \"pl-PL\": \"Blade Dancer: Lineage of Light\", \"ru-RU\": \"Blade Dancer: Lineage of Light\", \"zh-Hans\": \"\\u5251\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7ea6\\u5b9a\", \"nl-NL\": \"Blade Dancer: Lineage of Light\", \"pt-PT\": \"Blade Dancer: Lineage of Light\", \"zh-Hant\": \"\\u528d\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7d04\\u5b9a\", \"sv-SE\": \"Blade Dancer: Lineage of Light\", \"da-DK\": \"Blade Dancer: Lineage of Light\", \"tr-TR\": \"Blade Dancer: Lineage of Light\", \"fr-FR\": \"Blade Dancer: Lineage of Light\", \"en-GB\": \"Blade Dancer: Lineage of Light\", \"es-419\": \"Blade Dancer: Lineage of Light\", \"ja-JP\": \"\\u30d6\\u30ec\\u30a4\\u30c9\\u30c0\\u30f3\\u30b5\\u30fc \\u5343\\u5e74\\u306e\\u7d04\\u675f\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:05:36.420000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:18:58.940000Z\", \"playDuration\": \"PT12M49S\"}, {\"titleId\": \"PPSA10886_00\", \"name\": \"Weird West: Definitive Edition\", \"localizedName\": \"Weird West: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234916, \"titleIds\": [\"CUSA17337_00\", \"PPSA10886_00\", \"PPSA10887_00\", \"CUSA17598_00\"], \"name\": \"Weird West: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Weird West: Definitive Edition\", \"uk-UA\": \"Weird West: Definitive Edition\", \"de-DE\": \"Weird West: Definitive Edition\", \"en-US\": \"Weird West: Definitive Edition\", \"ko-KR\": \"Weird West: Definitive Edition\", \"pt-BR\": \"Weird West: Definitive Edition\", \"es-ES\": \"Weird West: Definitive Edition\", \"ar-AE\": \"Weird West: Definitive Edition\", \"no-NO\": \"Weird West: Definitive Edition\", \"fr-CA\": \"Weird West: Definitive Edition\", \"it-IT\": \"Weird West: Definitive Edition\", \"pl-PL\": \"Weird West: Definitive Edition\", \"ru-RU\": \"Weird West: Definitive Edition\", \"zh-Hans\": \"Weird West: Definitive Edition\", \"nl-NL\": \"Weird West: Definitive Edition\", \"pt-PT\": \"Weird West: Definitive Edition\", \"zh-Hant\": \"Weird West: Definitive Edition\", \"sv-SE\": \"Weird West: Definitive Edition\", \"da-DK\": \"Weird West: Definitive Edition\", \"tr-TR\": \"Weird West: Definitive Edition\", \"fr-FR\": \"Weird West: Definitive Edition\", \"en-GB\": \"Weird West: Definitive Edition\", \"es-419\": \"Weird West: Definitive Edition\", \"ja-JP\": \"Weird West: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:00:35.390000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:03:32.530000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"CUSA17598_00\", \"name\": \"Weird West: Definitive Edition\", \"localizedName\": \"Weird West: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234916, \"titleIds\": [\"CUSA17337_00\", \"PPSA10886_00\", \"PPSA10887_00\", \"CUSA17598_00\"], \"name\": \"Weird West: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Weird West: Definitive Edition\", \"uk-UA\": \"Weird West: Definitive Edition\", \"de-DE\": \"Weird West: Definitive Edition\", \"en-US\": \"Weird West: Definitive Edition\", \"ko-KR\": \"Weird West: Definitive Edition\", \"pt-BR\": \"Weird West: Definitive Edition\", \"es-ES\": \"Weird West: Definitive Edition\", \"ar-AE\": \"Weird West: Definitive Edition\", \"no-NO\": \"Weird West: Definitive Edition\", \"fr-CA\": \"Weird West: Definitive Edition\", \"it-IT\": \"Weird West: Definitive Edition\", \"pl-PL\": \"Weird West: Definitive Edition\", \"ru-RU\": \"Weird West: Definitive Edition\", \"zh-Hans\": \"Weird West: Definitive Edition\", \"nl-NL\": \"Weird West: Definitive Edition\", \"pt-PT\": \"Weird West: Definitive Edition\", \"zh-Hant\": \"Weird West: Definitive Edition\", \"sv-SE\": \"Weird West: Definitive Edition\", \"da-DK\": \"Weird West: Definitive Edition\", \"tr-TR\": \"Weird West: Definitive Edition\", \"fr-FR\": \"Weird West: Definitive Edition\", \"en-GB\": \"Weird West: Definitive Edition\", \"es-419\": \"Weird West: Definitive Edition\", \"ja-JP\": \"Weird West: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T03:56:13.810000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:00:31.020000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"PPSA11038_00\", \"name\": \"Warlander\", \"localizedName\": \"Warlander\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003872, \"titleIds\": [\"PPSA11038_00\", \"PPSA11051_00\", \"PPSA11047_00\"], \"name\": \"Warlander\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/048cc2424bf4ebfb307d94fe9d2aa60ba3713675869285f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/162e1e79477591405440ea476a8ad61da85ac5a5b948794a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/a3fe5312690d273f2bfd3bef050c0abf4105e0bfe3b8e10d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/26e384db898dc153908afeaaecf8972c9a632bd694338970.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/41f98646304dcaa4c61dc8565d6a84a02de8e38ec784cf0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/b1c62c4c4612f95e995906cd76f0eb083044f6970f17bd79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/120822ff84d0eb5c0ce8618cd95757f9f0880b1af99cb6a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/5556f448a243a31890f1af0217c3bf809ed5fd7f468aa353.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/89f2f08fc06670dfd012100e9322d0f7de01166df6ee711c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/ffe01c501222c36896ece5ec4dd1886d8632d7761a629673.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feee1bb5c9ae62e81f0daaf746156aaa00e5f8476888802c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/3747d9991e662281d81cd5b0eb0355165ed03fb9ab4229d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/23225fc0911a721fd876559e92ab7aa5913ac2fd7769ac22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feae5c03af1c7ae6c45b7e4afc8ef9784b78b37a989c7bfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/c2f29a1fb3c9a0f4c488065e5d658fb5b1fac8f14ae228a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Warlander\", \"uk-UA\": \"Warlander\", \"de-DE\": \"Warlander\", \"en-US\": \"Warlander\", \"ko-KR\": \"Warlander\", \"pt-BR\": \"Warlander\", \"es-ES\": \"Warlander\", \"ar-AE\": \"Warlander\", \"no-NO\": \"Warlander\", \"fr-CA\": \"Warlander\", \"it-IT\": \"Warlander\", \"pl-PL\": \"Warlander\", \"ru-RU\": \"Warlander\", \"zh-Hans\": \"Warlander\", \"nl-NL\": \"Warlander\", \"pt-PT\": \"Warlander\", \"zh-Hant\": \"Warlander\", \"sv-SE\": \"Warlander\", \"da-DK\": \"Warlander\", \"tr-TR\": \"Warlander\", \"fr-FR\": \"Warlander\", \"en-GB\": \"Warlander\", \"es-419\": \"Warlander\", \"ja-JP\": \"Warlander\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/048cc2424bf4ebfb307d94fe9d2aa60ba3713675869285f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/162e1e79477591405440ea476a8ad61da85ac5a5b948794a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/a3fe5312690d273f2bfd3bef050c0abf4105e0bfe3b8e10d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/26e384db898dc153908afeaaecf8972c9a632bd694338970.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/41f98646304dcaa4c61dc8565d6a84a02de8e38ec784cf0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/b1c62c4c4612f95e995906cd76f0eb083044f6970f17bd79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/120822ff84d0eb5c0ce8618cd95757f9f0880b1af99cb6a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/5556f448a243a31890f1af0217c3bf809ed5fd7f468aa353.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/89f2f08fc06670dfd012100e9322d0f7de01166df6ee711c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/ffe01c501222c36896ece5ec4dd1886d8632d7761a629673.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feee1bb5c9ae62e81f0daaf746156aaa00e5f8476888802c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/3747d9991e662281d81cd5b0eb0355165ed03fb9ab4229d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/23225fc0911a721fd876559e92ab7aa5913ac2fd7769ac22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feae5c03af1c7ae6c45b7e4afc8ef9784b78b37a989c7bfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/c2f29a1fb3c9a0f4c488065e5d658fb5b1fac8f14ae228a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T02:00:37.190000Z\", \"lastPlayedDateTime\": \"2023-05-20T02:15:57.230000Z\", \"playDuration\": \"PT14M42S\"}, {\"titleId\": \"CUSA31022_00\", \"name\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"localizedName\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10003190, \"titleIds\": [\"CUSA31023_00\", \"CUSA31022_00\", \"PPSA05662_00\", \"CUSA31024_00\", \"CUSA31025_00\", \"PPSA05663_00\", \"PPSA05664_00\", \"PPSA05665_00\"], \"name\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/i9Oif0aN1Sgm3q1QBzKTngPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/dmHZsYBMraNSMNqoitG0NywS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/GER7egWuV3Tr9XXXvBf1kds1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/WsPRHSyjtu77nOX6C6RUUeBn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0508/hfrtyucbxYjWuGSwpffaD8yz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/UJaOX0MTWInANZfV0BptRWfe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/KL9xpHisYjXEjWezz6htHTXS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/vUWdblTDS377HVZ3oSkXtvNw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/aj5IrdnMhuwuaJazhtlHGanl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/GsGuzB6QA5esti1LIFtoMC7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/ZK8k7BFZF2DecQVy1VvMnjaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/t4dEf5OxqszmB4CVP0qVY0TB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/S7hER9LSPID4CHYXLD2xBdLE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/RPn988wuquWRCERjTuAWCGwR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/7wv4a8QdqIupwJM8WXxQ3one.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"uk-UA\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"de-DE\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"en-US\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ko-KR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"pt-BR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"es-ES\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ar-AE\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"no-NO\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"fr-CA\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"it-IT\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"pl-PL\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ru-RU\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"zh-Hans\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"nl-NL\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"pt-PT\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"zh-Hant\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"sv-SE\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"da-DK\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"tr-TR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"fr-FR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"en-GB\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"es-419\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ja-JP\": \"Warhammer 40,000: Shootas, Blood & Teef\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/i9Oif0aN1Sgm3q1QBzKTngPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/dmHZsYBMraNSMNqoitG0NywS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/GER7egWuV3Tr9XXXvBf1kds1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/WsPRHSyjtu77nOX6C6RUUeBn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0508/hfrtyucbxYjWuGSwpffaD8yz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/UJaOX0MTWInANZfV0BptRWfe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/KL9xpHisYjXEjWezz6htHTXS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/vUWdblTDS377HVZ3oSkXtvNw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/aj5IrdnMhuwuaJazhtlHGanl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/GsGuzB6QA5esti1LIFtoMC7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/ZK8k7BFZF2DecQVy1VvMnjaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/t4dEf5OxqszmB4CVP0qVY0TB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/S7hER9LSPID4CHYXLD2xBdLE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/RPn988wuquWRCERjTuAWCGwR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/7wv4a8QdqIupwJM8WXxQ3one.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T01:55:32.890000Z\", \"lastPlayedDateTime\": \"2023-05-20T01:58:34.090000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA26370_00\", \"name\": \"NEW Joe & Mac - Caveman Ninja\", \"localizedName\": \"NEW Joe & Mac - Caveman Ninja\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10002233, \"titleIds\": [\"PPSA02801_00\", \"CUSA26371_00\", \"CUSA26370_00\", \"PPSA02804_00\"], \"name\": \"NEW Joe & Mac - Caveman Ninja\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/g3oZ6FoJwstOyimQ7F5W3ows.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/IiyPPQimPYqGCLSGjlRw5oAp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/oADtf8ZFf2Pf7jkNBlLAL33D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/bqnlWFLdA3U5UVf5jc54S7XG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/5FIY7GPcKFDL3drnmUIRe5do.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/9rg5PzFiQZWJFFb5hSWFafwO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/FWkNpyCsXEgQCWzHlptlqPei.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/q3qNFVVsOQqMHZS77KtXiKnB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZL5PBSVHbMfTWbhAV9CnsKbA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZusjBJcNZ4qAEDxrbrMLqYuv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"NEW Joe & Mac - Caveman Ninja\", \"uk-UA\": \"NEW Joe & Mac - Caveman Ninja\", \"de-DE\": \"NEW Joe & Mac - Caveman Ninja\", \"en-US\": \"NEW Joe & Mac - Caveman Ninja\", \"ko-KR\": \"NEW Joe & Mac - Caveman Ninja\", \"pt-BR\": \"NEW Joe & Mac - Caveman Ninja\", \"es-ES\": \"NEW Joe & Mac - Caveman Ninja\", \"ar-AE\": \"NEW Joe & Mac - Caveman Ninja\", \"no-NO\": \"NEW Joe & Mac - Caveman Ninja\", \"fr-CA\": \"NEW Joe & Mac - Caveman Ninja\", \"it-IT\": \"NEW Joe & Mac - Caveman Ninja\", \"pl-PL\": \"NEW Joe & Mac - Caveman Ninja\", \"ru-RU\": \"NEW Joe & Mac - Caveman Ninja\", \"zh-Hans\": \"NEW Joe & Mac - Caveman Ninja\", \"nl-NL\": \"NEW Joe & Mac - Caveman Ninja\", \"pt-PT\": \"NEW Joe & Mac - Caveman Ninja\", \"zh-Hant\": \"NEW Joe & Mac - Caveman Ninja\", \"sv-SE\": \"NEW Joe & Mac - Caveman Ninja\", \"da-DK\": \"NEW Joe & Mac - Caveman Ninja\", \"tr-TR\": \"NEW Joe & Mac - Caveman Ninja\", \"fr-FR\": \"NEW Joe & Mac - Caveman Ninja\", \"en-GB\": \"NEW Joe & Mac - Caveman Ninja\", \"es-419\": \"NEW Joe & Mac - Caveman Ninja\", \"ja-JP\": \"NEW Joe & Mac - Caveman Ninja\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/g3oZ6FoJwstOyimQ7F5W3ows.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/IiyPPQimPYqGCLSGjlRw5oAp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/oADtf8ZFf2Pf7jkNBlLAL33D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/bqnlWFLdA3U5UVf5jc54S7XG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/5FIY7GPcKFDL3drnmUIRe5do.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/9rg5PzFiQZWJFFb5hSWFafwO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/FWkNpyCsXEgQCWzHlptlqPei.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/q3qNFVVsOQqMHZS77KtXiKnB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZL5PBSVHbMfTWbhAV9CnsKbA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZusjBJcNZ4qAEDxrbrMLqYuv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T01:50:24.580000Z\", \"lastPlayedDateTime\": \"2023-05-20T01:54:33.490000Z\", \"playDuration\": \"PT4M3S\"}, {\"titleId\": \"CUSA43501_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T16:33:52.810000Z\", \"lastPlayedDateTime\": \"2023-05-19T17:16:26.130000Z\", \"playDuration\": \"PT42M14S\"}, {\"titleId\": \"CUSA43500_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T15:48:31.670000Z\", \"lastPlayedDateTime\": \"2023-05-19T16:33:49.590000Z\", \"playDuration\": \"PT45M3S\"}, {\"titleId\": \"CUSA43498_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T15:02:23.780000Z\", \"lastPlayedDateTime\": \"2023-05-19T15:46:19.620000Z\", \"playDuration\": \"PT43M52S\"}, {\"titleId\": \"CUSA43499_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T13:52:08.260000Z\", \"lastPlayedDateTime\": \"2023-05-19T15:00:20.010000Z\", \"playDuration\": \"PT1H8M1S\"}, {\"titleId\": \"CUSA43473_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T13:07:06.960000Z\", \"lastPlayedDateTime\": \"2023-05-19T13:41:34.640000Z\", \"playDuration\": \"PT28M49S\"}, {\"titleId\": \"CUSA43472_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 15, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T12:30:56.850000Z\", \"lastPlayedDateTime\": \"2023-05-19T13:07:00.710000Z\", \"playDuration\": \"PT21M32S\"}, {\"titleId\": \"CUSA42915_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T12:23:00.470000Z\", \"lastPlayedDateTime\": \"2023-05-19T12:25:00.380000Z\", \"playDuration\": \"PT1M51S\"}, {\"titleId\": \"PPSA05075_00\", \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"localizedName\": \"The Adventures of Elena Temple: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003687, \"titleIds\": [\"PPSA05075_00\", \"PPSA05076_00\", \"CUSA30093_00\", \"CUSA30092_00\", \"CUSA30091_00\"], \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Adventures of Elena Temple: Definitive Edition\", \"uk-UA\": \"The Adventures of Elena Temple: Definitive Edition\", \"de-DE\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-US\": \"The Adventures of Elena Temple: Definitive Edition\", \"ko-KR\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-BR\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-ES\": \"The Adventures of Elena Temple: Definitive Edition\", \"ar-AE\": \"The Adventures of Elena Temple: Definitive Edition\", \"no-NO\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-CA\": \"The Adventures of Elena Temple: Definitive Edition\", \"it-IT\": \"The Adventures of Elena Temple: Definitive Edition\", \"pl-PL\": \"The Adventures of Elena Temple: Definitive Edition\", \"ru-RU\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hans\": \"The Adventures of Elena Temple: Definitive Edition\", \"nl-NL\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-PT\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hant\": \"The Adventures of Elena Temple: Definitive Edition\", \"sv-SE\": \"The Adventures of Elena Temple: Definitive Edition\", \"da-DK\": \"The Adventures of Elena Temple: Definitive Edition\", \"tr-TR\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-FR\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-GB\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-419\": \"The Adventures of Elena Temple: Definitive Edition\", \"ja-JP\": \"The Adventures of Elena Temple: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T10:54:44.720000Z\", \"lastPlayedDateTime\": \"2023-05-19T12:05:52.880000Z\", \"playDuration\": \"PT1H10M14S\"}, {\"titleId\": \"CUSA30091_00\", \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"localizedName\": \"The Adventures of Elena Temple: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003687, \"titleIds\": [\"PPSA05075_00\", \"PPSA05076_00\", \"CUSA30093_00\", \"CUSA30092_00\", \"CUSA30091_00\"], \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Adventures of Elena Temple: Definitive Edition\", \"uk-UA\": \"The Adventures of Elena Temple: Definitive Edition\", \"de-DE\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-US\": \"The Adventures of Elena Temple: Definitive Edition\", \"ko-KR\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-BR\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-ES\": \"The Adventures of Elena Temple: Definitive Edition\", \"ar-AE\": \"The Adventures of Elena Temple: Definitive Edition\", \"no-NO\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-CA\": \"The Adventures of Elena Temple: Definitive Edition\", \"it-IT\": \"The Adventures of Elena Temple: Definitive Edition\", \"pl-PL\": \"The Adventures of Elena Temple: Definitive Edition\", \"ru-RU\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hans\": \"The Adventures of Elena Temple: Definitive Edition\", \"nl-NL\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-PT\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hant\": \"The Adventures of Elena Temple: Definitive Edition\", \"sv-SE\": \"The Adventures of Elena Temple: Definitive Edition\", \"da-DK\": \"The Adventures of Elena Temple: Definitive Edition\", \"tr-TR\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-FR\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-GB\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-419\": \"The Adventures of Elena Temple: Definitive Edition\", \"ja-JP\": \"The Adventures of Elena Temple: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T13:41:11.670000Z\", \"lastPlayedDateTime\": \"2023-05-18T15:57:42.930000Z\", \"playDuration\": \"PT2H16M26S\"}, {\"titleId\": \"CUSA30092_00\", \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"localizedName\": \"The Adventures of Elena Temple: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003687, \"titleIds\": [\"PPSA05075_00\", \"PPSA05076_00\", \"CUSA30093_00\", \"CUSA30092_00\", \"CUSA30091_00\"], \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Adventures of Elena Temple: Definitive Edition\", \"uk-UA\": \"The Adventures of Elena Temple: Definitive Edition\", \"de-DE\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-US\": \"The Adventures of Elena Temple: Definitive Edition\", \"ko-KR\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-BR\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-ES\": \"The Adventures of Elena Temple: Definitive Edition\", \"ar-AE\": \"The Adventures of Elena Temple: Definitive Edition\", \"no-NO\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-CA\": \"The Adventures of Elena Temple: Definitive Edition\", \"it-IT\": \"The Adventures of Elena Temple: Definitive Edition\", \"pl-PL\": \"The Adventures of Elena Temple: Definitive Edition\", \"ru-RU\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hans\": \"The Adventures of Elena Temple: Definitive Edition\", \"nl-NL\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-PT\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hant\": \"The Adventures of Elena Temple: Definitive Edition\", \"sv-SE\": \"The Adventures of Elena Temple: Definitive Edition\", \"da-DK\": \"The Adventures of Elena Temple: Definitive Edition\", \"tr-TR\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-FR\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-GB\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-419\": \"The Adventures of Elena Temple: Definitive Edition\", \"ja-JP\": \"The Adventures of Elena Temple: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T11:37:59.690000Z\", \"lastPlayedDateTime\": \"2023-05-18T13:39:42.650000Z\", \"playDuration\": \"PT1H56M5S\"}, {\"titleId\": \"CUSA24043_00\", \"name\": \"Hitchhiker - A Mystery Game\", \"localizedName\": \"Hitchhiker - A Mystery Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234556, \"titleIds\": [\"CUSA16454_00\", \"CUSA24043_00\", \"CUSA16674_00\"], \"name\": \"Hitchhiker - A Mystery Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/owyuu06bxX9qFvDQiYtPRJbW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/iZ2mZxQWBvIVMIFKpLXYYeVq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/U6qwow5ul0HOvRzzzipA4TnM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/VzgVe80wZ2HhFYqHzyh0Kg1j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/Wj2plUI48GvRjMXCIwYvQlZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/42OsMQdwYSTJ87nXqCoeA1Ai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/NzenRbAF62RPP2tQdeZNY2ZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/OWTf3Szv5Be7fftPYwJCGho1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/c9ShcVYKon6Bz0KvNzdz9nDo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hitchhiker - A Mystery Game\", \"uk-UA\": \"Hitchhiker - A Mystery Game\", \"de-DE\": \"Hitchhiker - A Mystery Game\", \"en-US\": \"Hitchhiker - A Mystery Game\", \"ko-KR\": \"Hitchhiker - A Mystery Game\", \"pt-BR\": \"Hitchhiker - A Mystery Game\", \"es-ES\": \"Hitchhiker - A Mystery Game\", \"ar-AE\": \"Hitchhiker - A Mystery Game\", \"no-NO\": \"Hitchhiker - A Mystery Game\", \"fr-CA\": \"Hitchhiker - A Mystery Game\", \"it-IT\": \"Hitchhiker - A Mystery Game\", \"pl-PL\": \"Hitchhiker - A Mystery Game\", \"ru-RU\": \"Hitchhiker - A Mystery Game\", \"zh-Hans\": \"Hitchhiker - A Mystery Game\", \"nl-NL\": \"Hitchhiker - A Mystery Game\", \"pt-PT\": \"Hitchhiker - A Mystery Game\", \"zh-Hant\": \"Hitchhiker - A Mystery Game\", \"sv-SE\": \"Hitchhiker - A Mystery Game\", \"da-DK\": \"Hitchhiker - A Mystery Game\", \"tr-TR\": \"Hitchhiker - A Mystery Game\", \"fr-FR\": \"Hitchhiker - A Mystery Game\", \"en-GB\": \"Hitchhiker - A Mystery Game\", \"es-419\": \"Hitchhiker - A Mystery Game\", \"ja-JP\": \"Hitchhiker - A Mystery Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/owyuu06bxX9qFvDQiYtPRJbW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/iZ2mZxQWBvIVMIFKpLXYYeVq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/U6qwow5ul0HOvRzzzipA4TnM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/VzgVe80wZ2HhFYqHzyh0Kg1j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/Wj2plUI48GvRjMXCIwYvQlZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/42OsMQdwYSTJ87nXqCoeA1Ai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/NzenRbAF62RPP2tQdeZNY2ZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/OWTf3Szv5Be7fftPYwJCGho1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/c9ShcVYKon6Bz0KvNzdz9nDo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T07:54:58.070000Z\", \"lastPlayedDateTime\": \"2023-05-18T11:31:22.720000Z\", \"playDuration\": \"PT2H50M6S\"}, {\"titleId\": \"PPSA10514_00\", \"name\": \"Alphadia Neo\", \"localizedName\": \"Alphadia Neo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10005997, \"titleIds\": [\"CUSA40281_00\", \"CUSA40280_00\", \"CUSA40252_00\", \"PPSA10514_00\", \"CUSA36749_00\", \"PPSA13314_00\", \"PPSA13313_00\"], \"name\": \"Alphadia Neo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alphadia Neo\", \"uk-UA\": \"Alphadia Neo\", \"de-DE\": \"Alphadia Neo\", \"en-US\": \"Alphadia Neo\", \"ko-KR\": \"Alphadia Neo\", \"pt-BR\": \"Alphadia Neo\", \"es-ES\": \"Alphadia Neo\", \"no-NO\": \"Alphadia Neo\", \"fr-CA\": \"Alphadia Neo\", \"it-IT\": \"Alphadia Neo\", \"pl-PL\": \"Alphadia Neo\", \"ru-RU\": \"Alphadia Neo\", \"zh-Hans\": \"Alphadia Neo\", \"nl-NL\": \"Alphadia Neo\", \"pt-PT\": \"Alphadia Neo\", \"zh-Hant\": \"Alphadia Neo\", \"sv-SE\": \"Alphadia Neo\", \"da-DK\": \"Alphadia Neo\", \"fr-FR\": \"Alphadia Neo\", \"en-GB\": \"Alphadia Neo\", \"es-419\": \"Alphadia Neo\", \"ja-JP\": \"\\u30a2\\u30eb\\u30d5\\u30a1\\u30c7\\u30a3\\u30a2 \\u30cd\\u30aa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:49:34.610000Z\", \"lastPlayedDateTime\": \"2023-05-18T07:53:16.210000Z\", \"playDuration\": \"PT15H11M22S\"}, {\"titleId\": \"CUSA36749_00\", \"name\": \"Alphadia Neo\", \"localizedName\": \"Alphadia Neo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005997, \"titleIds\": [\"CUSA40281_00\", \"CUSA40280_00\", \"CUSA40252_00\", \"PPSA10514_00\", \"CUSA36749_00\", \"PPSA13314_00\", \"PPSA13313_00\"], \"name\": \"Alphadia Neo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alphadia Neo\", \"uk-UA\": \"Alphadia Neo\", \"de-DE\": \"Alphadia Neo\", \"en-US\": \"Alphadia Neo\", \"ko-KR\": \"Alphadia Neo\", \"pt-BR\": \"Alphadia Neo\", \"es-ES\": \"Alphadia Neo\", \"no-NO\": \"Alphadia Neo\", \"fr-CA\": \"Alphadia Neo\", \"it-IT\": \"Alphadia Neo\", \"pl-PL\": \"Alphadia Neo\", \"ru-RU\": \"Alphadia Neo\", \"zh-Hans\": \"Alphadia Neo\", \"nl-NL\": \"Alphadia Neo\", \"pt-PT\": \"Alphadia Neo\", \"zh-Hant\": \"Alphadia Neo\", \"sv-SE\": \"Alphadia Neo\", \"da-DK\": \"Alphadia Neo\", \"fr-FR\": \"Alphadia Neo\", \"en-GB\": \"Alphadia Neo\", \"es-419\": \"Alphadia Neo\", \"ja-JP\": \"\\u30a2\\u30eb\\u30d5\\u30a1\\u30c7\\u30a3\\u30a2 \\u30cd\\u30aa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T11:25:07.680000Z\", \"lastPlayedDateTime\": \"2023-05-18T07:47:44.600000Z\", \"playDuration\": \"PT15H10M51S\"}, {\"titleId\": \"PPSA16705_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T02:37:59.250000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:53:23.300000Z\", \"playDuration\": \"PT14M23S\"}, {\"titleId\": \"PPSA16704_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T02:23:07.680000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:37:39.170000Z\", \"playDuration\": \"PT14M17S\"}, {\"titleId\": \"PPSA16706_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T02:06:43.890000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:21:43.400000Z\", \"playDuration\": \"PT14M56S\"}, {\"titleId\": \"PPSA16707_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:47:47.880000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:06:41.150000Z\", \"playDuration\": \"PT18M39S\"}, {\"titleId\": \"PPSA12628_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:37:33.770000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:39:25.640000Z\", \"playDuration\": \"PT1M49S\"}, {\"titleId\": \"PPSA12627_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:35:50.250000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:37:31.720000Z\", \"playDuration\": \"PT1M37S\"}, {\"titleId\": \"CUSA39590_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:33:59.060000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:35:35.790000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA39589_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:30:55.640000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:33:51.800000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"PPSA12498_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T15:45:25.630000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:59:22.380000Z\", \"playDuration\": \"PT13M53S\"}, {\"titleId\": \"PPSA12499_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T15:31:02.960000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:45:22.470000Z\", \"playDuration\": \"PT14M9S\"}, {\"titleId\": \"CUSA39459_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T15:13:28.320000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:30:48.370000Z\", \"playDuration\": \"PT16M32S\"}, {\"titleId\": \"CUSA39460_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T13:47:30.510000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:13:24.370000Z\", \"playDuration\": \"PT28M36S\"}, {\"titleId\": \"CUSA42421_00\", \"name\": \"Neon Blast\", \"localizedName\": \"Neon Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007985, \"titleIds\": [\"CUSA46472_00\", \"CUSA46471_00\", \"CUSA46473_00\", \"CUSA42421_00\", \"CUSA42422_00\"], \"name\": \"Neon Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neon Blast\", \"uk-UA\": \"Neon Blast\", \"de-DE\": \"Neon Blast\", \"en-US\": \"Neon Blast\", \"pt-BR\": \"Neon Blast\", \"es-ES\": \"Neon Blast\", \"ar-AE\": \"Neon Blast\", \"no-NO\": \"Neon Blast\", \"fr-CA\": \"Neon Blast\", \"it-IT\": \"Neon Blast\", \"pl-PL\": \"Neon Blast\", \"ru-RU\": \"Neon Blast\", \"nl-NL\": \"Neon Blast\", \"pt-PT\": \"Neon Blast\", \"sv-SE\": \"Neon Blast\", \"da-DK\": \"Neon Blast\", \"tr-TR\": \"Neon Blast\", \"fr-FR\": \"Neon Blast\", \"en-GB\": \"Neon Blast\", \"es-419\": \"Neon Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T08:15:12.630000Z\", \"lastPlayedDateTime\": \"2023-05-17T13:36:26.990000Z\", \"playDuration\": \"PT1H14M50S\"}, {\"titleId\": \"CUSA42422_00\", \"name\": \"Neon Blast\", \"localizedName\": \"Neon Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007985, \"titleIds\": [\"CUSA46472_00\", \"CUSA46471_00\", \"CUSA46473_00\", \"CUSA42421_00\", \"CUSA42422_00\"], \"name\": \"Neon Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neon Blast\", \"uk-UA\": \"Neon Blast\", \"de-DE\": \"Neon Blast\", \"en-US\": \"Neon Blast\", \"pt-BR\": \"Neon Blast\", \"es-ES\": \"Neon Blast\", \"ar-AE\": \"Neon Blast\", \"no-NO\": \"Neon Blast\", \"fr-CA\": \"Neon Blast\", \"it-IT\": \"Neon Blast\", \"pl-PL\": \"Neon Blast\", \"ru-RU\": \"Neon Blast\", \"nl-NL\": \"Neon Blast\", \"pt-PT\": \"Neon Blast\", \"sv-SE\": \"Neon Blast\", \"da-DK\": \"Neon Blast\", \"tr-TR\": \"Neon Blast\", \"fr-FR\": \"Neon Blast\", \"en-GB\": \"Neon Blast\", \"es-419\": \"Neon Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T06:32:33.530000Z\", \"lastPlayedDateTime\": \"2023-05-17T08:15:11.080000Z\", \"playDuration\": \"PT1H42M28S\"}, {\"titleId\": \"CUSA33491_00\", \"name\": \"Eternal Hope\", \"localizedName\": \"Eternal Hope\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004761, \"titleIds\": [\"CUSA32889_00\", \"CUSA32888_00\", \"CUSA33492_00\", \"CUSA33491_00\"], \"name\": \"Eternal Hope\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eternal Hope\", \"uk-UA\": \"Eternal Hope\", \"de-DE\": \"Eternal Hope\", \"en-US\": \"Eternal Hope\", \"ko-KR\": \"Eternal Hope\", \"pt-BR\": \"Eternal Hope\", \"es-ES\": \"Eternal Hope\", \"ar-AE\": \"Eternal Hope\", \"no-NO\": \"Eternal Hope\", \"fr-CA\": \"Eternal Hope\", \"it-IT\": \"Eternal Hope\", \"pl-PL\": \"Eternal Hope\", \"ru-RU\": \"Eternal Hope\", \"zh-Hans\": \"Eternal Hope\", \"nl-NL\": \"Eternal Hope\", \"pt-PT\": \"Eternal Hope\", \"zh-Hant\": \"Eternal Hope\", \"sv-SE\": \"Eternal Hope\", \"da-DK\": \"Eternal Hope\", \"tr-TR\": \"Eternal Hope\", \"fr-FR\": \"Eternal Hope\", \"en-GB\": \"Eternal Hope\", \"es-419\": \"Eternal Hope\", \"ja-JP\": \"Eternal Hope\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T02:41:57.800000Z\", \"lastPlayedDateTime\": \"2023-05-17T06:30:49.440000Z\", \"playDuration\": \"PT2H10M25S\"}, {\"titleId\": \"CUSA32889_00\", \"name\": \"Eternal Hope\", \"localizedName\": \"Eternal Hope\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004761, \"titleIds\": [\"CUSA32889_00\", \"CUSA32888_00\", \"CUSA33492_00\", \"CUSA33491_00\"], \"name\": \"Eternal Hope\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eternal Hope\", \"uk-UA\": \"Eternal Hope\", \"de-DE\": \"Eternal Hope\", \"en-US\": \"Eternal Hope\", \"ko-KR\": \"Eternal Hope\", \"pt-BR\": \"Eternal Hope\", \"es-ES\": \"Eternal Hope\", \"ar-AE\": \"Eternal Hope\", \"no-NO\": \"Eternal Hope\", \"fr-CA\": \"Eternal Hope\", \"it-IT\": \"Eternal Hope\", \"pl-PL\": \"Eternal Hope\", \"ru-RU\": \"Eternal Hope\", \"zh-Hans\": \"Eternal Hope\", \"nl-NL\": \"Eternal Hope\", \"pt-PT\": \"Eternal Hope\", \"zh-Hant\": \"Eternal Hope\", \"sv-SE\": \"Eternal Hope\", \"da-DK\": \"Eternal Hope\", \"tr-TR\": \"Eternal Hope\", \"fr-FR\": \"Eternal Hope\", \"en-GB\": \"Eternal Hope\", \"es-419\": \"Eternal Hope\", \"ja-JP\": \"Eternal Hope\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T15:23:55.400000Z\", \"lastPlayedDateTime\": \"2023-05-17T02:40:55.280000Z\", \"playDuration\": \"PT2H51M51S\"}, {\"titleId\": \"PPSA15542_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T15:06:54.880000Z\", \"lastPlayedDateTime\": \"2023-05-16T15:17:51.140000Z\", \"playDuration\": \"PT7M47S\"}, {\"titleId\": \"PPSA15541_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T14:57:28.670000Z\", \"lastPlayedDateTime\": \"2023-05-16T15:06:50.340000Z\", \"playDuration\": \"PT8M58S\"}, {\"titleId\": \"CUSA42550_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T14:47:02.700000Z\", \"lastPlayedDateTime\": \"2023-05-16T14:57:23.070000Z\", \"playDuration\": \"PT10M16S\"}, {\"titleId\": \"CUSA42551_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T14:06:07.360000Z\", \"lastPlayedDateTime\": \"2023-05-16T14:34:56.460000Z\", \"playDuration\": \"PT15M8S\"}, {\"titleId\": \"PPSA13762_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T13:20:56.440000Z\", \"lastPlayedDateTime\": \"2023-05-16T13:25:51.570000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"PPSA15204_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T13:18:16.000000Z\", \"lastPlayedDateTime\": \"2023-05-16T13:20:53.660000Z\", \"playDuration\": \"PT2M29S\"}, {\"titleId\": \"CUSA40703_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T13:04:12.920000Z\", \"lastPlayedDateTime\": \"2023-05-16T13:18:13.170000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA42184_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:53:45.460000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:59:06.500000Z\", \"playDuration\": \"PT5M2S\"}, {\"titleId\": \"CUSA33156_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:40:45.700000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:52:06.530000Z\", \"playDuration\": \"PT11M9S\"}, {\"titleId\": \"CUSA33155_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:28:38.380000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:40:14.670000Z\", \"playDuration\": \"PT11M25S\"}, {\"titleId\": \"CUSA33154_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:16:05.810000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:28:20.770000Z\", \"playDuration\": \"PT12M3S\"}, {\"titleId\": \"CUSA33157_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:03:01.840000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:15:48.190000Z\", \"playDuration\": \"PT12M18S\"}, {\"titleId\": \"PPSA14059_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T11:41:14.860000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:57:44.500000Z\", \"playDuration\": \"PT16M4S\"}, {\"titleId\": \"PPSA14057_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T11:24:16.950000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:41:06.000000Z\", \"playDuration\": \"PT16M45S\"}, {\"titleId\": \"PPSA14058_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T11:04:19.270000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:24:00.760000Z\", \"playDuration\": \"PT19M38S\"}, {\"titleId\": \"PPSA14060_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T10:38:19.000000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:04:13.630000Z\", \"playDuration\": \"PT25M50S\"}, {\"titleId\": \"CUSA41100_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T10:18:44.520000Z\", \"lastPlayedDateTime\": \"2023-05-16T10:37:33.790000Z\", \"playDuration\": \"PT18M33S\"}, {\"titleId\": \"CUSA41098_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T10:00:01.940000Z\", \"lastPlayedDateTime\": \"2023-05-16T10:15:22.190000Z\", \"playDuration\": \"PT15M16S\"}, {\"titleId\": \"CUSA41099_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T08:47:51.580000Z\", \"lastPlayedDateTime\": \"2023-05-16T09:05:42.670000Z\", \"playDuration\": \"PT17M46S\"}, {\"titleId\": \"CUSA41101_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T08:25:26.670000Z\", \"lastPlayedDateTime\": \"2023-05-16T08:47:49.430000Z\", \"playDuration\": \"PT22M2S\"}, {\"titleId\": \"CUSA40380_00\", \"name\": \"Midnight is Lost\", \"localizedName\": \"Midnight is Lost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005584, \"titleIds\": [\"CUSA40379_00\", \"CUSA40380_00\"], \"name\": \"Midnight is Lost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/acbf0588a56e227f148b2af4ec4fbe87da368abb20e29911.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c0610c082866fbb3dd98e948fe1b238f7b2f65cd943388c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/53bd2113c10056b3d223c37c6dde673d85fb3d209ee1dfad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/2e5cc68607553ffac8eb18db9558920b09795d131fde5ac1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/fd968ad8c081582088e4c21ce3b7459537e7653fe18a4878.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/49854736cb372c3e3a42fefcd6abe92c251c4e4af681e29f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/d062fad111b922c7494abcc91f810bb08b06599a9cfcf1b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/aed6fe93a30054b21df0d33e6fa9953d69f5a310cda30c9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/989ce654169953037fc35d93589db3e66848bde3bd8941bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c3c56fe8008b46cacf3fab6bbc4bafc9468a3c460080d1de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/e2d953aae9c6ef948b3f69fea5395c74713ede75b1ecf595.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c4217cd6a4f2aa7f010582c1be35918230e7b775d6eaceaf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Midnight is Lost\", \"uk-UA\": \"Midnight is Lost\", \"de-DE\": \"Midnight is Lost\", \"en-US\": \"Midnight is Lost\", \"ko-KR\": \"Midnight is Lost\", \"pt-BR\": \"Midnight is Lost\", \"es-ES\": \"Midnight is Lost\", \"ar-AE\": \"Midnight is Lost\", \"no-NO\": \"Midnight is Lost\", \"fr-CA\": \"Midnight is Lost\", \"it-IT\": \"Midnight is Lost\", \"pl-PL\": \"Midnight is Lost\", \"ru-RU\": \"Midnight is Lost\", \"zh-Hans\": \"Midnight is Lost\", \"nl-NL\": \"Midnight is Lost\", \"pt-PT\": \"Midnight is Lost\", \"zh-Hant\": \"Midnight is Lost\", \"sv-SE\": \"Midnight is Lost\", \"da-DK\": \"Midnight is Lost\", \"tr-TR\": \"Midnight is Lost\", \"fr-FR\": \"Midnight is Lost\", \"en-GB\": \"Midnight is Lost\", \"es-419\": \"Midnight is Lost\", \"ja-JP\": \"Midnight is Lost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/acbf0588a56e227f148b2af4ec4fbe87da368abb20e29911.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c0610c082866fbb3dd98e948fe1b238f7b2f65cd943388c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/53bd2113c10056b3d223c37c6dde673d85fb3d209ee1dfad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/2e5cc68607553ffac8eb18db9558920b09795d131fde5ac1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/fd968ad8c081582088e4c21ce3b7459537e7653fe18a4878.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/49854736cb372c3e3a42fefcd6abe92c251c4e4af681e29f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/d062fad111b922c7494abcc91f810bb08b06599a9cfcf1b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/aed6fe93a30054b21df0d33e6fa9953d69f5a310cda30c9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/989ce654169953037fc35d93589db3e66848bde3bd8941bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c3c56fe8008b46cacf3fab6bbc4bafc9468a3c460080d1de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/e2d953aae9c6ef948b3f69fea5395c74713ede75b1ecf595.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c4217cd6a4f2aa7f010582c1be35918230e7b775d6eaceaf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T07:29:12.450000Z\", \"lastPlayedDateTime\": \"2023-05-16T08:15:05.950000Z\", \"playDuration\": \"PT45M48S\"}, {\"titleId\": \"PPSA06486_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T04:00:15.530000Z\", \"lastPlayedDateTime\": \"2023-05-16T05:40:03.680000Z\", \"playDuration\": \"PT1H37M45S\"}, {\"titleId\": \"PPSA06483_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T01:28:43.550000Z\", \"lastPlayedDateTime\": \"2023-05-16T03:07:30.890000Z\", \"playDuration\": \"PT1H37M7S\"}, {\"titleId\": \"CUSA32203_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T14:11:36.790000Z\", \"lastPlayedDateTime\": \"2023-05-15T15:49:45.950000Z\", \"playDuration\": \"PT1H36M50S\"}, {\"titleId\": \"CUSA32200_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T12:08:32.210000Z\", \"lastPlayedDateTime\": \"2023-05-15T13:56:07.440000Z\", \"playDuration\": \"PT1H44M58S\"}, {\"titleId\": \"CUSA41001_00\", \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"localizedName\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007454, \"titleIds\": [\"CUSA41272_00\", \"CUSA41275_00\", \"CUSA41273_00\", \"CUSA41274_00\", \"CUSA41050_00\", \"CUSA41051_00\", \"CUSA41001_00\", \"CUSA41049_00\"], \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"uk-UA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"de-DE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-US\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ko-KR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-BR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-ES\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ar-AE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"no-NO\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-CA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"it-IT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pl-PL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ru-RU\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hans\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"nl-NL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-PT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hant\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"sv-SE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"da-DK\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"tr-TR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-FR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-GB\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-419\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ja-JP\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T11:22:21.610000Z\", \"lastPlayedDateTime\": \"2023-05-15T11:49:03.250000Z\", \"playDuration\": \"PT26M19S\"}, {\"titleId\": \"PPSA10888_00\", \"name\": \"Beat The Clock\", \"localizedName\": \"Beat The Clock\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005631, \"titleIds\": [\"CUSA35191_00\", \"CUSA35192_00\", \"CUSA37482_00\", \"CUSA37549_00\", \"CUSA37548_00\", \"CUSA37547_00\", \"PPSA08958_00\", \"CUSA36449_00\", \"CUSA37546_00\", \"PPSA10888_00\"], \"name\": \"Beat The Clock\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Beat The Clock\", \"uk-UA\": \"Beat The Clock\", \"de-DE\": \"Wettlauf gegen die Zeit\", \"en-US\": \"Beat The Clock\", \"ko-KR\": \"\\uc2dc\\uacc4\\ub97c \\uc774\\uae38\", \"pt-BR\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"es-ES\": \"vencer al reloj\", \"ar-AE\": \"\\u062a\\u063a\\u0644\\u0628 \\u0639\\u0644\\u0649 \\u0645\\u062f\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629\", \"no-NO\": \"Sl\\u00e5 klokken\", \"fr-CA\": \"Battre le temps\", \"it-IT\": \"Batti l'orologio\", \"pl-PL\": \"Bicie zegara\", \"ru-RU\": \"\\u0411\\u0438\\u0442\\u044c \\u0447\\u0430\\u0441\\u044b\", \"zh-Hans\": \"\\u6253\\u8d25\\u65f6\\u949f\", \"nl-NL\": \"Versla de klok\", \"pt-PT\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"zh-Hant\": \"\\u6253\\u6557\\u6642\\u9418\", \"sv-SE\": \"Sl\\u00e5 klockan\", \"da-DK\": \"Sl\\u00e5 uret\", \"tr-TR\": \"Saati yenmek\", \"fr-FR\": \"Battre le temps\", \"en-GB\": \"Beat The Clock\", \"es-419\": \"vencer al reloj\", \"ja-JP\": \"\\u30d3\\u30fc\\u30c8\\u30fb\\u30b6\\u30fb\\u30af\\u30ed\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:43:05.510000Z\", \"lastPlayedDateTime\": \"2023-05-15T11:22:18.660000Z\", \"playDuration\": \"PT1H15M15S\"}, {\"titleId\": \"PPSA07233_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:29:14.410000Z\", \"lastPlayedDateTime\": \"2023-05-15T06:42:14.120000Z\", \"playDuration\": \"PT12M42S\"}, {\"titleId\": \"PPSA07235_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:15:56.200000Z\", \"lastPlayedDateTime\": \"2023-05-15T06:28:18.580000Z\", \"playDuration\": \"PT12M18S\"}, {\"titleId\": \"PPSA07234_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T05:59:02.750000Z\", \"lastPlayedDateTime\": \"2023-05-15T06:15:32.130000Z\", \"playDuration\": \"PT16M9S\"}, {\"titleId\": \"PPSA07236_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T05:39:31.980000Z\", \"lastPlayedDateTime\": \"2023-05-15T05:58:24.980000Z\", \"playDuration\": \"PT18M48S\"}, {\"titleId\": \"CUSA37547_00\", \"name\": \"Beat The Clock\", \"localizedName\": \"Beat The Clock\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"category\": \"unknown\", \"service\": \"none_purchased\", \"playCount\": 2, \"concept\": {\"id\": 10005631, \"titleIds\": [\"CUSA35191_00\", \"CUSA35192_00\", \"CUSA37482_00\", \"CUSA37549_00\", \"CUSA37548_00\", \"CUSA37547_00\", \"PPSA08958_00\", \"CUSA36449_00\", \"CUSA37546_00\", \"PPSA10888_00\"], \"name\": \"Beat The Clock\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Beat The Clock\", \"uk-UA\": \"Beat The Clock\", \"de-DE\": \"Wettlauf gegen die Zeit\", \"en-US\": \"Beat The Clock\", \"ko-KR\": \"\\uc2dc\\uacc4\\ub97c \\uc774\\uae38\", \"pt-BR\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"es-ES\": \"vencer al reloj\", \"ar-AE\": \"\\u062a\\u063a\\u0644\\u0628 \\u0639\\u0644\\u0649 \\u0645\\u062f\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629\", \"no-NO\": \"Sl\\u00e5 klokken\", \"fr-CA\": \"Battre le temps\", \"it-IT\": \"Batti l'orologio\", \"pl-PL\": \"Bicie zegara\", \"ru-RU\": \"\\u0411\\u0438\\u0442\\u044c \\u0447\\u0430\\u0441\\u044b\", \"zh-Hans\": \"\\u6253\\u8d25\\u65f6\\u949f\", \"nl-NL\": \"Versla de klok\", \"pt-PT\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"zh-Hant\": \"\\u6253\\u6557\\u6642\\u9418\", \"sv-SE\": \"Sl\\u00e5 klockan\", \"da-DK\": \"Sl\\u00e5 uret\", \"tr-TR\": \"Saati yenmek\", \"fr-FR\": \"Battre le temps\", \"en-GB\": \"Beat The Clock\", \"es-419\": \"vencer al reloj\", \"ja-JP\": \"\\u30d3\\u30fc\\u30c8\\u30fb\\u30b6\\u30fb\\u30af\\u30ed\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T05:35:50.250000Z\", \"lastPlayedDateTime\": \"2023-05-15T05:38:26.960000Z\", \"playDuration\": \"PT1H29M53S\"}, {\"titleId\": \"CUSA37546_00\", \"name\": \"Beat The Clock\", \"localizedName\": \"Beat The Clock\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005631, \"titleIds\": [\"CUSA35191_00\", \"CUSA35192_00\", \"CUSA37482_00\", \"CUSA37549_00\", \"CUSA37548_00\", \"CUSA37547_00\", \"PPSA08958_00\", \"CUSA36449_00\", \"CUSA37546_00\", \"PPSA10888_00\"], \"name\": \"Beat The Clock\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Beat The Clock\", \"uk-UA\": \"Beat The Clock\", \"de-DE\": \"Wettlauf gegen die Zeit\", \"en-US\": \"Beat The Clock\", \"ko-KR\": \"\\uc2dc\\uacc4\\ub97c \\uc774\\uae38\", \"pt-BR\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"es-ES\": \"vencer al reloj\", \"ar-AE\": \"\\u062a\\u063a\\u0644\\u0628 \\u0639\\u0644\\u0649 \\u0645\\u062f\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629\", \"no-NO\": \"Sl\\u00e5 klokken\", \"fr-CA\": \"Battre le temps\", \"it-IT\": \"Batti l'orologio\", \"pl-PL\": \"Bicie zegara\", \"ru-RU\": \"\\u0411\\u0438\\u0442\\u044c \\u0447\\u0430\\u0441\\u044b\", \"zh-Hans\": \"\\u6253\\u8d25\\u65f6\\u949f\", \"nl-NL\": \"Versla de klok\", \"pt-PT\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"zh-Hant\": \"\\u6253\\u6557\\u6642\\u9418\", \"sv-SE\": \"Sl\\u00e5 klockan\", \"da-DK\": \"Sl\\u00e5 uret\", \"tr-TR\": \"Saati yenmek\", \"fr-FR\": \"Battre le temps\", \"en-GB\": \"Beat The Clock\", \"es-419\": \"vencer al reloj\", \"ja-JP\": \"\\u30d3\\u30fc\\u30c8\\u30fb\\u30b6\\u30fb\\u30af\\u30ed\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T04:21:51.720000Z\", \"lastPlayedDateTime\": \"2023-05-15T05:34:45.510000Z\", \"playDuration\": \"PT1H12M49S\"}, {\"titleId\": \"CUSA40903_00\", \"name\": \"Kick it, Bunny!\", \"localizedName\": \"Kick it, Bunny!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003865, \"titleIds\": [\"CUSA30577_00\", \"CUSA30578_00\", \"CUSA40902_00\", \"CUSA40903_00\"], \"name\": \"Kick it, Bunny!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/bJW65jyp4N2Bhv71tdWCD4wK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/FVu6g2I58a2oKWGUnM0bEcRo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/WCjbToMR2IL9LiN3tgAmLIkK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/mdPZdf8JCQmuyRty2FLQNgxk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kick it, Bunny!\", \"uk-UA\": \"Kick it, Bunny!\", \"de-DE\": \"Kick it, Bunny!\", \"en-US\": \"Kick it, Bunny!\", \"ko-KR\": \"Kick it, Bunny!\", \"pt-BR\": \"Kick it, Bunny!\", \"es-ES\": \"Kick it, Bunny!\", \"ar-AE\": \"Kick it, Bunny!\", \"no-NO\": \"Kick it, Bunny!\", \"fr-CA\": \"Kick it, Bunny!\", \"it-IT\": \"Kick it, Bunny!\", \"pl-PL\": \"Kick it, Bunny!\", \"ru-RU\": \"Kick it, Bunny!\", \"zh-Hans\": \"Kick it, Bunny!\", \"nl-NL\": \"Kick it, Bunny!\", \"pt-PT\": \"Kick it, Bunny!\", \"zh-Hant\": \"Kick it, Bunny!\", \"sv-SE\": \"Kick it, Bunny!\", \"da-DK\": \"Kick it, Bunny!\", \"tr-TR\": \"Kick it, Bunny!\", \"fr-FR\": \"Kick it, Bunny!\", \"en-GB\": \"Kick it, Bunny!\", \"es-419\": \"Kick it, Bunny!\", \"ja-JP\": \"Kick it, Bunny!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/bJW65jyp4N2Bhv71tdWCD4wK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/FVu6g2I58a2oKWGUnM0bEcRo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/WCjbToMR2IL9LiN3tgAmLIkK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/mdPZdf8JCQmuyRty2FLQNgxk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T12:20:43.670000Z\", \"lastPlayedDateTime\": \"2023-05-14T15:48:29.440000Z\", \"playDuration\": \"PT3H21M50S\"}, {\"titleId\": \"CUSA41268_00\", \"name\": \"SokoBunny\", \"localizedName\": \"SokoBunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003587, \"titleIds\": [\"CUSA29861_00\", \"CUSA41267_00\", \"CUSA41268_00\", \"CUSA29860_00\"], \"name\": \"SokoBunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/zON4T7eM6vM8FkaKqoNbAELv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1912/OAVwSeB0G3splPZfupUGgOL1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/H6s66zHeHi1s0rZ9KLTBlXmE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/N70EDQcg0olrouTgVt9esqU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SokoBunny\", \"uk-UA\": \"SokoBunny\", \"de-DE\": \"SokoBunny\", \"en-US\": \"SokoBunny\", \"ko-KR\": \"SokoBunny\", \"pt-BR\": \"SokoBunny\", \"es-ES\": \"SokoBunny\", \"ar-AE\": \"SokoBunny\", \"no-NO\": \"SokoBunny\", \"fr-CA\": \"SokoBunny\", \"it-IT\": \"SokoBunny\", \"pl-PL\": \"SokoBunny\", \"ru-RU\": \"SokoBunny\", \"zh-Hans\": \"SokoBunny\", \"nl-NL\": \"SokoBunny\", \"pt-PT\": \"SokoBunny\", \"zh-Hant\": \"SokoBunny\", \"sv-SE\": \"SokoBunny\", \"da-DK\": \"SokoBunny\", \"tr-TR\": \"SokoBunny\", \"fr-FR\": \"SokoBunny\", \"en-GB\": \"SokoBunny\", \"es-419\": \"SokoBunny\", \"ja-JP\": \"SokoBunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/zON4T7eM6vM8FkaKqoNbAELv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1912/OAVwSeB0G3splPZfupUGgOL1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/H6s66zHeHi1s0rZ9KLTBlXmE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/N70EDQcg0olrouTgVt9esqU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T10:24:03.520000Z\", \"lastPlayedDateTime\": \"2023-05-14T12:16:51.270000Z\", \"playDuration\": \"PT1H52M28S\"}, {\"titleId\": \"PPSA07650_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T07:56:33.150000Z\", \"lastPlayedDateTime\": \"2023-05-14T10:14:15.340000Z\", \"playDuration\": \"PT1H18M26S\"}, {\"titleId\": \"PPSA07649_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T06:11:05.830000Z\", \"lastPlayedDateTime\": \"2023-05-14T07:56:21.900000Z\", \"playDuration\": \"PT1H44M56S\"}, {\"titleId\": \"PPSA10591_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T04:37:23.320000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:46:41.250000Z\", \"playDuration\": \"PT9M14S\"}, {\"titleId\": \"PPSA10590_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T04:20:30.060000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:30:41.660000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"CUSA37177_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T04:07:26.210000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:19:18.330000Z\", \"playDuration\": \"PT11M47S\"}, {\"titleId\": \"CUSA37178_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T03:45:05.360000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:07:24.400000Z\", \"playDuration\": \"PT16M59S\"}, {\"titleId\": \"CUSA35852_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T03:15:39.740000Z\", \"lastPlayedDateTime\": \"2023-05-14T03:21:55.760000Z\", \"playDuration\": \"PT6M12S\"}, {\"titleId\": \"CUSA35853_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T03:11:24.570000Z\", \"lastPlayedDateTime\": \"2023-05-14T03:15:07.510000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA35851_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:55:57.670000Z\", \"lastPlayedDateTime\": \"2023-05-14T03:11:09.800000Z\", \"playDuration\": \"PT15M\"}, {\"titleId\": \"CUSA35850_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:51:01.110000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:55:52.390000Z\", \"playDuration\": \"PT4M28S\"}, {\"titleId\": \"CUSA39326_00\", \"name\": \"Marsi's Adventures\", \"localizedName\": \"Marsi's Adventures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006857, \"titleIds\": [\"CUSA39326_00\", \"CUSA39325_00\", \"CUSA39323_00\", \"CUSA39324_00\"], \"name\": \"Marsi's Adventures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2215/VVynmGN1rBIqgttBnNr4bvFT.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/hsqjpuZeotk5VPgtjV9rT6uQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marsi's Adventures\", \"uk-UA\": \"Marsi's Adventures\", \"de-DE\": \"Marsi's Adventures\", \"en-US\": \"Marsi's Adventures\", \"ko-KR\": \"Marsi's Adventures\", \"pt-BR\": \"Marsi's Adventures\", \"es-ES\": \"Marsi's Adventures\", \"ar-AE\": \"Marsi's Adventures\", \"no-NO\": \"Marsi's Adventures\", \"fr-CA\": \"Marsi's Adventures\", \"it-IT\": \"Marsi's Adventures\", \"pl-PL\": \"Marsi's Adventures\", \"ru-RU\": \"Marsi's Adventures\", \"zh-Hans\": \"Marsi's Adventures\", \"nl-NL\": \"Marsi's Adventures\", \"pt-PT\": \"Marsi's Adventures\", \"zh-Hant\": \"Marsi's Adventures\", \"sv-SE\": \"Marsi's Adventures\", \"da-DK\": \"Marsi's Adventures\", \"tr-TR\": \"Marsi's Adventures\", \"fr-FR\": \"Marsi's Adventures\", \"en-GB\": \"Marsi's Adventures\", \"es-419\": \"Marsi's Adventures\", \"ja-JP\": \"Marsi's Adventures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2215/VVynmGN1rBIqgttBnNr4bvFT.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/hsqjpuZeotk5VPgtjV9rT6uQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:42:38.790000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:48:14.770000Z\", \"playDuration\": \"PT5M31S\"}, {\"titleId\": \"CUSA35917_00\", \"name\": \"B CANNON\", \"localizedName\": \"B CANNON\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005879, \"titleIds\": [\"CUSA35918_00\", \"CUSA35917_00\", \"CUSA35915_00\", \"CUSA35916_00\"], \"name\": \"B CANNON\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"B CANNON\", \"uk-UA\": \"B CANNON\", \"de-DE\": \"B CANNON\", \"en-US\": \"B CANNON\", \"ko-KR\": \"B CANNON\", \"pt-BR\": \"B CANNON\", \"es-ES\": \"B CANNON\", \"ar-AE\": \"B CANNON\", \"no-NO\": \"B CANNON\", \"fr-CA\": \"B CANNON\", \"it-IT\": \"B CANNON\", \"pl-PL\": \"B CANNON\", \"ru-RU\": \"B CANNON\", \"zh-Hans\": \"B CANNON\", \"nl-NL\": \"B CANNON\", \"pt-PT\": \"B CANNON\", \"zh-Hant\": \"B CANNON\", \"sv-SE\": \"B CANNON\", \"da-DK\": \"B CANNON\", \"tr-TR\": \"B CANNON\", \"fr-FR\": \"B CANNON\", \"en-GB\": \"B CANNON\", \"es-419\": \"B CANNON\", \"ja-JP\": \"B CANNON\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:33:10.160000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:42:27.040000Z\", \"playDuration\": \"PT5M35S\"}, {\"titleId\": \"CUSA35918_00\", \"name\": \"B CANNON\", \"localizedName\": \"B CANNON\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005879, \"titleIds\": [\"CUSA35918_00\", \"CUSA35917_00\", \"CUSA35915_00\", \"CUSA35916_00\"], \"name\": \"B CANNON\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"B CANNON\", \"uk-UA\": \"B CANNON\", \"de-DE\": \"B CANNON\", \"en-US\": \"B CANNON\", \"ko-KR\": \"B CANNON\", \"pt-BR\": \"B CANNON\", \"es-ES\": \"B CANNON\", \"ar-AE\": \"B CANNON\", \"no-NO\": \"B CANNON\", \"fr-CA\": \"B CANNON\", \"it-IT\": \"B CANNON\", \"pl-PL\": \"B CANNON\", \"ru-RU\": \"B CANNON\", \"zh-Hans\": \"B CANNON\", \"nl-NL\": \"B CANNON\", \"pt-PT\": \"B CANNON\", \"zh-Hant\": \"B CANNON\", \"sv-SE\": \"B CANNON\", \"da-DK\": \"B CANNON\", \"tr-TR\": \"B CANNON\", \"fr-FR\": \"B CANNON\", \"en-GB\": \"B CANNON\", \"es-419\": \"B CANNON\", \"ja-JP\": \"B CANNON\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:28:48.240000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:33:08.140000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA40734_00\", \"name\": \"Lila's Tale and the Hidden Forest\", \"localizedName\": \"Lila's Tale and the Hidden Forest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007342, \"titleIds\": [\"CUSA40734_00\", \"CUSA40735_00\"], \"name\": \"Lila's Tale and the Hidden Forest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lila's Tale and the Hidden Forest\", \"uk-UA\": \"Lila's Tale and the Hidden Forest\", \"de-DE\": \"Lila's Tale and the Hidden Forest\", \"en-US\": \"Lila's Tale and the Hidden Forest\", \"ko-KR\": \"Lila's Tale and the Hidden Forest\", \"pt-BR\": \"Lila's Tale and the Hidden Forest\", \"es-ES\": \"Lila's Tale and the Hidden Forest\", \"ar-AE\": \"Lila's Tale and the Hidden Forest\", \"no-NO\": \"Lila's Tale and the Hidden Forest\", \"fr-CA\": \"Lila's Tale and the Hidden Forest\", \"it-IT\": \"Lila's Tale and the Hidden Forest\", \"pl-PL\": \"Lila's Tale and the Hidden Forest\", \"ru-RU\": \"Lila's Tale and the Hidden Forest\", \"nl-NL\": \"Lila's Tale and the Hidden Forest\", \"pt-PT\": \"Lila's Tale and the Hidden Forest\", \"sv-SE\": \"Lila's Tale and the Hidden Forest\", \"da-DK\": \"Lila's Tale and the Hidden Forest\", \"tr-TR\": \"Lila's Tale and the Hidden Forest\", \"fr-FR\": \"Lila's Tale and the Hidden Forest\", \"en-GB\": \"Lila's Tale and the Hidden Forest\", \"es-419\": \"Lila's Tale and the Hidden Forest\", \"ja-JP\": \"Lila's Tale and the Hidden Forest\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T01:02:39.090000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:25:32.800000Z\", \"playDuration\": \"PT1H21M44S\"}, {\"titleId\": \"CUSA40735_00\", \"name\": \"Lila's Tale and the Hidden Forest\", \"localizedName\": \"Lila's Tale and the Hidden Forest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007342, \"titleIds\": [\"CUSA40734_00\", \"CUSA40735_00\"], \"name\": \"Lila's Tale and the Hidden Forest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lila's Tale and the Hidden Forest\", \"uk-UA\": \"Lila's Tale and the Hidden Forest\", \"de-DE\": \"Lila's Tale and the Hidden Forest\", \"en-US\": \"Lila's Tale and the Hidden Forest\", \"ko-KR\": \"Lila's Tale and the Hidden Forest\", \"pt-BR\": \"Lila's Tale and the Hidden Forest\", \"es-ES\": \"Lila's Tale and the Hidden Forest\", \"ar-AE\": \"Lila's Tale and the Hidden Forest\", \"no-NO\": \"Lila's Tale and the Hidden Forest\", \"fr-CA\": \"Lila's Tale and the Hidden Forest\", \"it-IT\": \"Lila's Tale and the Hidden Forest\", \"pl-PL\": \"Lila's Tale and the Hidden Forest\", \"ru-RU\": \"Lila's Tale and the Hidden Forest\", \"nl-NL\": \"Lila's Tale and the Hidden Forest\", \"pt-PT\": \"Lila's Tale and the Hidden Forest\", \"sv-SE\": \"Lila's Tale and the Hidden Forest\", \"da-DK\": \"Lila's Tale and the Hidden Forest\", \"tr-TR\": \"Lila's Tale and the Hidden Forest\", \"fr-FR\": \"Lila's Tale and the Hidden Forest\", \"en-GB\": \"Lila's Tale and the Hidden Forest\", \"es-419\": \"Lila's Tale and the Hidden Forest\", \"ja-JP\": \"Lila's Tale and the Hidden Forest\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-13T01:45:57.190000Z\", \"lastPlayedDateTime\": \"2023-05-13T17:27:19.660000Z\", \"playDuration\": \"PT3H16M23S\"}, {\"titleId\": \"CUSA35823_00\", \"name\": \"Alterity Experience\", \"localizedName\": \"Alterity Experience\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005289, \"titleIds\": [\"PPSA15727_00\", \"PPSA15728_00\", \"CUSA35823_00\", \"CUSA42716_00\", \"PPSA12399_00\", \"CUSA42715_00\", \"CUSA35824_00\", \"PPSA12398_00\"], \"name\": \"Alterity Experience\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alterity Experience\", \"uk-UA\": \"Alterity Experience\", \"de-DE\": \"Alterity Experience\", \"en-US\": \"Alterity Experience\", \"ko-KR\": \"Alterity Experience\", \"pt-BR\": \"Alterity Experience\", \"es-ES\": \"Alterity Experience\", \"ar-AE\": \"Alterity Experience\", \"no-NO\": \"Alterity Experience\", \"fr-CA\": \"Alterity Experience\", \"it-IT\": \"Alterity Experience\", \"pl-PL\": \"Alterity Experience\", \"ru-RU\": \"Alterity Experience\", \"zh-Hans\": \"Alterity Experience\", \"nl-NL\": \"Alterity Experience\", \"pt-PT\": \"Alterity Experience\", \"zh-Hant\": \"Alterity Experience\", \"sv-SE\": \"Alterity Experience\", \"da-DK\": \"Alterity Experience\", \"tr-TR\": \"Alterity Experience\", \"fr-FR\": \"Alterity Experience\", \"en-GB\": \"Alterity Experience\", \"es-419\": \"Alterity Experience\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c6\\u30a3\\u30ea\\u30c6\\u30a3\\u30a8\\u30af\\u30b9\\u30da\\u30ea\\u30a8\\u30f3\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T15:40:51.850000Z\", \"lastPlayedDateTime\": \"2023-05-12T16:16:52.140000Z\", \"playDuration\": \"PT35M57S\"}, {\"titleId\": \"CUSA35824_00\", \"name\": \"Alterity Experience\", \"localizedName\": \"Alterity Experience\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005289, \"titleIds\": [\"PPSA15727_00\", \"PPSA15728_00\", \"CUSA35823_00\", \"CUSA42716_00\", \"PPSA12399_00\", \"CUSA42715_00\", \"CUSA35824_00\", \"PPSA12398_00\"], \"name\": \"Alterity Experience\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alterity Experience\", \"uk-UA\": \"Alterity Experience\", \"de-DE\": \"Alterity Experience\", \"en-US\": \"Alterity Experience\", \"ko-KR\": \"Alterity Experience\", \"pt-BR\": \"Alterity Experience\", \"es-ES\": \"Alterity Experience\", \"ar-AE\": \"Alterity Experience\", \"no-NO\": \"Alterity Experience\", \"fr-CA\": \"Alterity Experience\", \"it-IT\": \"Alterity Experience\", \"pl-PL\": \"Alterity Experience\", \"ru-RU\": \"Alterity Experience\", \"zh-Hans\": \"Alterity Experience\", \"nl-NL\": \"Alterity Experience\", \"pt-PT\": \"Alterity Experience\", \"zh-Hant\": \"Alterity Experience\", \"sv-SE\": \"Alterity Experience\", \"da-DK\": \"Alterity Experience\", \"tr-TR\": \"Alterity Experience\", \"fr-FR\": \"Alterity Experience\", \"en-GB\": \"Alterity Experience\", \"es-419\": \"Alterity Experience\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c6\\u30a3\\u30ea\\u30c6\\u30a3\\u30a8\\u30af\\u30b9\\u30da\\u30ea\\u30a8\\u30f3\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T15:03:21.730000Z\", \"lastPlayedDateTime\": \"2023-05-12T15:40:44.560000Z\", \"playDuration\": \"PT37M12S\"}, {\"titleId\": \"PPSA13306_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T14:29:23.000000Z\", \"lastPlayedDateTime\": \"2023-05-12T14:52:08.470000Z\", \"playDuration\": \"PT22M38S\"}, {\"titleId\": \"PPSA13305_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T14:00:05.200000Z\", \"lastPlayedDateTime\": \"2023-05-12T14:28:10.950000Z\", \"playDuration\": \"PT27M57S\"}, {\"titleId\": \"PPSA13304_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T13:30:57.190000Z\", \"lastPlayedDateTime\": \"2023-05-12T13:58:03.840000Z\", \"playDuration\": \"PT27M1S\"}, {\"titleId\": \"PPSA13303_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T12:55:44.000000Z\", \"lastPlayedDateTime\": \"2023-05-12T13:24:29.540000Z\", \"playDuration\": \"PT28M36S\"}, {\"titleId\": \"CUSA40274_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T12:24:35.690000Z\", \"lastPlayedDateTime\": \"2023-05-12T12:50:21.900000Z\", \"playDuration\": \"PT25M42S\"}, {\"titleId\": \"CUSA40273_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T11:54:13.600000Z\", \"lastPlayedDateTime\": \"2023-05-12T12:24:33.780000Z\", \"playDuration\": \"PT28M50S\"}, {\"titleId\": \"CUSA40272_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T11:14:01.910000Z\", \"lastPlayedDateTime\": \"2023-05-12T11:50:50.620000Z\", \"playDuration\": \"PT36M43S\"}, {\"titleId\": \"CUSA40275_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T10:09:52.800000Z\", \"lastPlayedDateTime\": \"2023-05-12T11:10:58.040000Z\", \"playDuration\": \"PT1H1M1S\"}, {\"titleId\": \"PPSA08301_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T08:40:03.330000Z\", \"lastPlayedDateTime\": \"2023-05-12T09:00:35.120000Z\", \"playDuration\": \"PT20M28S\"}, {\"titleId\": \"PPSA08300_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T08:19:24.290000Z\", \"lastPlayedDateTime\": \"2023-05-12T08:39:54.170000Z\", \"playDuration\": \"PT20M27S\"}, {\"titleId\": \"CUSA34364_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T07:57:35.980000Z\", \"lastPlayedDateTime\": \"2023-05-12T08:19:20.980000Z\", \"playDuration\": \"PT21M30S\"}, {\"titleId\": \"CUSA34363_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T07:30:30.780000Z\", \"lastPlayedDateTime\": \"2023-05-12T07:54:15.300000Z\", \"playDuration\": \"PT23M40S\"}, {\"titleId\": \"PPSA13869_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T06:39:16.920000Z\", \"lastPlayedDateTime\": \"2023-05-12T07:29:47.640000Z\", \"playDuration\": \"PT44M51S\"}, {\"titleId\": \"PPSA13868_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T05:57:16.330000Z\", \"lastPlayedDateTime\": \"2023-05-12T06:39:13.380000Z\", \"playDuration\": \"PT41M48S\"}, {\"titleId\": \"CUSA40857_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T05:14:23.480000Z\", \"lastPlayedDateTime\": \"2023-05-12T05:55:29.230000Z\", \"playDuration\": \"PT40M54S\"}, {\"titleId\": \"CUSA40856_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:22:26.960000Z\", \"lastPlayedDateTime\": \"2023-05-12T05:14:19.620000Z\", \"playDuration\": \"PT50M7S\"}, {\"titleId\": \"PPSA16449_00\", \"name\": \"Dreaming Canvas\", \"localizedName\": \"Dreaming Canvas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234601, \"titleIds\": [\"PPSA16449_00\", \"CUSA16583_00\", \"PPSA16448_00\", \"CUSA17513_00\", \"CUSA16612_00\", \"CUSA17557_00\"], \"name\": \"Dreaming Canvas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/45cf68eb746dfbaea56b36bce65990d828765d15918b6251.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/1fec6fce792559ed350af2b4f578058ce2ce66cb82f29f43.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/2efc802b72844fd1555d535ca95b785a261738ffb2beb3fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/024bc806026641fb52b8f24c556276012dac39576283e479.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/0649a336d7d4daf17f4dc1237fc7620a5c2e2c2698c1feb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/44ab372c5576f4550be920c64291b9878405f01f186e06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d6bfba8a0efc4cdcdd6f1098e7dc5856635cc87aa9760d53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d9f748e9d315c5b2682668f576478b31f1c7ced90ee971f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/73bbdc0f958e66ef6ffd13c9a79cc234c2ba632de4b46fba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/554da1019ae2691523e543962c1b5aaada460769a998ecd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/b3cedd4d66d4d5c1f9b258358910b70882b2d6cb9da62221.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/4788ae093d277e50380f079b464e88702eb68799c4cb3d91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dreaming Canvas\", \"uk-UA\": \"Dreaming Canvas\", \"de-DE\": \"Dreaming Canvas\", \"en-US\": \"Dreaming Canvas\", \"ko-KR\": \"Dreaming Canvas\", \"pt-BR\": \"Dreaming Canvas\", \"es-ES\": \"Dreaming Canvas\", \"ar-AE\": \"Dreaming Canvas\", \"no-NO\": \"Dreaming Canvas\", \"fr-CA\": \"Dreaming Canvas\", \"it-IT\": \"Dreaming Canvas\", \"pl-PL\": \"Dreaming Canvas\", \"ru-RU\": \"Dreaming Canvas\", \"zh-Hans\": \"Dreaming Canvas\", \"nl-NL\": \"Dreaming Canvas\", \"pt-PT\": \"Dreaming Canvas\", \"zh-Hant\": \"Dreaming Canvas\", \"sv-SE\": \"Dreaming Canvas\", \"da-DK\": \"Dreaming Canvas\", \"tr-TR\": \"Dreaming Canvas\", \"fr-FR\": \"Dreaming Canvas\", \"en-GB\": \"Dreaming Canvas\", \"es-419\": \"Dreaming Canvas\", \"ja-JP\": \"Dreaming Canvas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/45cf68eb746dfbaea56b36bce65990d828765d15918b6251.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/1fec6fce792559ed350af2b4f578058ce2ce66cb82f29f43.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/2efc802b72844fd1555d535ca95b785a261738ffb2beb3fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/024bc806026641fb52b8f24c556276012dac39576283e479.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/0649a336d7d4daf17f4dc1237fc7620a5c2e2c2698c1feb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/44ab372c5576f4550be920c64291b9878405f01f186e06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d6bfba8a0efc4cdcdd6f1098e7dc5856635cc87aa9760d53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d9f748e9d315c5b2682668f576478b31f1c7ced90ee971f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/73bbdc0f958e66ef6ffd13c9a79cc234c2ba632de4b46fba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/554da1019ae2691523e543962c1b5aaada460769a998ecd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/b3cedd4d66d4d5c1f9b258358910b70882b2d6cb9da62221.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/4788ae093d277e50380f079b464e88702eb68799c4cb3d91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:08:23.000000Z\", \"lastPlayedDateTime\": \"2023-05-12T04:21:10.010000Z\", \"playDuration\": \"PT12M42S\"}, {\"titleId\": \"PPSA15989_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:04:51.660000Z\", \"lastPlayedDateTime\": \"2023-05-12T04:06:22.780000Z\", \"playDuration\": \"PT1M28S\"}, {\"titleId\": \"CUSA42914_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:02:29.220000Z\", \"lastPlayedDateTime\": \"2023-05-12T04:04:47.690000Z\", \"playDuration\": \"PT2M6S\"}, {\"titleId\": \"PPSA15990_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T03:09:57.910000Z\", \"lastPlayedDateTime\": \"2023-05-12T03:11:21.360000Z\", \"playDuration\": \"PT1M20S\"}, {\"titleId\": \"PPSA15988_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T03:07:22.880000Z\", \"lastPlayedDateTime\": \"2023-05-12T03:09:55.250000Z\", \"playDuration\": \"PT2M15S\"}, {\"titleId\": \"CUSA42910_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T03:03:18.850000Z\", \"lastPlayedDateTime\": \"2023-05-12T03:07:04.410000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"PPSA14496_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T02:43:13.210000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:56:19.020000Z\", \"playDuration\": \"PT13M2S\"}, {\"titleId\": \"PPSA14497_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T02:22:27.940000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:43:10.010000Z\", \"playDuration\": \"PT20M35S\"}, {\"titleId\": \"CUSA41469_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T02:06:25.540000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:22:11.490000Z\", \"playDuration\": \"PT15M34S\"}, {\"titleId\": \"CUSA41468_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:32:53.770000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:05:46.530000Z\", \"playDuration\": \"PT32M30S\"}, {\"titleId\": \"PPSA12017_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:29:07.920000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:32:50.620000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"PPSA12016_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:26:47.080000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:29:05.580000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA38890_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:23:46.740000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:26:44.940000Z\", \"playDuration\": \"PT2M28S\"}, {\"titleId\": \"CUSA38891_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:20:12.980000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:23:41.580000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA43480_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:18:06.210000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:19:40.280000Z\", \"playDuration\": \"PT1M30S\"}, {\"titleId\": \"CUSA43479_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:14:41.810000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:18:03.180000Z\", \"playDuration\": \"PT3M14S\"}, {\"titleId\": \"CUSA43478_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:10:58.010000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:14:38.750000Z\", \"playDuration\": \"PT3M18S\"}, {\"titleId\": \"CUSA43477_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:03:25.640000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:10:54.730000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"PPSA15510_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T16:12:24.000000Z\", \"lastPlayedDateTime\": \"2023-05-11T16:19:26.760000Z\", \"playDuration\": \"PT6M59S\"}, {\"titleId\": \"PPSA15509_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T16:05:40.350000Z\", \"lastPlayedDateTime\": \"2023-05-11T16:12:22.960000Z\", \"playDuration\": \"PT6M22S\"}, {\"titleId\": \"CUSA42514_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:58:00.760000Z\", \"lastPlayedDateTime\": \"2023-05-11T16:05:38.110000Z\", \"playDuration\": \"PT7M23S\"}], \"nextOffset\": 1000, \"previousOffset\": 799, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"CUSA28116_00\", \"name\": \"Infini\", \"localizedName\": \"Infini\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10002919, \"titleIds\": [\"CUSA28116_00\", \"PPSA04256_00\", \"CUSA28117_00\", \"PPSA04247_00\", \"CUSA28115_00\"], \"name\": \"Infini\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Infini\", \"uk-UA\": \"Infini\", \"de-DE\": \"Infini\", \"en-US\": \"Infini\", \"pt-BR\": \"Infini\", \"es-ES\": \"Infini\", \"ar-AE\": \"Infini\", \"no-NO\": \"Infini\", \"fr-CA\": \"Infini\", \"it-IT\": \"Infini\", \"pl-PL\": \"Infini\", \"ru-RU\": \"Infini\", \"nl-NL\": \"Infini\", \"pt-PT\": \"Infini\", \"sv-SE\": \"Infini\", \"da-DK\": \"Infini\", \"tr-TR\": \"Infini\", \"fr-FR\": \"Infini\", \"en-GB\": \"Infini\", \"es-419\": \"Infini\", \"ja-JP\": \"\\u30a4\\u30f3\\u30d5\\u30a3\\u30cb\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/0da8c72d9c1bfcca4e9b5c39385c5c2c2e8c8dae98b30e60.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1664205670f40c74bbfdf5d5e0372abe436b5f43a9796522.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/1db56a10eb18f1c9f5df6d73ad41876cf32959b7d32e514e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/4b0b4ce109d95cb9df77a71b665129b5c4d2f9c7cb2caa2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/80e961a7b6f497a01cf947b645e382b12f909b8a034ba80e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/857f2d371afeb52570c5ee93a78e0c4ab1ad8975c3a419b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/8cd6a12dfa7310e155c058e4127d09345cfff67e8a9121e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/abfd066ac44714c8ac2923c7930628a380f35aeacf131a23.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/cabc312525eb54649d6fbd0ae0f3c1d19ffc1ada6beecf61.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ceabe2a8daa136fbe5832b33cee1e696171e3a30906b6cde.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/ed6b23bcc28f857407876bbd9fdf0896cba27821dd9be5a8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1304/4e199a21227ce04fcf03dde08c43fe8054427ef5b559ed09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2504/7a948ab2ec5114b98130ef6bde2671bd0b5a059f92afac35.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T07:09:47.550000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:35:57.670000Z\", \"playDuration\": \"PT19M21S\"}, {\"titleId\": \"PPSA08128_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T05:27:11.210000Z\", \"lastPlayedDateTime\": \"2023-05-28T07:05:03.000000Z\", \"playDuration\": \"PT1H16M5S\"}, {\"titleId\": \"PPSA08127_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T04:11:15.910000Z\", \"lastPlayedDateTime\": \"2023-05-28T05:20:13.730000Z\", \"playDuration\": \"PT1H8M6S\"}, {\"titleId\": \"PPSA06638_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-28T02:08:33.350000Z\", \"lastPlayedDateTime\": \"2023-05-28T04:10:40.900000Z\", \"playDuration\": \"PT1H11M27S\"}, {\"titleId\": \"PPSA06639_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T23:49:38.510000Z\", \"lastPlayedDateTime\": \"2023-05-28T02:08:30.880000Z\", \"playDuration\": \"PT1H23M14S\"}, {\"titleId\": \"CUSA32377_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T15:28:06.790000Z\", \"lastPlayedDateTime\": \"2023-05-27T17:10:51.030000Z\", \"playDuration\": \"PT1H42M20S\"}, {\"titleId\": \"CUSA32376_00\", \"name\": \"Witchcrafty\", \"localizedName\": \"Witchcrafty\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004565, \"titleIds\": [\"CUSA32377_00\", \"PPSA06639_00\", \"CUSA32376_00\", \"PPSA08127_00\", \"PPSA08128_00\", \"PPSA06638_00\"], \"name\": \"Witchcrafty\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Witchcrafty\", \"uk-UA\": \"Witchcrafty\", \"de-DE\": \"Witchcrafty\", \"en-US\": \"Witchcrafty\", \"ko-KR\": \"Witchcrafty\", \"pt-BR\": \"Witchcrafty\", \"es-ES\": \"Witchcrafty\", \"ar-AE\": \"Witchcrafty\", \"no-NO\": \"Witchcrafty\", \"fr-CA\": \"Witchcrafty\", \"it-IT\": \"Witchcrafty\", \"pl-PL\": \"Witchcrafty\", \"ru-RU\": \"Witchcrafty\", \"zh-Hans\": \"Witchcrafty\", \"nl-NL\": \"Witchcrafty\", \"pt-PT\": \"Witchcrafty\", \"zh-Hant\": \"Witchcrafty\", \"sv-SE\": \"Witchcrafty\", \"da-DK\": \"Witchcrafty\", \"tr-TR\": \"Witchcrafty\", \"fr-FR\": \"Witchcrafty\", \"en-GB\": \"Witchcrafty\", \"es-419\": \"Witchcrafty\", \"ja-JP\": \"Witchcrafty\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/q0S4fQb5PdYxfnEhuIfxBD94.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/xkvZWyuJHvOMbAJfjQc732Hc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PUjSp14lsuUjcvkUbfIXI4yw.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/KRljxfUl3wQ5ymhSTaIxgTCL.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XI1NzzFaQhlwzHRfOZRDHSCy.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a85kd5uPQkGOmjcQaCerO74E.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gVMVqk4l2hBTHzaN2J4nTbtF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/ggcIUyETJXq901pYtaAd6YQB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/PhlkIQBLhtMeBd6SC644rowX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/XFbvKUMoOe8YTLtf1wP5VoOR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/a4acR7c1y5OoPnfipupyOTON.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/gEHv5t6kvSfWaphw6Md0b7qi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/8TttmFsi67kNnrAsXYv6mGR8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/UCX09aVFUbyq8CITPtqb9IKV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/QzqjthzCCKUrQxhWhHhPvxlq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/Z1OviR4fuLs5V5cWOJjuWYiB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/1412/R579g98lXNWcCT94cmXu4fpz.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T11:12:26.510000Z\", \"lastPlayedDateTime\": \"2023-05-27T15:25:55.290000Z\", \"playDuration\": \"PT4H11M18S\"}, {\"titleId\": \"PPSA07008_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T08:18:42.470000Z\", \"lastPlayedDateTime\": \"2023-05-27T08:54:25.450000Z\", \"playDuration\": \"PT35M17S\"}, {\"titleId\": \"PPSA07009_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T07:37:07.790000Z\", \"lastPlayedDateTime\": \"2023-05-27T08:18:40.520000Z\", \"playDuration\": \"PT40M39S\"}, {\"titleId\": \"CUSA32863_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T06:56:02.180000Z\", \"lastPlayedDateTime\": \"2023-05-27T07:36:21.680000Z\", \"playDuration\": \"PT40M13S\"}, {\"titleId\": \"CUSA32864_00\", \"name\": \"TORINTO\", \"localizedName\": \"TORINTO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004752, \"titleIds\": [\"CUSA32865_00\", \"CUSA32863_00\", \"PPSA07009_00\", \"CUSA32864_00\", \"PPSA07008_00\"], \"name\": \"TORINTO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"TORINTO\", \"uk-UA\": \"TORINTO\", \"de-DE\": \"TORINTO\", \"en-US\": \"TORINTO\", \"ko-KR\": \"TORINTO\", \"pt-BR\": \"TORINTO\", \"es-ES\": \"TORINTO\", \"ar-AE\": \"TORINTO\", \"no-NO\": \"TORINTO\", \"fr-CA\": \"TORINTO\", \"it-IT\": \"TORINTO\", \"pl-PL\": \"TORINTO\", \"ru-RU\": \"TORINTO\", \"zh-Hans\": \"TORINTO\", \"nl-NL\": \"TORINTO\", \"pt-PT\": \"TORINTO\", \"zh-Hant\": \"TORINTO\", \"sv-SE\": \"TORINTO\", \"da-DK\": \"TORINTO\", \"tr-TR\": \"TORINTO\", \"fr-FR\": \"TORINTO\", \"en-GB\": \"TORINTO\", \"es-419\": \"TORINTO\", \"ja-JP\": \"TORINTO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f93f9bd3071dabacf78a441086bbb2ca0d8c505ba828fc8a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/9ee92c217a3cd953043a4bd96ae4db31e6538a386c6e40ee.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/e9069446ec2747835b38a81ca18a5101a7db4a111a5cf973.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/3e0a4844c44749b0b27e6cc24795addf09944b74de503963.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ff51a085454aba4eeef89412ed27da38d6d690652d0e645b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/6734db4180165047bb8ea5501a3c0e5bb5bb349b461babb3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/d9b3f2f638487c133054448afbdd04e9bbe024e1755c1cf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/aa91dec5b597f442542f343a7d95f83d27ee0084caee2f40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/ce54ef3ad0722db0fe38adceb44cae5bf59db49b8e699cf0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/b1bf0828ecfce001d4dc5cb288ea7a0630af52a0d048b78b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/25dcf69a324564f84d6447433ad48424331a39f0cba2434c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/48f78ca7d526f5509a5cbee9f348ffa2a94925e3896c9bca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/f76f7a26e8d0ea432b67596202001756d556fdca95da3800.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/dac9c2f9da9429592b2e39daaff498a57b67f6c80cf2d9ea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/33ba743ce4b837aa5c7a7ba5290cbc364d7e66bed0f530cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2506/478deffcda998e10f7b2b872097d43407b0ca1d4565c9c5b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2408/e83ebb744a4c989d24916bc8f1a861e0ad0e9af43a0c8cf7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-27T05:49:31.380000Z\", \"lastPlayedDateTime\": \"2023-05-27T06:56:00.120000Z\", \"playDuration\": \"PT51M56S\"}, {\"titleId\": \"PPSA12601_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T15:23:36.080000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:29:45.030000Z\", \"playDuration\": \"PT6M5S\"}, {\"titleId\": \"PPSA12602_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T15:17:25.450000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:23:34.030000Z\", \"playDuration\": \"PT6M1S\"}, {\"titleId\": \"CUSA39558_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T15:06:10.670000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:17:23.400000Z\", \"playDuration\": \"PT11M\"}, {\"titleId\": \"CUSA39559_00\", \"name\": \"The Closing Walls\", \"localizedName\": \"The Closing Walls\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006948, \"titleIds\": [\"PPSA12599_00\", \"PPSA12600_00\", \"PPSA12602_00\", \"PPSA12601_00\", \"CUSA39557_00\", \"CUSA39556_00\", \"CUSA39558_00\", \"CUSA39559_00\"], \"name\": \"The Closing Walls\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Closing Walls\", \"uk-UA\": \"The Closing Walls\", \"de-DE\": \"The Closing Walls\", \"en-US\": \"The Closing Walls\", \"ko-KR\": \"The Closing Walls\", \"pt-BR\": \"The Closing Walls\", \"es-ES\": \"The Closing Walls\", \"ar-AE\": \"The Closing Walls\", \"no-NO\": \"The Closing Walls\", \"fr-CA\": \"The Closing Walls\", \"it-IT\": \"The Closing Walls\", \"pl-PL\": \"The Closing Walls\", \"ru-RU\": \"The Closing Walls\", \"zh-Hans\": \"The Closing Walls\", \"nl-NL\": \"The Closing Walls\", \"pt-PT\": \"The Closing Walls\", \"zh-Hant\": \"The Closing Walls\", \"sv-SE\": \"The Closing Walls\", \"da-DK\": \"The Closing Walls\", \"tr-TR\": \"The Closing Walls\", \"fr-FR\": \"The Closing Walls\", \"en-GB\": \"The Closing Walls\", \"es-419\": \"The Closing Walls\", \"ja-JP\": \"The Closing Walls\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/X7IO8ITDMwMnt0FP8cQQmrZv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/tOZAFVjgV05UoSo3pzU3NFbd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/ZFrwcHseFUq6NcXlx6CdF5kV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/jwJnlmCWYuzE8wvt4mE02gEn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/XnqMD4PsAnsDNYHWEF9nJh6D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/DVRKhlCfrkAsLtFPf59gcZA3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/df5dbc2594726e06a3c1949ceb5e61d39effa64d382364ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/0eb99c8213be6181931464cafbe1dec94d0c85b72f313365.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/acd46674a3adff6f6ee216da6d43eb36d4a9c54b35956ef9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/6471ad10090a238cc05c948539135a85f12e24b5bb25a8d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0913/775909835e7c81b4f8d67a289fe254100de3dcc540f52012.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2011/rZbbBrFBdOhzj47hlNqjqHmS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T14:58:50.790000Z\", \"lastPlayedDateTime\": \"2023-05-26T15:06:08.640000Z\", \"playDuration\": \"PT7M10S\"}, {\"titleId\": \"PPSA16651_00\", \"name\": \"MEMORY LANE\", \"localizedName\": \"MEMORY LANE\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10000870, \"titleIds\": [\"PPSA19413_00\", \"CUSA20326_00\", \"CUSA20343_00\", \"PPSA16650_00\", \"CUSA27865_00\", \"PPSA16651_00\", \"CUSA27864_00\", \"PPSA19412_00\"], \"name\": \"MEMORY LANE\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/d9cc5877b4f578fdafda429d80107aa7da4052b9ce346780.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/7d5a49dbb5744d8c0b49961d460152b5d16ed3fcb5ecc90a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2306/7TdBaPoROJcF4Hz0cOrwQq2D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/dd885c43a891f74d3be585593237592f36dc54fd6b8bfb72.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/2205/h5978j1AwfpVh8IcIV5mLIVa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/29dffc2d21180d1e4854a239246e8dd67aaff6a801909e85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/D79WFCgBFkev67pLYSnMn6bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/5E7tyy7tpdjKl6Isq0v8GNiu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/9Ay4vANoKPS4cj2SPf6Loesl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/br9xUPeS1Zx7I204BE2ESypL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/uXwtutlswuIlp1odYppxVojc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/UXdiqTKPDAOGNwK7bDSoVp2x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"FAMILY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Memory Lane\", \"uk-UA\": \"Memory Lane\", \"de-DE\": \"Memory Lane\", \"en-US\": \"MEMORY LANE\", \"ko-KR\": \"MEMORY LANE\", \"pt-BR\": \"MEMORY LANE\", \"es-ES\": \"MEMORY LANE\", \"ar-AE\": \"Memory Lane\", \"no-NO\": \"Memory Lane\", \"fr-CA\": \"MEMORY LANE\", \"it-IT\": \"Memory Lane\", \"pl-PL\": \"Memory Lane\", \"ru-RU\": \"Memory Lane\", \"zh-Hans\": \"MEMORY LANE\", \"nl-NL\": \"Memory Lane\", \"pt-PT\": \"Memory Lane\", \"zh-Hant\": \"MEMORY LANE\", \"sv-SE\": \"Memory Lane\", \"da-DK\": \"Memory Lane\", \"tr-TR\": \"Memory Lane\", \"fr-FR\": \"Memory Lane\", \"en-GB\": \"Memory Lane\", \"es-419\": \"Memory Lane\", \"ja-JP\": \"MEMORY LANE\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/d9cc5877b4f578fdafda429d80107aa7da4052b9ce346780.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/7d5a49dbb5744d8c0b49961d460152b5d16ed3fcb5ecc90a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2306/7TdBaPoROJcF4Hz0cOrwQq2D.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/dd885c43a891f74d3be585593237592f36dc54fd6b8bfb72.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/2205/h5978j1AwfpVh8IcIV5mLIVa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1713/29dffc2d21180d1e4854a239246e8dd67aaff6a801909e85.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/D79WFCgBFkev67pLYSnMn6bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/5E7tyy7tpdjKl6Isq0v8GNiu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/9Ay4vANoKPS4cj2SPf6Loesl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/br9xUPeS1Zx7I204BE2ESypL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/uXwtutlswuIlp1odYppxVojc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202007/0210/UXdiqTKPDAOGNwK7bDSoVp2x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/1918/rUWa39uxLWfMqdtvbRGIxdJF.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T14:49:53.950000Z\", \"lastPlayedDateTime\": \"2023-05-26T14:57:27.710000Z\", \"playDuration\": \"PT7M10S\"}, {\"titleId\": \"CUSA43154_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:03:21.170000Z\", \"lastPlayedDateTime\": \"2023-05-26T14:49:50.900000Z\", \"playDuration\": \"PT14M21S\"}, {\"titleId\": \"PPSA03738_00\", \"name\": \"The Light in the Darkness\", \"localizedName\": \"The Light in the Darkness\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10002497, \"titleIds\": [\"PPSA03738_00\", \"CUSA45366_00\", \"CUSA45034_00\", \"PPSA03085_00\", \"CUSA29814_00\"], \"name\": \"The Light in the Darkness\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"EDUCATIONAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Light in the Darkness\", \"uk-UA\": \"The Light in the Darkness\", \"de-DE\": \"The Light in the Darkness\", \"en-US\": \"The Light in the Darkness\", \"ko-KR\": \"The Light in the Darkness\", \"pt-BR\": \"The Light in the Darkness\", \"es-ES\": \"The Light in the Darkness\", \"ar-AE\": \"The Light in the Darkness\", \"no-NO\": \"The Light in the Darkness\", \"fr-CA\": \"The Light in the Darkness\", \"it-IT\": \"The Light in the Darkness\", \"pl-PL\": \"The Light in the Darkness\", \"ru-RU\": \"The Light in the Darkness\", \"zh-Hans\": \"The Light in the Darkness\", \"nl-NL\": \"The Light in the Darkness\", \"pt-PT\": \"The Light in the Darkness\", \"zh-Hant\": \"The Light in the Darkness\", \"sv-SE\": \"The Light in the Darkness\", \"da-DK\": \"The Light in the Darkness\", \"tr-TR\": \"The Light in the Darkness\", \"fr-FR\": \"The Light in the Darkness\", \"en-GB\": \"The Light in the Darkness\", \"es-419\": \"The Light in the Darkness\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/45e82165080ceaa43a2dba13875d85205d97e0e8f8b83178.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/de23a4435313ceb60312b21b859ac520daf7b6d932f0a761.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/fa5718fc2f05e7e6902d471fa50c8b48cc8c124697d1ce12.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/237f4fe70466c30ee571600e1184f76e86371c54a5464ec1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/56235bd8e1fcd0c8b1211049f9b1b6329db5f5736b65d035.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3a86d9226f5f1fe368b0f3dd57a4c6cd3aa83aa2a8a1db9e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/3b5f419738c279730d84fe94756f933c0f93a11d79dfebf5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/217e01d4d06d1267439e58f55fd412f75cf3069bb182404b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/bf251a76135e4ae80b1bb4586bd6d7fa1c2119e32de47404.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/a6f7cd5514f8739f744e385f5de9bc6ee959c50825059070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/c9319ba063a500f0c5a2bf562dda0ff2b098774b353928e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1407/6f3656aa77854b5042cc07f5e79140198732e53a261c76c8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/3415af7ae4d289f18a55ae5bf390bc9ee9096181ce525920.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1507/c3785b3f4802161b1d6abff3d7467c12796a04a3affb3199.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:50:56.360000Z\", \"lastPlayedDateTime\": \"2023-05-26T14:48:36.970000Z\", \"playDuration\": \"PT1H6M32S\"}, {\"titleId\": \"PPSA16759_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:49:36.000000Z\", \"lastPlayedDateTime\": \"2023-05-26T13:31:32.830000Z\", \"playDuration\": \"PT41M22S\"}, {\"titleId\": \"PPSA16761_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:50:17.460000Z\", \"lastPlayedDateTime\": \"2023-05-26T12:45:32.550000Z\", \"playDuration\": \"PT41M8S\"}, {\"titleId\": \"PPSA16762_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:49:09.400000Z\", \"lastPlayedDateTime\": \"2023-05-26T12:00:51.400000Z\", \"playDuration\": \"PT41M57S\"}, {\"titleId\": \"PPSA16760_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:48:42.720000Z\", \"lastPlayedDateTime\": \"2023-05-26T11:06:21.480000Z\", \"playDuration\": \"PT43M\"}, {\"titleId\": \"PPSA16202_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:39:07.600000Z\", \"lastPlayedDateTime\": \"2023-05-26T08:46:30.450000Z\", \"playDuration\": \"PT7M20S\"}, {\"titleId\": \"PPSA16203_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:31:48.420000Z\", \"lastPlayedDateTime\": \"2023-05-26T08:39:05.670000Z\", \"playDuration\": \"PT7M\"}, {\"titleId\": \"CUSA43153_00\", \"name\": \"Waifu Space Conquest\", \"localizedName\": \"Waifu Space Conquest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008288, \"titleIds\": [\"CUSA43153_00\", \"CUSA43154_00\", \"PPSA16203_00\", \"PPSA16202_00\"], \"name\": \"Waifu Space Conquest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ARCADE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Waifu Space Conquest\", \"uk-UA\": \"Waifu Space Conquest\", \"de-DE\": \"Waifu Space Conquest\", \"en-US\": \"Waifu Space Conquest\", \"pt-BR\": \"Waifu Space Conquest\", \"es-ES\": \"Waifu Space Conquest\", \"ar-AE\": \"Waifu Space Conquest\", \"no-NO\": \"Waifu Space Conquest\", \"fr-CA\": \"Waifu Space Conquest\", \"it-IT\": \"Waifu Space Conquest\", \"pl-PL\": \"Waifu Space Conquest\", \"ru-RU\": \"Waifu Space Conquest\", \"nl-NL\": \"Waifu Space Conquest\", \"pt-PT\": \"Waifu Space Conquest\", \"sv-SE\": \"Waifu Space Conquest\", \"da-DK\": \"Waifu Space Conquest\", \"tr-TR\": \"Waifu Space Conquest\", \"fr-FR\": \"Waifu Space Conquest\", \"en-GB\": \"Waifu Space Conquest\", \"es-419\": \"Waifu Space Conquest\", \"ja-JP\": \"\\u30ef\\u30a4\\u30d5\\u306e\\u5b87\\u5b99\\u5f81\\u670d\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6cda7264ac925157606ed611a8dedc832e40978556f74ae3.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/7bfb2aa847995ec8b83f7be1369e1ddedf9da8f360046543.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/d4d905c3b6fa185566d5ea81782f7581e27ecdc4283efba6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/55b846f1302f355cda30be08634c62b68ac13b5db70c2809.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f587da7b4df13ee6155db112af4f25c93bd595e9ce0659c7.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/6ba19b2d6bf770001bca0f2c8504efa4a0d355c1d6789ca2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/f4c199fd6a5f34b238fb44359cc234c9d4386c01ed4dc393.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/3e2168d03288c7acc24d8d128de7673e9c5629281697c4e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/ce2b25bc98ebea3b4ad52edb9d2d31a16b81267ecf3a987d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/63a315a2b9c340252a9a864eb394eddad1b5e028f326e401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/849f28df1db67caf87e33937cf6e4111d1ff384d82d95d62.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0817/25e58840aa9cd0be661d7f32ec11cffbd0d220f7d103c273.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0815/63a75c35287a47a142c37a124eba815c63a7edfd316e4e8e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T08:21:27.880000Z\", \"lastPlayedDateTime\": \"2023-05-26T08:31:46.390000Z\", \"playDuration\": \"PT8M6S\"}, {\"titleId\": \"PPSA09001_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T05:57:41.240000Z\", \"lastPlayedDateTime\": \"2023-05-26T07:13:18.500000Z\", \"playDuration\": \"PT1H13M52S\"}, {\"titleId\": \"PPSA09000_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-26T04:18:48.840000Z\", \"lastPlayedDateTime\": \"2023-05-26T05:54:49.670000Z\", \"playDuration\": \"PT1H35M57S\"}, {\"titleId\": \"CUSA35254_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T08:04:27.990000Z\", \"lastPlayedDateTime\": \"2023-05-26T04:18:01.980000Z\", \"playDuration\": \"PT1H29M54S\"}, {\"titleId\": \"CUSA35253_00\", \"name\": \"Sofiya and the Ancient Clan\", \"localizedName\": \"Sofiya and the Ancient Clan\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005655, \"titleIds\": [\"CUSA35253_00\", \"CUSA35254_00\", \"PPSA09000_00\", \"PPSA09001_00\"], \"name\": \"Sofiya and the Ancient Clan\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sofiya and the Ancient Clan\", \"uk-UA\": \"Sofiya and the Ancient Clan\", \"de-DE\": \"Sofiya and the Ancient Clan\", \"en-US\": \"Sofiya and the Ancient Clan\", \"ko-KR\": \"Sofiya and the Ancient Clan\", \"pt-BR\": \"Sofiya and the Ancient Clan\", \"es-ES\": \"Sofiya and the Ancient Clan\", \"ar-AE\": \"Sofiya and the Ancient Clan\", \"no-NO\": \"Sofiya and the Ancient Clan\", \"fr-CA\": \"Sofiya and the Ancient Clan\", \"it-IT\": \"Sofiya and the Ancient Clan\", \"pl-PL\": \"Sofiya and the Ancient Clan\", \"ru-RU\": \"Sofiya and the Ancient Clan\", \"zh-Hans\": \"Sofiya and the Ancient Clan\", \"nl-NL\": \"Sofiya and the Ancient Clan\", \"pt-PT\": \"Sofiya and the Ancient Clan\", \"zh-Hant\": \"Sofiya and the Ancient Clan\", \"sv-SE\": \"Sofiya and the Ancient Clan\", \"da-DK\": \"Sofiya and the Ancient Clan\", \"tr-TR\": \"Sofiya and the Ancient Clan\", \"fr-FR\": \"Sofiya and the Ancient Clan\", \"en-GB\": \"Sofiya and the Ancient Clan\", \"es-419\": \"Sofiya and the Ancient Clan\", \"ja-JP\": \"Sofiya and the Ancient Clan\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/UYL0hTpwXqUdgXxrH7T9ESRQ.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/PlbfXHDBIDR96NLL7eo1gHmz.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/1wKPOnWVYIUwGxE5Kz9hbeGB.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/qp3NL2x2DmcKVurt87r0Q71c.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/KJsqvniy3utazzu3VklOKSc6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/eN5UGhji2UjjzYRzRMVszmU1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/9aUX3tjEREzos8Nq8gzwrOjy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/M81dTOop8EThEej9MhC76kUo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/RO6dKyYmXziu03HUijBVLIt4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/a33SSfQBPt9f2FzAngJYtOM9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/AltVytySwjUy5uZQfS6lTZej.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/xcuAaHihUpMDzLErEPucLTJP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/WU4en6aHbKZfuJXgyTJgDHIW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/3MLeaKHZcmx7ypMmWkvN3njh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/4VI1amKbb13XjJrU5uHZUmn4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1208/LduXv3xVDrNp6aHrkqntOyE6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1207/ULOLmA7OBKUOZJ4Zs1SxKIMd.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T04:02:05.950000Z\", \"lastPlayedDateTime\": \"2023-05-25T16:57:03.490000Z\", \"playDuration\": \"PT3H47M19S\"}, {\"titleId\": \"PPSA10992_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T15:24:07.350000Z\", \"lastPlayedDateTime\": \"2023-05-25T16:53:27.120000Z\", \"playDuration\": \"PT1H28M57S\"}, {\"titleId\": \"PPSA10993_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-25T11:46:30.000000Z\", \"lastPlayedDateTime\": \"2023-05-25T13:16:55.500000Z\", \"playDuration\": \"PT1H30M2S\"}, {\"titleId\": \"CUSA37681_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T12:53:35.560000Z\", \"lastPlayedDateTime\": \"2023-05-25T11:46:17.150000Z\", \"playDuration\": \"PT2H2M14S\"}, {\"titleId\": \"CUSA03099_00\", \"name\": \"Prime Video\", \"localizedName\": \"Prime Video\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"category\": \"ps4_nongame_mini_app\", \"service\": \"none_purchased\", \"playCount\": 6, \"concept\": {\"id\": 200242, \"titleIds\": [\"CUSA00126_00\", \"PPSA02082_00\", \"CUSA00130_00\", \"CUSA01808_00\", \"PPSA02083_00\", \"CUSA03413_00\", \"PPSA02081_00\", \"CUSA02877_00\", \"CUSA03099_00\", \"CUSA17942_00\", \"CUSA17943_00\", \"CUSA01888_00\"], \"name\": \"Prime Video\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/UxaWCYnHsJkBZaCRyuAE57UI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/rMBPkewTtONnpn2FkfjhZjJa.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/PbqMnw5RzJ1i0zgi41RbpMmF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/gj2EdFs0IUhvSbI0eGSjECZU.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Prime Video\", \"uk-UA\": \"Prime Video\", \"de-DE\": \"Prime Video\", \"en-US\": \"Prime Video\", \"ko-KR\": \"Prime Video\", \"pt-BR\": \"Prime Video\", \"es-ES\": \"Prime Video\", \"ar-AE\": \"Prime Video\", \"no-NO\": \"Prime Video\", \"fr-CA\": \"Prime Video\", \"it-IT\": \"Prime Video\", \"pl-PL\": \"Prime Video\", \"ru-RU\": \"Prime Video\", \"zh-Hans\": \"Prime Video\", \"nl-NL\": \"Prime Video\", \"pt-PT\": \"Prime Video\", \"zh-Hant\": \"Prime Video\", \"sv-SE\": \"Prime Video\", \"da-DK\": \"Prime Video\", \"tr-TR\": \"Prime Video\", \"fr-FR\": \"Prime Video\", \"en-GB\": \"Prime Video\", \"es-419\": \"Prime Video\", \"ja-JP\": \"Prime Video\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/UxaWCYnHsJkBZaCRyuAE57UI.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202010/0114/rMBPkewTtONnpn2FkfjhZjJa.png\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/PbqMnw5RzJ1i0zgi41RbpMmF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"APPLICATION_ICON\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/1416/gj2EdFs0IUhvSbI0eGSjECZU.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0715/VExUSYXX0sZXDV3LtQHrSHTS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2022-10-29T14:29:22.540000Z\", \"lastPlayedDateTime\": \"2023-05-25T04:47:43.360000Z\", \"playDuration\": \"PT2H39M16S\"}, {\"titleId\": \"CUSA37682_00\", \"name\": \"The Redress of Mira\", \"localizedName\": \"The Redress of Mira\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006430, \"titleIds\": [\"CUSA37682_00\", \"PPSA10992_00\", \"CUSA37681_00\", \"PPSA10993_00\"], \"name\": \"The Redress of Mira\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Redress of Mira\", \"uk-UA\": \"The Redress of Mira\", \"de-DE\": \"The Redress of Mira\", \"en-US\": \"The Redress of Mira\", \"ko-KR\": \"The Redress of Mira\", \"pt-BR\": \"The Redress of Mira\", \"es-ES\": \"The Redress of Mira\", \"ar-AE\": \"The Redress of Mira\", \"no-NO\": \"The Redress of Mira\", \"fr-CA\": \"The Redress of Mira\", \"it-IT\": \"The Redress of Mira\", \"pl-PL\": \"The Redress of Mira\", \"ru-RU\": \"The Redress of Mira\", \"zh-Hans\": \"The Redress of Mira\", \"nl-NL\": \"The Redress of Mira\", \"pt-PT\": \"The Redress of Mira\", \"zh-Hant\": \"The Redress of Mira\", \"sv-SE\": \"The Redress of Mira\", \"da-DK\": \"The Redress of Mira\", \"tr-TR\": \"The Redress of Mira\", \"fr-FR\": \"The Redress of Mira\", \"en-GB\": \"The Redress of Mira\", \"es-419\": \"The Redress of Mira\", \"ja-JP\": \"The Redress of Mira\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/AwXHclUnIgcvIUmdwRDXQwHM.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Eno8XBv0qw95jssKjU1G5BUc.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/wnUQaW35a1c6j2pjniIyuuFy.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/BK2g2sRGtHvYlpOqgQo13Zr1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/nQMHnJHqOAyFvY05PMOrUYwe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/C4i0GpAD6ci544VVXczHkgjL.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ylbvaPiFxRglkQLThgQyZI9O.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/6rAUqgWe1VfjqrpUWm33elj4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/Z2GvxPo1doHzzYISnEyZLnWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/SmvFPbarL0fFFMftnudRuBN6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/ToizihwUZmdPM1iISqdm0kZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/7yREDze5h2096ZvURajyl4bE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/1hRKYvGOiMoR0lpHssOEPyvd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/09UONphjQwLeilNlidSIurad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/st0SZWNQ7d6rk0nr65fGs1ip.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/uxSFzt2oRmfiourb5KYVRZ1H.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2406/qEzvkmWKNOSVvM5jurIh3e9c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T11:02:04.460000Z\", \"lastPlayedDateTime\": \"2023-05-24T12:53:32.450000Z\", \"playDuration\": \"PT1H41M11S\"}, {\"titleId\": \"PPSA10995_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:54:37.580000Z\", \"lastPlayedDateTime\": \"2023-05-24T11:01:13.280000Z\", \"playDuration\": \"PT6M30S\"}, {\"titleId\": \"PPSA10994_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:50:46.220000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:54:35.350000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"CUSA37684_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:43:18.210000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:47:16.300000Z\", \"playDuration\": \"PT3M44S\"}, {\"titleId\": \"CUSA37683_00\", \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"localizedName\": \"Twice Reborn: A Vampire Visual Novel\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006431, \"titleIds\": [\"CUSA37683_00\", \"CUSA37684_00\", \"PPSA10995_00\", \"PPSA10994_00\"], \"name\": \"Twice Reborn: A Vampire Visual Novel\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Twice Reborn: A Vampire Visual Novel\", \"uk-UA\": \"Twice Reborn: A Vampire Visual Novel\", \"de-DE\": \"Twice Reborn: A Vampire Visual Novel\", \"en-US\": \"Twice Reborn: A Vampire Visual Novel\", \"ko-KR\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-BR\": \"Twice Reborn: A Vampire Visual Novel\", \"es-ES\": \"Twice Reborn: A Vampire Visual Novel\", \"ar-AE\": \"Twice Reborn: A Vampire Visual Novel\", \"no-NO\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-CA\": \"Twice Reborn: A Vampire Visual Novel\", \"it-IT\": \"Twice Reborn: A Vampire Visual Novel\", \"pl-PL\": \"Twice Reborn: A Vampire Visual Novel\", \"ru-RU\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hans\": \"Twice Reborn: A Vampire Visual Novel\", \"nl-NL\": \"Twice Reborn: A Vampire Visual Novel\", \"pt-PT\": \"Twice Reborn: A Vampire Visual Novel\", \"zh-Hant\": \"Twice Reborn: A Vampire Visual Novel\", \"sv-SE\": \"Twice Reborn: A Vampire Visual Novel\", \"da-DK\": \"Twice Reborn: A Vampire Visual Novel\", \"tr-TR\": \"Twice Reborn: A Vampire Visual Novel\", \"fr-FR\": \"Twice Reborn: A Vampire Visual Novel\", \"en-GB\": \"Twice Reborn: A Vampire Visual Novel\", \"es-419\": \"Twice Reborn: A Vampire Visual Novel\", \"ja-JP\": \"Twice Reborn: A Vampire Visual Novel\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/H53u1unigHxysOObqoaJf5e1.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/1NPdbMeZKSrkBPpD7WXAh7Qu.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0bK976yXjyNaGW4VcQGAbOi4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rE4wNJkuNu8XCBbhSVtRRDg4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/zE9Tt5nq1ulBLH5nPVE8SOcK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/l69qbDNuaUhdZHZU5Knrq3BD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/0Pj5qam5cACBuEuPpzNHpAH6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/vP1k1GcG3OTjI0nNq7HfQju7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/HpP1O1VYe3pifgoGnA9b9ePH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ANwzY7PF2RSa0NX3nDGDCzHc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/ngO0Or6gBZd4JN4juXx1eI75.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/wMxIq1pmsMVNsh99etFsVgDG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/kiHs7AquFMXBmphoO9bvn8e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/B1nLPRYP9gP1Z8Ekp5mqVdpk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/NAJ0QebIetFgeiBU1yTQXKuR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0208/rZnnJnBIcQw4IYIh4GdbCvZW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/2908/e5LfzBP9fOaWcfXOzEnC87LV.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T10:36:03.820000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:42:59.450000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"CUSA41273_00\", \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"localizedName\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007454, \"titleIds\": [\"CUSA41050_00\", \"CUSA41051_00\", \"CUSA41049_00\", \"CUSA41272_00\", \"CUSA41275_00\", \"CUSA41273_00\", \"CUSA41274_00\", \"CUSA41001_00\"], \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"uk-UA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"de-DE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-US\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ko-KR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-BR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-ES\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ar-AE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"no-NO\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-CA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"it-IT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pl-PL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ru-RU\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hans\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"nl-NL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-PT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hant\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"sv-SE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"da-DK\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"tr-TR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-FR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-GB\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-419\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ja-JP\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T07:26:58.060000Z\", \"lastPlayedDateTime\": \"2023-05-24T10:35:45.440000Z\", \"playDuration\": \"PT3H8M13S\"}, {\"titleId\": \"CUSA42940_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T06:19:24.640000Z\", \"lastPlayedDateTime\": \"2023-05-24T07:26:30.990000Z\", \"playDuration\": \"PT1H7M2S\"}, {\"titleId\": \"CUSA42939_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T05:02:05.730000Z\", \"lastPlayedDateTime\": \"2023-05-24T06:18:58.030000Z\", \"playDuration\": \"PT1H16M45S\"}, {\"titleId\": \"CUSA42937_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T04:19:17.000000Z\", \"lastPlayedDateTime\": \"2023-05-24T05:02:01.670000Z\", \"playDuration\": \"PT42M15S\"}, {\"titleId\": \"CUSA42938_00\", \"name\": \"Unalive 010\", \"localizedName\": \"Unalive 010\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008140, \"titleIds\": [\"CUSA42938_00\", \"CUSA42940_00\", \"CUSA42939_00\", \"CUSA42937_00\"], \"name\": \"Unalive 010\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SHOOTER\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unalive 010\", \"uk-UA\": \"Unalive 010\", \"de-DE\": \"Unalive 010\", \"en-US\": \"Unalive 010\", \"ko-KR\": \"Unalive 010\", \"pt-BR\": \"Unalive 010\", \"es-ES\": \"Unalive 010\", \"ar-AE\": \"Unalive 010\", \"no-NO\": \"Unalive 010\", \"fr-CA\": \"Unalive 010\", \"it-IT\": \"Unalive 010\", \"pl-PL\": \"Unalive 010\", \"ru-RU\": \"Unalive 010\", \"zh-Hans\": \"Unalive 010\", \"nl-NL\": \"Unalive 010\", \"pt-PT\": \"Unalive 010\", \"zh-Hant\": \"Unalive 010\", \"sv-SE\": \"Unalive 010\", \"da-DK\": \"Unalive 010\", \"tr-TR\": \"Unalive 010\", \"fr-FR\": \"Unalive 010\", \"en-GB\": \"Unalive 010\", \"es-419\": \"Unalive 010\", \"ja-JP\": \"Unalive 010\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/0e8ffb2edf96f8f4a986b57dec7b07b45b722b28b536b654.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/106c81696bcf8d5c314478587ed8166ddf875cf53a16980f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/371be60a132b158e9be103d78e7bcb1a0ea96006fdf855c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/548b13e2d20ddc31bbf323e2e9c56801e7db7077fe84dd40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/668577abe2678020d275fae3726204174f131665237f376f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/68ee2d4013d6a5c5fde4d7653a324b36a3d3a2c648604666.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/72901158a00b363227ae88006385cc8eab08aad3f54621d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/7b838b0bcc027619cc97d1cfdc2e7bb9d4362b22c2746e72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/9d5f80d24be40ae4581785322dbd8d21c816a4dd6f4a29b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/a4824c1a5e230767062e85c33e6d6df85ef6e68fe87c35e2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/cc9adaf71e965cd3b504645d177da5dc69f8a1255ec72dbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/f54fde0ec9188365d5f4e4ae0b6c79424f056d4e474421ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1511/5654c91b236c7cf8cc0f4d4a74838d9cfdbf83961035aae9.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T01:57:26.110000Z\", \"lastPlayedDateTime\": \"2023-05-24T03:14:46.800000Z\", \"playDuration\": \"PT49M28S\"}, {\"titleId\": \"CUSA43375_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-24T01:51:53.600000Z\", \"lastPlayedDateTime\": \"2023-05-24T01:56:54.420000Z\", \"playDuration\": \"PT4M36S\"}, {\"titleId\": \"PPSA16549_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:28:32.600000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:31:46.220000Z\", \"playDuration\": \"PT2M44S\"}, {\"titleId\": \"PPSA16552_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:26:02.570000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:28:29.280000Z\", \"playDuration\": \"PT2M22S\"}, {\"titleId\": \"PPSA16551_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:23:42.290000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:25:59.360000Z\", \"playDuration\": \"PT2M11S\"}, {\"titleId\": \"PPSA16550_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T15:17:41.450000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:23:39.000000Z\", \"playDuration\": \"PT5M45S\"}, {\"titleId\": \"CUSA24937_00\", \"name\": \"WE WERE HERE TOO\", \"localizedName\": \"WE WERE HERE TOO\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10001636, \"titleIds\": [\"CUSA25835_00\", \"CUSA24938_00\", \"CUSA24937_00\", \"CUSA25836_00\"], \"name\": \"WE WERE HERE TOO\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/yW2EMrYvDrGiWqzPGWT59g2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/6qTr5e4Nk1OBmlbZiAhDsbpq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/U7DYy00WvBGu5LlCv4fQYIFr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ZzAKVm0IQWlYOIy363lnDmOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/Ept7XcGk12tByxTijjL7kv1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ua2XjIYxXBrv56HeUeMH3Gdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/1JdwfhyORiNC6QS6WmUI5ohh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/b1rBdQMAFbzAEzkwLYZRCVcD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/36EbevL1XHtsfpmSu1pfUj5o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/jEJPUhyfxmSKHnbIpmbFDX4N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/aO1acyYcMKkC4m8Rqe5Ojp3j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"ADVENTURE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"WE WERE HERE TOO\", \"uk-UA\": \"WE WERE HERE TOO\", \"de-DE\": \"WE WERE HERE TOO\", \"en-US\": \"WE WERE HERE TOO\", \"ko-KR\": \"WE WERE HERE TOO\", \"pt-BR\": \"WE WERE HERE TOO\", \"es-ES\": \"WE WERE HERE TOO\", \"ar-AE\": \"WE WERE HERE TOO\", \"no-NO\": \"WE WERE HERE TOO\", \"fr-CA\": \"WE WERE HERE TOO\", \"it-IT\": \"WE WERE HERE TOO\", \"pl-PL\": \"WE WERE HERE TOO\", \"ru-RU\": \"WE WERE HERE TOO\", \"zh-Hans\": \"WE WERE HERE TOO\", \"nl-NL\": \"WE WERE HERE TOO\", \"pt-PT\": \"WE WERE HERE TOO\", \"zh-Hant\": \"WE WERE HERE TOO\", \"sv-SE\": \"WE WERE HERE TOO\", \"da-DK\": \"WE WERE HERE TOO\", \"tr-TR\": \"WE WERE HERE TOO\", \"fr-FR\": \"WE WERE HERE TOO\", \"en-GB\": \"WE WERE HERE TOO\", \"es-419\": \"WE WERE HERE TOO\", \"ja-JP\": \"WE WERE HERE TOO\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/yW2EMrYvDrGiWqzPGWT59g2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202102/0415/6qTr5e4Nk1OBmlbZiAhDsbpq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/U7DYy00WvBGu5LlCv4fQYIFr.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ZzAKVm0IQWlYOIy363lnDmOr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/Ept7XcGk12tByxTijjL7kv1Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/ua2XjIYxXBrv56HeUeMH3Gdc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/1JdwfhyORiNC6QS6WmUI5ohh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/b1rBdQMAFbzAEzkwLYZRCVcD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/36EbevL1XHtsfpmSu1pfUj5o.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/jEJPUhyfxmSKHnbIpmbFDX4N.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/aO1acyYcMKkC4m8Rqe5Ojp3j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202008/3108/kF0jRjLzTAQ8udow8Ho1fIiU.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T13:02:22.520000Z\", \"lastPlayedDateTime\": \"2023-05-23T15:12:24.250000Z\", \"playDuration\": \"PT3H17M18S\"}, {\"titleId\": \"PPSA07917_00\", \"name\": \"Ganbare! Super Strikers\", \"localizedName\": \"Ganbare! Super Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 235045, \"titleIds\": [\"CUSA16954_00\", \"CUSA17643_00\", \"CUSA17621_00\", \"PCSE01440_00\", \"PPSA07916_00\", \"PPSA07917_00\"], \"name\": \"Ganbare! Super Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ganbare! Super Strikers\", \"uk-UA\": \"Ganbare! Super Strikers\", \"de-DE\": \"Ganbare! Super Strikers\", \"en-US\": \"Ganbare! Super Strikers\", \"ko-KR\": \"Ganbare! Super Strikers\", \"pt-BR\": \"Ganbare! Super Strikers\", \"es-ES\": \"Ganbare! Super Strikers\", \"ar-AE\": \"Ganbare! Super Strikers\", \"no-NO\": \"Ganbare! Super Strikers\", \"fr-CA\": \"Ganbare! Super Strikers\", \"it-IT\": \"Ganbare! Super Strikers\", \"pl-PL\": \"Ganbare! Super Strikers\", \"ru-RU\": \"Ganbare! Super Strikers\", \"zh-Hans\": \"Ganbare! Super Strikers\", \"nl-NL\": \"Ganbare! Super Strikers\", \"pt-PT\": \"Ganbare! Super Strikers\", \"zh-Hant\": \"Ganbare! Super Strikers\", \"sv-SE\": \"Ganbare! Super Strikers\", \"da-DK\": \"Ganbare! Super Strikers\", \"tr-TR\": \"Ganbare! Super Strikers\", \"fr-FR\": \"Ganbare! Super Strikers\", \"en-GB\": \"Ganbare! Super Strikers\", \"es-419\": \"Ganbare! Super Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T12:34:55.340000Z\", \"lastPlayedDateTime\": \"2023-05-23T11:41:32.720000Z\", \"playDuration\": \"PT4H26M3S\"}, {\"titleId\": \"CUSA43374_00\", \"name\": \"Casino Roulette Royal\", \"localizedName\": \"Casino Roulette Royal\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004932, \"titleIds\": [\"PPSA16450_00\", \"CUSA43374_00\", \"PPSA16451_00\", \"CUSA43375_00\"], \"name\": \"Casino Roulette Royal\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Casino Roulette Royal\", \"uk-UA\": \"Casino Roulette Royal\", \"de-DE\": \"Casino Roulette Royal\", \"en-US\": \"Casino Roulette Royal\", \"pt-BR\": \"Casino Roulette Royal\", \"es-ES\": \"Casino Roulette Royal\", \"ar-AE\": \"Casino Roulette Royal\", \"no-NO\": \"Casino Roulette Royal\", \"fr-CA\": \"Casino Roulette Royal\", \"it-IT\": \"Casino Roulette Royal\", \"pl-PL\": \"Casino Roulette Royal\", \"ru-RU\": \"Casino Roulette Royal\", \"nl-NL\": \"Casino Roulette Royal\", \"pt-PT\": \"Casino Roulette Royal\", \"sv-SE\": \"Casino Roulette Royal\", \"da-DK\": \"Casino Roulette Royal\", \"tr-TR\": \"Casino Roulette Royal\", \"fr-FR\": \"Casino Roulette Royal\", \"en-GB\": \"Casino Roulette Royal\", \"es-419\": \"Casino Roulette Royal\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ee4d3ee147fe7631be80c0b9281511841b6aa9fe0009e54a.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/86e9e264dfef9adbba79f19db0e0e278291ec29a2dc5e902.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/b889a2afa8d7da98157db839c0b9ffdb9afa4004073173c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/33b20fc2f6fe0be568ecf2972787a2661c27c7c4399788e9.PNG\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fd3c214fc2432c47a9e3e33ad538d900653ea1ccf77fd3f9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/c9e244a2f2805c5fefc97b771635b0b71e1e467014241232.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/0a6f8b35d94fae5d9c282ef668ce8d2fa8b1120f4687651e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/a82ff307c3d7076948b555ec4d3617704dc265e643daba80.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/d25afad5f1185053d929242585c54fd1656bd581830b6a9c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/fb9ac7211c149b8f3b7fd33a143cb084e50e7bc33566d02e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/367915668e259b6665656fd2a612d9ec231b417f794bfe76.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0209/ad3d3d9e6ed526ac8d45eac996feacdf7b73f8870b1e7a0e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T11:01:15.710000Z\", \"lastPlayedDateTime\": \"2023-05-23T11:19:54.080000Z\", \"playDuration\": \"PT18M10S\"}, {\"titleId\": \"CUSA43364_00\", \"name\": \"Tilting Tiles: Micro Challenge\", \"localizedName\": \"Tilting Tiles: Micro Challenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008367, \"titleIds\": [\"CUSA43364_00\", \"CUSA43363_00\"], \"name\": \"Tilting Tiles: Micro Challenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"UNIQUE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tilting Tiles: Micro Challenge\", \"uk-UA\": \"Tilting Tiles: Micro Challenge\", \"de-DE\": \"Tilting Tiles: Micro Challenge\", \"en-US\": \"Tilting Tiles: Micro Challenge\", \"pt-BR\": \"Tilting Tiles: Micro Challenge\", \"es-ES\": \"Tilting Tiles: Micro Challenge\", \"ar-AE\": \"Tilting Tiles: Micro Challenge\", \"no-NO\": \"Tilting Tiles: Micro Challenge\", \"fr-CA\": \"Tilting Tiles: Micro Challenge\", \"it-IT\": \"Tilting Tiles: Micro Challenge\", \"pl-PL\": \"Tilting Tiles: Micro Challenge\", \"ru-RU\": \"Tilting Tiles: Micro Challenge\", \"nl-NL\": \"Tilting Tiles: Micro Challenge\", \"pt-PT\": \"Tilting Tiles: Micro Challenge\", \"sv-SE\": \"Tilting Tiles: Micro Challenge\", \"da-DK\": \"Tilting Tiles: Micro Challenge\", \"tr-TR\": \"Tilting Tiles: Micro Challenge\", \"fr-FR\": \"Tilting Tiles: Micro Challenge\", \"en-GB\": \"Tilting Tiles: Micro Challenge\", \"es-419\": \"Tilting Tiles: Micro Challenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T08:29:23.650000Z\", \"lastPlayedDateTime\": \"2023-05-23T08:49:06.830000Z\", \"playDuration\": \"PT19M22S\"}, {\"titleId\": \"CUSA43363_00\", \"name\": \"Tilting Tiles: Micro Challenge\", \"localizedName\": \"Tilting Tiles: Micro Challenge\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008367, \"titleIds\": [\"CUSA43364_00\", \"CUSA43363_00\"], \"name\": \"Tilting Tiles: Micro Challenge\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"UNIQUE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tilting Tiles: Micro Challenge\", \"uk-UA\": \"Tilting Tiles: Micro Challenge\", \"de-DE\": \"Tilting Tiles: Micro Challenge\", \"en-US\": \"Tilting Tiles: Micro Challenge\", \"pt-BR\": \"Tilting Tiles: Micro Challenge\", \"es-ES\": \"Tilting Tiles: Micro Challenge\", \"ar-AE\": \"Tilting Tiles: Micro Challenge\", \"no-NO\": \"Tilting Tiles: Micro Challenge\", \"fr-CA\": \"Tilting Tiles: Micro Challenge\", \"it-IT\": \"Tilting Tiles: Micro Challenge\", \"pl-PL\": \"Tilting Tiles: Micro Challenge\", \"ru-RU\": \"Tilting Tiles: Micro Challenge\", \"nl-NL\": \"Tilting Tiles: Micro Challenge\", \"pt-PT\": \"Tilting Tiles: Micro Challenge\", \"sv-SE\": \"Tilting Tiles: Micro Challenge\", \"da-DK\": \"Tilting Tiles: Micro Challenge\", \"tr-TR\": \"Tilting Tiles: Micro Challenge\", \"fr-FR\": \"Tilting Tiles: Micro Challenge\", \"en-GB\": \"Tilting Tiles: Micro Challenge\", \"es-419\": \"Tilting Tiles: Micro Challenge\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/f1b688e56de32436690ddd9a7678bd0b0a3fdc5cba6901af.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/d13a2a931f9365a7ed64beb334ffb45cb67cd7e69b96e9f8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/040f92e4edb06e91497f68ea950f97a9006fc49e5fe23503.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c31de15e87c09742d42f2ec64be010ac5eeb4a5a26792c67.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/3e843a749be4e34ddffa966864c28a7333c112d64743981b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/13003517391babd896d439f9101408e6ce32177ab48fc04f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/94976f230b2f11f50b1e5f08403374d5b0925dc12c9c5679.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/92e307e7b38ab8b5057a9f9e55dc9999227eaa34c413d070.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/eb1ab928188ac90b0d6a937155099c6b923f2d8dc810de95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/88190904c84eb2213c1f3c1fe566d7e156eda3cbfe1ebd28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/ab4f095ee5bee627928f7c15cc04a3a68fc9a9813db2e280.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/5111027a700eada79ba79b5f108159b4a774444b41a53bb3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/b64e5d25c35bab667217861e78fa65363c6f5d1b4a46ac09.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/c41007c59e6f349dffc3e9a394180f1c01c71066bf20794c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1019/48649a4aa144b5b19a37d79e7d744d6671bf089fc05a5f7d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-23T07:53:00.960000Z\", \"lastPlayedDateTime\": \"2023-05-23T08:20:35.130000Z\", \"playDuration\": \"PT27M13S\"}, {\"titleId\": \"PPSA07916_00\", \"name\": \"Ganbare! Super Strikers\", \"localizedName\": \"Ganbare! Super Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 235045, \"titleIds\": [\"CUSA16954_00\", \"CUSA17643_00\", \"CUSA17621_00\", \"PCSE01440_00\", \"PPSA07916_00\", \"PPSA07917_00\"], \"name\": \"Ganbare! Super Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ganbare! Super Strikers\", \"uk-UA\": \"Ganbare! Super Strikers\", \"de-DE\": \"Ganbare! Super Strikers\", \"en-US\": \"Ganbare! Super Strikers\", \"ko-KR\": \"Ganbare! Super Strikers\", \"pt-BR\": \"Ganbare! Super Strikers\", \"es-ES\": \"Ganbare! Super Strikers\", \"ar-AE\": \"Ganbare! Super Strikers\", \"no-NO\": \"Ganbare! Super Strikers\", \"fr-CA\": \"Ganbare! Super Strikers\", \"it-IT\": \"Ganbare! Super Strikers\", \"pl-PL\": \"Ganbare! Super Strikers\", \"ru-RU\": \"Ganbare! Super Strikers\", \"zh-Hans\": \"Ganbare! Super Strikers\", \"nl-NL\": \"Ganbare! Super Strikers\", \"pt-PT\": \"Ganbare! Super Strikers\", \"zh-Hant\": \"Ganbare! Super Strikers\", \"sv-SE\": \"Ganbare! Super Strikers\", \"da-DK\": \"Ganbare! Super Strikers\", \"tr-TR\": \"Ganbare! Super Strikers\", \"fr-FR\": \"Ganbare! Super Strikers\", \"en-GB\": \"Ganbare! Super Strikers\", \"es-419\": \"Ganbare! Super Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/b9CYSWD9IAknFunBZZ3kr4pH.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/WuvW0Jt1gKYldymJXhiPcnlh.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/juZ23wRmqluQIeRMi9Vwq8fo.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/tVWHjeuZ0TFeh8ig1dVXetuT.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/LW8241i56lxwpSoict215ZwR.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/0myuFVxynWy2s3QQoIJlPgH4.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3018/WtIHLLsIVJcV9OGRRKE3FMnP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/AGAwD1iWI5eGSVYm1R3Iajjd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/7ShSCxm18wiUSFJboA4bcFqw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/mm1w9qOgWrktLsVOsMEeWmBL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/np87A0fSYCHdCrL4OTS9RgKU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/MuMld5cDLmtR4ZUU1UM7xzrw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202205/3017/HcoI38BpHbtPEIeEFUQuac2R.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T15:27:24.830000Z\", \"lastPlayedDateTime\": \"2023-05-22T08:33:20.090000Z\", \"playDuration\": \"PT5H29M5S\"}, {\"titleId\": \"PPSA03099_00\", \"name\": \"Dead Island 2\", \"localizedName\": \"Dead Island 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"category\": \"ps5_native_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 201061, \"titleIds\": [\"CUSA36373_00\", \"CUSA35681_00\", \"CUSA36372_00\", \"PPSA03099_00\", \"CUSA35646_00\", \"CUSA36368_00\", \"CUSA36369_00\", \"PPSA03098_00\", \"PPSA09377_00\", \"CUSA00936_00\", \"CUSA29825_00\", \"CUSA01826_00\", \"CUSA01014_00\", \"CUSA27043_00\", \"CUSA36370_00\", \"CUSA36371_00\"], \"name\": \"Dead Island 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dead Island 2\", \"uk-UA\": \"Dead Island 2\", \"de-DE\": \"Dead Island 2\", \"en-US\": \"Dead Island 2\", \"ko-KR\": \"Dead Island 2\", \"pt-BR\": \"Dead Island 2\", \"es-ES\": \"Dead Island 2\", \"ar-AE\": \"Dead Island 2\", \"no-NO\": \"Dead Island 2\", \"fr-CA\": \"Dead Island 2\", \"it-IT\": \"Dead Island 2\", \"pl-PL\": \"Dead Island 2\", \"ru-RU\": \"Dead Island 2\", \"zh-Hans\": \"Dead Island 2\", \"nl-NL\": \"Dead Island 2\", \"pt-PT\": \"Dead Island 2\", \"zh-Hant\": \"Dead Island 2\", \"sv-SE\": \"Dead Island 2\", \"da-DK\": \"Dead Island 2\", \"tr-TR\": \"Dead Island 2\", \"fr-FR\": \"Dead Island 2\", \"en-GB\": \"Dead Island 2\", \"es-419\": \"Dead Island 2\", \"ja-JP\": \"Dead Island 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/6LdrZGL52ERyyE6PAsQRuvjW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/GbtCiyn1F0ynDRaFvRw9kQKg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/IEo9RDMLk0ZBQWhbZMN5lV2p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/SyX3pwXDmPfzSY6KsdCU6dfk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/amVVXYNTuja4O78X0paLCJKM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/epmQKWj9FRlRaULWJFzzMowV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/fwKSP5iAODvboIhoRtTlheLO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/mOdn0Wuxe5uzrfQ2wYXD89pA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/yX0xnKJ9obu8ngUfKpti4AIJ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1012/V6WJkRhfNIQ3ePfAmrLSfGng.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T04:46:30.420000Z\", \"lastPlayedDateTime\": \"2023-05-22T05:26:40.720000Z\", \"playDuration\": \"PT38M11S\"}, {\"titleId\": \"CUSA32780_00\", \"name\": \"Labyrinth of Zangetsu\", \"localizedName\": \"Labyrinth of Zangetsu\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10002574, \"titleIds\": [\"CUSA34612_00\", \"CUSA32781_00\", \"CUSA32780_00\", \"CUSA27232_00\"], \"name\": \"Labyrinth of Zangetsu\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/LjyV66ZTpeiieVOWgetNrjzy.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/TuUbGHiwgSyqA2yodWWHRrpF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/blUeD7CgV5QeoB596bQMFlA2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/L5XAbEIIaOy064kKkBf09TK4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/4GdT5rtSHVnPAfzodx0gnRjV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/sRtZrEcsCib2M4uTsnG5QPpL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/6Z3J53kSGUYZ9L0e68FfwesS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/pl6n9LFQ6wSHG2USECQSCHJN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/px4zCUiaA3DdQpmihm3CaJph.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/T8i7ICv4ls0NUdRlJUccyPDu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Labyrinth of Zangetsu\", \"uk-UA\": \"Labyrinth of Zangetsu\", \"de-DE\": \"Labyrinth of Zangetsu\", \"en-US\": \"Labyrinth of Zangetsu\", \"ko-KR\": \"Labyrinth of Zangetsu\", \"pt-BR\": \"Labyrinth of Zangetsu\", \"es-ES\": \"Labyrinth of Zangetsu\", \"ar-AE\": \"Labyrinth of Zangetsu\", \"no-NO\": \"Labyrinth of Zangetsu\", \"fr-CA\": \"Labyrinth of Zangetsu\", \"it-IT\": \"Labyrinth of Zangetsu\", \"pl-PL\": \"Labyrinth of Zangetsu\", \"ru-RU\": \"Labyrinth of Zangetsu\", \"zh-Hans\": \"Labyrinth of Zangetsu\", \"nl-NL\": \"Labyrinth of Zangetsu\", \"pt-PT\": \"Labyrinth of Zangetsu\", \"zh-Hant\": \"Labyrinth of Zangetsu\", \"sv-SE\": \"Labyrinth of Zangetsu\", \"da-DK\": \"Labyrinth of Zangetsu\", \"tr-TR\": \"Labyrinth of Zangetsu\", \"fr-FR\": \"Labyrinth of Zangetsu\", \"en-GB\": \"Labyrinth of Zangetsu\", \"es-419\": \"Labyrinth of Zangetsu\", \"ja-JP\": \"Labyrinth of Zangetsu\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/LjyV66ZTpeiieVOWgetNrjzy.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/TuUbGHiwgSyqA2yodWWHRrpF.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/blUeD7CgV5QeoB596bQMFlA2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/0703/L5XAbEIIaOy064kKkBf09TK4.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/4GdT5rtSHVnPAfzodx0gnRjV.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/sRtZrEcsCib2M4uTsnG5QPpL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/6Z3J53kSGUYZ9L0e68FfwesS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/pl6n9LFQ6wSHG2USECQSCHJN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/px4zCUiaA3DdQpmihm3CaJph.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/0517/T8i7ICv4ls0NUdRlJUccyPDu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2111/m7NuURwlHcPkFwbJ0mAl6Uol.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-22T04:30:56.210000Z\", \"lastPlayedDateTime\": \"2023-05-22T04:45:43.270000Z\", \"playDuration\": \"PT14M41S\"}, {\"titleId\": \"PPSA15876_00\", \"name\": \"Mia and the Dragon Princess\", \"localizedName\": \"Mia and the Dragon Princess\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10006967, \"titleIds\": [\"CUSA42819_00\", \"PPSA15876_00\", \"CUSA39636_00\", \"CUSA39635_00\", \"PPSA15877_00\", \"CUSA42820_00\"], \"name\": \"Mia and the Dragon Princess\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mia and the Dragon Princess\", \"uk-UA\": \"Mia and the Dragon Princess\", \"de-DE\": \"Mia and the Dragon Princess\", \"en-US\": \"Mia and the Dragon Princess\", \"ko-KR\": \"Mia and the Dragon Princess\", \"pt-BR\": \"Mia and the Dragon Princess\", \"es-ES\": \"Mia and the Dragon Princess\", \"ar-AE\": \"Mia and the Dragon Princess\", \"no-NO\": \"Mia and the Dragon Princess\", \"fr-CA\": \"Mia and the Dragon Princess\", \"it-IT\": \"Mia and the Dragon Princess\", \"pl-PL\": \"Mia and the Dragon Princess\", \"ru-RU\": \"Mia and the Dragon Princess\", \"zh-Hans\": \"Mia and the Dragon Princess\", \"nl-NL\": \"Mia and the Dragon Princess\", \"pt-PT\": \"Mia and the Dragon Princess\", \"zh-Hant\": \"Mia and the Dragon Princess\", \"sv-SE\": \"Mia and the Dragon Princess\", \"da-DK\": \"Mia and the Dragon Princess\", \"tr-TR\": \"Mia and the Dragon Princess\", \"fr-FR\": \"Mia and the Dragon Princess\", \"en-GB\": \"Mia and the Dragon Princess\", \"es-419\": \"Mia and the Dragon Princess\", \"ja-JP\": \"Mia and the Dragon Princess\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T07:57:56.860000Z\", \"lastPlayedDateTime\": \"2023-05-21T15:25:11.760000Z\", \"playDuration\": \"PT4H40S\"}, {\"titleId\": \"PPSA15467_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T12:21:53.210000Z\", \"lastPlayedDateTime\": \"2023-05-21T12:41:47.890000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"PPSA15468_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T12:04:40.450000Z\", \"lastPlayedDateTime\": \"2023-05-21T12:21:51.370000Z\", \"playDuration\": \"PT16M59S\"}, {\"titleId\": \"CUSA42465_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T11:41:59.150000Z\", \"lastPlayedDateTime\": \"2023-05-21T12:03:01.570000Z\", \"playDuration\": \"PT20M54S\"}, {\"titleId\": \"CUSA42464_00\", \"name\": \"Cyber Citizen Shockman\", \"localizedName\": \"Cyber Citizen Shockman\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008001, \"titleIds\": [\"PPSA15467_00\", \"PPSA15468_00\", \"CUSA42465_00\", \"CUSA42464_00\"], \"name\": \"Cyber Citizen Shockman\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\", \"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cyber Citizen Shockman\", \"uk-UA\": \"Cyber Citizen Shockman\", \"de-DE\": \"Cyber Citizen Shockman\", \"en-US\": \"Cyber Citizen Shockman\", \"pt-BR\": \"Cyber Citizen Shockman\", \"es-ES\": \"Cyber Citizen Shockman\", \"ar-AE\": \"Cyber Citizen Shockman\", \"no-NO\": \"Cyber Citizen Shockman\", \"fr-CA\": \"Cyber Citizen Shockman\", \"it-IT\": \"Cyber Citizen Shockman\", \"pl-PL\": \"Cyber Citizen Shockman\", \"ru-RU\": \"Cyber Citizen Shockman\", \"nl-NL\": \"Cyber Citizen Shockman\", \"pt-PT\": \"Cyber Citizen Shockman\", \"sv-SE\": \"Cyber Citizen Shockman\", \"da-DK\": \"Cyber Citizen Shockman\", \"tr-TR\": \"Cyber Citizen Shockman\", \"fr-FR\": \"Cyber Citizen Shockman\", \"en-GB\": \"Cyber Citizen Shockman\", \"es-419\": \"Cyber Citizen Shockman\", \"ja-JP\": \"\\u6539\\u9020\\u753a\\u4eba\\u30b7\\u30e5\\u30d3\\u30d3\\u30f3\\u30de\\u30f3\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/0ef6a92b3f78e38d77a2a63e2fd9f6a38a70ab7081d9411e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/aab7f599cdc64a9072245b571072a8b699c8170556186c49.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/caff28f0c721182340f4491b87db82b840201ab449d9b39b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6def8f5c13ef6e7ad2cc3fb54341036cfda5b2e8b263e4e2.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/bb14498374e0c992f17246cc3b6965a81b0eedebe27f5dc2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/6739281db52b6608cd8de0c5456acb0afaa76084d35970c5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/47e17d46a4237965704af3b4a05e8a6554fcb9b145f97385.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f1b53e218c5b8d7dbe696d7524fbf5bc41f643088838941f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/362bcc7d3e50de6251c2de9fef0f221b8e38d78f0ea836cb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/85c23b10946272ab8fa930067c1870fbc7ff9b59d7add707.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/73f1b39b1f259961b4a50ee5ec1f174e8042cea46bfccf6d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f0e95b88dc9f9a3ca726ad03c1ddca5b3337a2e241111240.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2711/f035cd153ca91d3ce2eb2c4c8f3fa07617d89fce84b2ff39.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T03:13:58.400000Z\", \"lastPlayedDateTime\": \"2023-05-21T11:41:57.690000Z\", \"playDuration\": \"PT19M51S\"}, {\"titleId\": \"CUSA39635_00\", \"name\": \"Mia and the Dragon Princess\", \"localizedName\": \"Mia and the Dragon Princess\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006967, \"titleIds\": [\"CUSA42819_00\", \"PPSA15876_00\", \"CUSA39636_00\", \"CUSA39635_00\", \"PPSA15877_00\", \"CUSA42820_00\"], \"name\": \"Mia and the Dragon Princess\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mia and the Dragon Princess\", \"uk-UA\": \"Mia and the Dragon Princess\", \"de-DE\": \"Mia and the Dragon Princess\", \"en-US\": \"Mia and the Dragon Princess\", \"ko-KR\": \"Mia and the Dragon Princess\", \"pt-BR\": \"Mia and the Dragon Princess\", \"es-ES\": \"Mia and the Dragon Princess\", \"ar-AE\": \"Mia and the Dragon Princess\", \"no-NO\": \"Mia and the Dragon Princess\", \"fr-CA\": \"Mia and the Dragon Princess\", \"it-IT\": \"Mia and the Dragon Princess\", \"pl-PL\": \"Mia and the Dragon Princess\", \"ru-RU\": \"Mia and the Dragon Princess\", \"zh-Hans\": \"Mia and the Dragon Princess\", \"nl-NL\": \"Mia and the Dragon Princess\", \"pt-PT\": \"Mia and the Dragon Princess\", \"zh-Hant\": \"Mia and the Dragon Princess\", \"sv-SE\": \"Mia and the Dragon Princess\", \"da-DK\": \"Mia and the Dragon Princess\", \"tr-TR\": \"Mia and the Dragon Princess\", \"fr-FR\": \"Mia and the Dragon Princess\", \"en-GB\": \"Mia and the Dragon Princess\", \"es-419\": \"Mia and the Dragon Princess\", \"ja-JP\": \"Mia and the Dragon Princess\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/7d00a56cf065e83ab5a76cf3d4d67364239b9c92575c14d6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2913/668a2071c5663008f863083dfaeec0feb51685fc3d759aa9.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fa3695f8e9dce781666847e98e4200dbd7346fc38b36cfe4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/620bd59c4835ed56b184972bf18f2ac22f1dfdf19cb1c157.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/3d0aa12d5835d9687801f7f0cd8d214462298aaf38dc6831.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/fe2323bb69c68685ce514dae3d0c930b230ac2d0c505120a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/8a5c50ffb05791fdbd73f094404344ce580c009b2717be0d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e2f490e360599c4c8b75988cbe533ddbf062d00910a21d59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ca7f3814280ad7080be490e2424229b5a3d196259a60963a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/2dafc3f83d4da2bdb369b2e3544e6ea80cfffabf8b0deb74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/e5f642410065da4e39aaedafe19c370774fbbec8aa55f91f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/73de9df8b024f472da2787c98330e8357cf77503641660b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/11e03577192b227da3cd219f208321f4168532d0bbbbfbe3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/4c2e4d1dd088183e42f83491907c3c46e9b9bd69432ce2b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2311/ff4135df431ff7f9631cb9053168b971350547a79ad47b7c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202401/1515/3a1541e4f9ad3a237b12b785b9dc8e6fcdc7f55a13b6819b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-21T04:00:50.960000Z\", \"lastPlayedDateTime\": \"2023-05-21T07:57:30.590000Z\", \"playDuration\": \"PT3H56M34S\"}, {\"titleId\": \"PPSA09200_00\", \"name\": \"Mind Maze\", \"localizedName\": \"Mind Maze\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001824, \"titleIds\": [\"PPSA09200_00\", \"CUSA25389_00\", \"CUSA25388_00\", \"PPSA09199_00\", \"PPSA03963_00\", \"PPSA03964_00\"], \"name\": \"Mind Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mind Maze\", \"uk-UA\": \"Mind Maze\", \"de-DE\": \"Mind Maze\", \"en-US\": \"Mind Maze\", \"ko-KR\": \"Mind Maze\", \"pt-BR\": \"Mind Maze\", \"es-ES\": \"Mind Maze\", \"ar-AE\": \"Mind Maze\", \"no-NO\": \"Mind Maze\", \"fr-CA\": \"Mind Maze\", \"it-IT\": \"Mind Maze\", \"pl-PL\": \"Mind Maze\", \"ru-RU\": \"Mind Maze\", \"zh-Hans\": \"Mind Maze\", \"nl-NL\": \"Mind Maze\", \"pt-PT\": \"Mind Maze\", \"zh-Hant\": \"Mind Maze\", \"sv-SE\": \"Mind Maze\", \"da-DK\": \"Mind Maze\", \"tr-TR\": \"Mind Maze\", \"fr-FR\": \"Mind Maze\", \"en-GB\": \"Mind Maze\", \"es-419\": \"Mind Maze\", \"ja-JP\": \"Mind Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T14:29:11.670000Z\", \"lastPlayedDateTime\": \"2023-05-20T17:06:06.920000Z\", \"playDuration\": \"PT2H36M32S\"}, {\"titleId\": \"PPSA09199_00\", \"name\": \"Mind Maze\", \"localizedName\": \"Mind Maze\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001824, \"titleIds\": [\"PPSA09200_00\", \"CUSA25389_00\", \"CUSA25388_00\", \"PPSA09199_00\", \"PPSA03963_00\", \"PPSA03964_00\"], \"name\": \"Mind Maze\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mind Maze\", \"uk-UA\": \"Mind Maze\", \"de-DE\": \"Mind Maze\", \"en-US\": \"Mind Maze\", \"ko-KR\": \"Mind Maze\", \"pt-BR\": \"Mind Maze\", \"es-ES\": \"Mind Maze\", \"ar-AE\": \"Mind Maze\", \"no-NO\": \"Mind Maze\", \"fr-CA\": \"Mind Maze\", \"it-IT\": \"Mind Maze\", \"pl-PL\": \"Mind Maze\", \"ru-RU\": \"Mind Maze\", \"zh-Hans\": \"Mind Maze\", \"nl-NL\": \"Mind Maze\", \"pt-PT\": \"Mind Maze\", \"zh-Hant\": \"Mind Maze\", \"sv-SE\": \"Mind Maze\", \"da-DK\": \"Mind Maze\", \"tr-TR\": \"Mind Maze\", \"fr-FR\": \"Mind Maze\", \"en-GB\": \"Mind Maze\", \"es-419\": \"Mind Maze\", \"ja-JP\": \"Mind Maze\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/eUDf82ob8K2rLafCtfWDVabu.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/jeK1sLYR3RUkbnCTEpEvQxmF.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/Ve74tNvN0cdPB694cyWN3Mcm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hId9ODM4d8I0foN7cNWGnNHU.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BIzYgliFp4z8n3bT2IDLN4yN.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/18LvuZ5ynkAHiZqe58k0G8PA.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/3o5YrnNIfNrAumhtC98EpwZw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/MR6lebZbJhFlaPy22qhwE5wY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/79BmPeKcwA4CY7Q56wmjvpSA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/80AzwtjpqkmUyG0LfGWArWlP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/hfXXBshLGKsMnMl6nezVRun9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/pRCTZILrNifvrEQ5Dw4T51mM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/GUtfNlk2y1gYJCqpU933ek59.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/rANtO5hJ2xBNiQ0YZ51paUPG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202105/2921/BP87w7Dpi0zqRH3taMxxKDhN.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:45:31.000000Z\", \"lastPlayedDateTime\": \"2023-05-20T14:25:37.450000Z\", \"playDuration\": \"PT2H50M57S\"}, {\"titleId\": \"PPSA03789_00\", \"name\": \"HUMANITY\", \"localizedName\": \"HUMANITY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233011, \"titleIds\": [\"CUSA28074_00\", \"PPSA03771_00\", \"CUSA28072_00\", \"CUSA28076_00\", \"PPSA13276_00\", \"CUSA14178_00\", \"CUSA39491_00\", \"PPSA13278_00\", \"PPSA03788_00\", \"CUSA39489_00\", \"CUSA40188_00\", \"CUSA14162_00\", \"CUSA40186_00\", \"CUSA28073_00\", \"CUSA28071_00\", \"CUSA28075_00\", \"CUSA39490_00\", \"PPSA13275_00\", \"PPSA13277_00\", \"CUSA14150_00\", \"PPSA03789_00\", \"PPSA03790_00\", \"CUSA39488_00\", \"CUSA40187_00\", \"CUSA40189_00\"], \"name\": \"HUMANITY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"HUMANITY\", \"uk-UA\": \"HUMANITY\", \"de-DE\": \"HUMANITY\", \"en-US\": \"HUMANITY\", \"ko-KR\": \"HUMANITY\", \"pt-BR\": \"HUMANITY\", \"es-ES\": \"HUMANITY\", \"ar-AE\": \"HUMANITY\", \"no-NO\": \"HUMANITY\", \"fr-CA\": \"HUMANITY\", \"it-IT\": \"HUMANITY\", \"pl-PL\": \"HUMANITY\", \"ru-RU\": \"HUMANITY\", \"zh-Hans\": \"HUMANITY\", \"nl-NL\": \"HUMANITY\", \"pt-PT\": \"HUMANITY\", \"zh-Hant\": \"HUMANITY\", \"sv-SE\": \"HUMANITY\", \"da-DK\": \"HUMANITY\", \"tr-TR\": \"HUMANITY\", \"fr-FR\": \"HUMANITY\", \"en-GB\": \"HUMANITY\", \"es-419\": \"HUMANITY\", \"ja-JP\": \"HUMANITY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:39:09.670000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:41:16.940000Z\", \"playDuration\": \"PT1M56S\"}, {\"titleId\": \"CUSA14162_00\", \"name\": \"HUMANITY\", \"localizedName\": \"HUMANITY\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233011, \"titleIds\": [\"CUSA28074_00\", \"PPSA03771_00\", \"CUSA28072_00\", \"CUSA28076_00\", \"PPSA13276_00\", \"CUSA14178_00\", \"CUSA39491_00\", \"PPSA13278_00\", \"PPSA03788_00\", \"CUSA39489_00\", \"CUSA40188_00\", \"CUSA14162_00\", \"CUSA40186_00\", \"CUSA28073_00\", \"CUSA28071_00\", \"CUSA28075_00\", \"CUSA39490_00\", \"PPSA13275_00\", \"PPSA13277_00\", \"CUSA14150_00\", \"PPSA03789_00\", \"PPSA03790_00\", \"CUSA39488_00\", \"CUSA40187_00\", \"CUSA40189_00\"], \"name\": \"HUMANITY\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"HUMANITY\", \"uk-UA\": \"HUMANITY\", \"de-DE\": \"HUMANITY\", \"en-US\": \"HUMANITY\", \"ko-KR\": \"HUMANITY\", \"pt-BR\": \"HUMANITY\", \"es-ES\": \"HUMANITY\", \"ar-AE\": \"HUMANITY\", \"no-NO\": \"HUMANITY\", \"fr-CA\": \"HUMANITY\", \"it-IT\": \"HUMANITY\", \"pl-PL\": \"HUMANITY\", \"ru-RU\": \"HUMANITY\", \"zh-Hans\": \"HUMANITY\", \"nl-NL\": \"HUMANITY\", \"pt-PT\": \"HUMANITY\", \"zh-Hant\": \"HUMANITY\", \"sv-SE\": \"HUMANITY\", \"da-DK\": \"HUMANITY\", \"tr-TR\": \"HUMANITY\", \"fr-FR\": \"HUMANITY\", \"en-GB\": \"HUMANITY\", \"es-419\": \"HUMANITY\", \"ja-JP\": \"HUMANITY\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/15ba213d5a3157ce3d98528e1ce452c1498ad42370b08123.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/GR627fpyctQExh7LFk8JgM4p.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/RiknwAceCV8Q0vElksemQ5Bm.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c756dc66c064e12e7b006f057c4b66e6d72d06c336064858.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/43829c77d6c1c03a6c6ddda969a5115169a63016f1e660a4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1105/j3l9tzNlSoG6pjWoZ7r8MIfD.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a3a6ad54a35d27251d98b53fecd04f5f2ecda59d051685b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/dd5a4c9171b788b2563caa045205042cac60cba166ebc15f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/d74f276f240bf411750135f4ff61a477aa34d5212f36d19f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/fde5a24cb0d9ec9e7e67771b178351fa057d0a08cd572cea.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/e29bb852f17f67b6b6f9a65600bae1b5ac36ac2791a08918.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/a39f776ab48f27270606b19860cf41c5cf87c79e2dc7fe28.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/af06d47fff92ef8ffd218071906948efbcc2022258c6faeb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/585e8a4eb7bb83d1b61b8489220d65218188dff8f8dfeb01.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/c21bad70777d19fb3d030e744925d4892a19b194bd6b0188.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1020/ddc3dcda1b6b9f253b6fc6ff64f3ec0de888cca24eb19f54.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1423/ceiwbi2grLMGYXWlZCduDvuI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:36:36.990000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:39:06.630000Z\", \"playDuration\": \"PT2M5S\"}, {\"titleId\": \"CUSA25218_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:15:51.030000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:35:54.360000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"PPSA02196_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:26:26.100000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:33:40.380000Z\", \"playDuration\": \"PT6M47S\"}, {\"titleId\": \"CUSA25220_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:23:45.490000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:26:22.870000Z\", \"playDuration\": \"PT2M20S\"}, {\"titleId\": \"CUSA25219_00\", \"name\": \"Trackmania\\u00ae\", \"localizedName\": \"Trackmania\\u00ae\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001758, \"titleIds\": [\"PPSA02194_00\", \"PPSA02195_00\", \"PPSA02196_00\", \"PPSA12376_00\", \"CUSA39332_00\", \"PPSA12375_00\", \"CUSA25219_00\", \"CUSA25218_00\", \"CUSA39330_00\", \"PPSA12374_00\", \"CUSA25220_00\", \"CUSA39331_00\"], \"name\": \"Trackmania\\u00ae\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"RACING\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Trackmania\\u00ae\", \"uk-UA\": \"Trackmania\\u00ae\", \"de-DE\": \"Trackmania\\u00ae\", \"en-US\": \"Trackmania\\u00ae\", \"ko-KR\": \"Trackmania\\u00ae\", \"pt-BR\": \"Trackmania\\u00ae\", \"es-ES\": \"Trackmania\\u00ae\", \"ar-AE\": \"Trackmania\\u00ae\", \"no-NO\": \"Trackmania\\u00ae\", \"fr-CA\": \"Trackmania\\u00ae\", \"it-IT\": \"Trackmania\\u00ae\", \"pl-PL\": \"Trackmania\\u00ae\", \"ru-RU\": \"Trackmania\\u00ae\", \"zh-Hans\": \"Trackmania\\u00ae\", \"nl-NL\": \"Trackmania\\u00ae\", \"pt-PT\": \"Trackmania\\u00ae\", \"zh-Hant\": \"Trackmania\\u00ae\", \"sv-SE\": \"Trackmania\\u00ae\", \"da-DK\": \"Trackmania\\u00ae\", \"tr-TR\": \"Trackmania\\u00ae\", \"fr-FR\": \"Trackmania\\u00ae\", \"en-GB\": \"Trackmania\\u00ae\", \"es-419\": \"Trackmania\\u00ae\", \"ja-JP\": \"Trackmania\\u00ae\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/Q6bw57T7DXxh9ciTN3nCoRzf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/26cf7a978a1806d1aee2d71c348a4e756c8224efe10f578e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/8322e50ace7af8f93f1338bfced786c7b61e3cbd32dc4bf9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/7Uonq97FMXcvdie2zbuzf9n1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/b018feaf6af33d15a8e41448d4142005720cbc7a76109365.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/096cc3084128fe458078a76d70785a23026a416d583ae5bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/mVk3l1S78o2udMS9HpeQW4tD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/y6npWpd20ZGXVVToeomJuoTV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/OFvtwd2EnvumN4Q5xsJWKTMf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/gqMGivzktg4wBjRiGiLgdkPV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2322/fR7h6jK9GDVCxGhV7rq2jeJv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2020/80a04a298990fe77d90c0fc5d531a87035852e1b4af6cfbb.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:18:56.350000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:23:42.380000Z\", \"playDuration\": \"PT4M35S\"}, {\"titleId\": \"PPSA11058_00\", \"name\": \"Pool Blitz\", \"localizedName\": \"Pool Blitz\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006452, \"titleIds\": [\"CUSA45923_00\", \"CUSA45924_00\", \"PPSA11059_00\", \"PPSA11058_00\"], \"name\": \"Pool Blitz\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/8d6658ac4cdacf9a9fa1177c59b38a363a22fed579f2c87a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/71dd5a6a621831531997479358209dae6a7ab0c2ea4958d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/6f8d4a433eb7999a5778122742fae718faadbd98eabd0f2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/cab22cf26ba5fa0ad34305f4fac950dab74857456f45e8fb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/4032a04668ba045ffa3006bf822df96f9b8834d8eac0f90a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/a7362ffec5bdff4d71af5629f6732635349538690617b0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/c8db615ca20edc60ae8863b82f471a993a08633c49bcc89f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/b74bd64d98c15df4a47f16f54d350065c7f2adbe46c56ef1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/8cf534fb196f82653ff5a8db2f505965a96cda2a9612f349.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/cb191d33da98b4f70a17f9aa40a7829516178c2a91d6c48b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/44b10b17eeaa01cbc2a108aa3bb3d52e3b640b771d9a6968.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/38cd074a4f542af8ec4b406bf8ca7e8603abe8b1871baa8c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SPORTS\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pool Blitz\", \"uk-UA\": \"Pool Blitz\", \"de-DE\": \"Pool Blitz\", \"en-US\": \"Pool Blitz\", \"ko-KR\": \"Pool Blitz\", \"pt-BR\": \"Pool Blitz\", \"es-ES\": \"Pool Blitz\", \"ar-AE\": \"Pool Blitz\", \"no-NO\": \"Pool Blitz\", \"fr-CA\": \"Pool Blitz\", \"it-IT\": \"Pool Blitz\", \"pl-PL\": \"Pool Blitz\", \"ru-RU\": \"Pool Blitz\", \"zh-Hans\": \"Pool Blitz\", \"nl-NL\": \"Pool Blitz\", \"pt-PT\": \"Pool Blitz\", \"zh-Hant\": \"Pool Blitz\", \"sv-SE\": \"Pool Blitz\", \"da-DK\": \"Pool Blitz\", \"tr-TR\": \"Pool Blitz\", \"fr-FR\": \"Pool Blitz\", \"en-GB\": \"Pool Blitz\", \"es-419\": \"Pool Blitz\", \"ja-JP\": \"\\u30d3\\u30ea\\u30e4\\u30fc\\u30c9\\u30d6\\u30ea\\u30c3\\u30c4\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/8d6658ac4cdacf9a9fa1177c59b38a363a22fed579f2c87a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/71dd5a6a621831531997479358209dae6a7ab0c2ea4958d4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/6f8d4a433eb7999a5778122742fae718faadbd98eabd0f2b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/cab22cf26ba5fa0ad34305f4fac950dab74857456f45e8fb.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/4032a04668ba045ffa3006bf822df96f9b8834d8eac0f90a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/a7362ffec5bdff4d71af5629f6732635349538690617b0ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/c8db615ca20edc60ae8863b82f471a993a08633c49bcc89f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/b74bd64d98c15df4a47f16f54d350065c7f2adbe46c56ef1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/8cf534fb196f82653ff5a8db2f505965a96cda2a9612f349.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/cb191d33da98b4f70a17f9aa40a7829516178c2a91d6c48b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/44b10b17eeaa01cbc2a108aa3bb3d52e3b640b771d9a6968.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0617/38cd074a4f542af8ec4b406bf8ca7e8603abe8b1871baa8c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0610/34a95eff0ce80cee903da0b1d21565052c69d1d4f86c49df.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T10:12:22.980000Z\", \"lastPlayedDateTime\": \"2023-05-20T10:15:40.460000Z\", \"playDuration\": \"PT2M37S\"}, {\"titleId\": \"PPSA15364_00\", \"name\": \"Omega Strikers\", \"localizedName\": \"Omega Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005856, \"titleIds\": [\"PPSA12453_00\", \"CUSA40622_00\", \"CUSA42374_00\", \"CUSA42375_00\", \"CUSA42373_00\", \"PPSA15363_00\", \"PPSA15365_00\", \"PPSA15364_00\"], \"name\": \"Omega Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Omega Strikers\", \"uk-UA\": \"Omega Strikers\", \"de-DE\": \"Omega Strikers\", \"en-US\": \"Omega Strikers\", \"ko-KR\": \"\\uc624\\uba54\\uac00 \\uc2a4\\ud2b8\\ub77c\\uc774\\ucee4\\uc2a4\", \"pt-BR\": \"Omega Strikers\", \"es-ES\": \"Omega Strikers\", \"ar-AE\": \"Omega Strikers\", \"no-NO\": \"Omega Strikers\", \"fr-CA\": \"Omega Strikers\", \"it-IT\": \"Omega Strikers\", \"pl-PL\": \"Omega Strikers\", \"ru-RU\": \"Omega Strikers\", \"zh-Hans\": \"Omega Strikers\", \"nl-NL\": \"Omega Strikers\", \"pt-PT\": \"Omega Strikers\", \"zh-Hant\": \"Omega Strikers\", \"sv-SE\": \"Omega Strikers\", \"da-DK\": \"Omega Strikers\", \"tr-TR\": \"Omega Strikers\", \"fr-FR\": \"Omega Strikers\", \"en-GB\": \"Omega Strikers\", \"es-419\": \"Omega Strikers\", \"ja-JP\": \"Omega Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T09:06:02.870000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:06:42.440000Z\", \"playDuration\": \"PT36S\"}, {\"titleId\": \"CUSA42374_00\", \"name\": \"Omega Strikers\", \"localizedName\": \"Omega Strikers\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005856, \"titleIds\": [\"PPSA12453_00\", \"CUSA40622_00\", \"CUSA42374_00\", \"CUSA42375_00\", \"CUSA42373_00\", \"PPSA15363_00\", \"PPSA15365_00\", \"PPSA15364_00\"], \"name\": \"Omega Strikers\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Omega Strikers\", \"uk-UA\": \"Omega Strikers\", \"de-DE\": \"Omega Strikers\", \"en-US\": \"Omega Strikers\", \"ko-KR\": \"\\uc624\\uba54\\uac00 \\uc2a4\\ud2b8\\ub77c\\uc774\\ucee4\\uc2a4\", \"pt-BR\": \"Omega Strikers\", \"es-ES\": \"Omega Strikers\", \"ar-AE\": \"Omega Strikers\", \"no-NO\": \"Omega Strikers\", \"fr-CA\": \"Omega Strikers\", \"it-IT\": \"Omega Strikers\", \"pl-PL\": \"Omega Strikers\", \"ru-RU\": \"Omega Strikers\", \"zh-Hans\": \"Omega Strikers\", \"nl-NL\": \"Omega Strikers\", \"pt-PT\": \"Omega Strikers\", \"zh-Hant\": \"Omega Strikers\", \"sv-SE\": \"Omega Strikers\", \"da-DK\": \"Omega Strikers\", \"tr-TR\": \"Omega Strikers\", \"fr-FR\": \"Omega Strikers\", \"en-GB\": \"Omega Strikers\", \"es-419\": \"Omega Strikers\", \"ja-JP\": \"Omega Strikers\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/0be1f21ae0caeb91f0eb85679a87118b39c81901666efee0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/810da8f18fa24348c7f6a56a5036263d728f8390689b44de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c1bb88f20368ee0088998c3e559773925d88e18d551e20ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2820/b49d8eb060424b9fd10be404f36d16f1b66fae0ab1097bfd.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/3b449dcf3df668a93d27469cb2bdba1d5ebebf550cebfb04.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/dc2a2e90484740fcbdb7fb769f9ac16cec7a96db7b52d3c1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/c80b0b9cb23ba4a8e1f1479f109a559441143da07c2b8b06.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/6458723e23662437488099577bf69b13ddee0b2a05381e6a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/a3392d8b13b2ef0f5ef5d92d973c9b594bc797fbbba56972.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/1e7e1259dc135e9278e65398bfea4d6329cc6f37a4e4f497.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/d08ddfce180a65f20a1561e55a02b29d7d25b0c1fd2ce4d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2723/ff737dc8d66fd51a7f74599564080f38d052fe06a82268e6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T09:04:35.070000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:05:54.990000Z\", \"playDuration\": \"PT1M7S\"}, {\"titleId\": \"PPSA06776_00\", \"name\": \"Bus Simulator 21 Next Stop\", \"localizedName\": \"Bus Simulator 21 Next Stop\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233251, \"titleIds\": [\"PPSA06775_00\", \"PPSA06776_00\", \"CUSA15259_00\", \"CUSA28757_00\", \"CUSA28760_00\", \"CUSA28758_00\", \"CUSA14925_00\", \"CUSA28759_00\"], \"name\": \"Bus Simulator 21 Next Stop\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bus Simulator 21 Next Stop\", \"uk-UA\": \"Bus Simulator 21 Next Stop\", \"de-DE\": \"Bus Simulator 21 Next Stop\", \"en-US\": \"Bus Simulator 21 Next Stop\", \"ko-KR\": \"Bus Simulator 21 Next Stop\", \"pt-BR\": \"Bus Simulator 21 Next Stop\", \"es-ES\": \"Bus Simulator 21 Next Stop\", \"ar-AE\": \"Bus Simulator 21 Next Stop\", \"no-NO\": \"Bus Simulator 21 Next Stop\", \"fr-CA\": \"Bus Simulator 21 Next Stop\", \"it-IT\": \"Bus Simulator 21 Next Stop\", \"pl-PL\": \"Bus Simulator 21 Next Stop\", \"ru-RU\": \"Bus Simulator 21 Next Stop\", \"zh-Hans\": \"Bus Simulator 21 Next Stop\", \"nl-NL\": \"Bus Simulator 21 Next Stop\", \"pt-PT\": \"Bus Simulator 21 Next Stop\", \"zh-Hant\": \"Bus Simulator 21 Next Stop\", \"sv-SE\": \"Bus Simulator 21 Next Stop\", \"da-DK\": \"Bus Simulator 21 Next Stop\", \"tr-TR\": \"Bus Simulator 21 Next Stop\", \"fr-FR\": \"Bus Simulator 21 Next Stop\", \"en-GB\": \"Bus Simulator 21 Next Stop\", \"es-419\": \"Bus Simulator 21 Next Stop\", \"ja-JP\": \"Bus Simulator 21 Next Stop\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T09:01:22.890000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:03:49.330000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"CUSA14925_00\", \"name\": \"Bus Simulator 21 Next Stop\", \"localizedName\": \"Bus Simulator 21 Next Stop\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 233251, \"titleIds\": [\"PPSA06775_00\", \"PPSA06776_00\", \"CUSA15259_00\", \"CUSA28757_00\", \"CUSA28760_00\", \"CUSA28758_00\", \"CUSA14925_00\", \"CUSA28759_00\"], \"name\": \"Bus Simulator 21 Next Stop\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bus Simulator 21 Next Stop\", \"uk-UA\": \"Bus Simulator 21 Next Stop\", \"de-DE\": \"Bus Simulator 21 Next Stop\", \"en-US\": \"Bus Simulator 21 Next Stop\", \"ko-KR\": \"Bus Simulator 21 Next Stop\", \"pt-BR\": \"Bus Simulator 21 Next Stop\", \"es-ES\": \"Bus Simulator 21 Next Stop\", \"ar-AE\": \"Bus Simulator 21 Next Stop\", \"no-NO\": \"Bus Simulator 21 Next Stop\", \"fr-CA\": \"Bus Simulator 21 Next Stop\", \"it-IT\": \"Bus Simulator 21 Next Stop\", \"pl-PL\": \"Bus Simulator 21 Next Stop\", \"ru-RU\": \"Bus Simulator 21 Next Stop\", \"zh-Hans\": \"Bus Simulator 21 Next Stop\", \"nl-NL\": \"Bus Simulator 21 Next Stop\", \"pt-PT\": \"Bus Simulator 21 Next Stop\", \"zh-Hant\": \"Bus Simulator 21 Next Stop\", \"sv-SE\": \"Bus Simulator 21 Next Stop\", \"da-DK\": \"Bus Simulator 21 Next Stop\", \"tr-TR\": \"Bus Simulator 21 Next Stop\", \"fr-FR\": \"Bus Simulator 21 Next Stop\", \"en-GB\": \"Bus Simulator 21 Next Stop\", \"es-419\": \"Bus Simulator 21 Next Stop\", \"ja-JP\": \"Bus Simulator 21 Next Stop\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/00a35b4f02de65630df0a0cd3931c232a922bfd218757f97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/40524f37b5effb17f2ccfcd25cda7278d790508fb70973f6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/4f76d3719da7f42c52d5b9834635df96cdb7a67b268fad6f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/5e68f3dc8f480976e71918cdd7c473a698ea7ac4f2b582b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/7b0060e8769844e85c71d85fa469c02e5b675d1508d22ada.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/d7269c24c312ee0dc1bd782a93822225c0ee3e9898da7e36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1906/4a1e6dc1ad0fb52a025bd31a2fd383ea154fc965542afb95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1709/48765ab43489a7b1f81b30ba066fd3c00d16a7eb2e8ff9d2.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/6hmbyolgRCVl2RVMAzGxVxsP.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/GNVcTX5P2lLpNRRc1L8UallV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/N1FbKQ2YpTpSV4T5JIMFRFB3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/SqNGN8hIVAr1lcMgSueUhjh1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/kL20HwgugQKcnX5lkWTjCt7a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/l0IJy03lDMqpduSh4Fatf04G.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202108/1313/pdBqbmvvTJP1EARvBXYmOy2y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1512/cd896945e056f0a3d988da93c56a266d19ece0042d7653cf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:37:59.500000Z\", \"lastPlayedDateTime\": \"2023-05-20T09:01:02.900000Z\", \"playDuration\": \"PT46M21S\"}, {\"titleId\": \"PPSA11192_00\", \"name\": \"Pursuit Force (PSP)\", \"localizedName\": \"Pursuit Force (PSP)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006276, \"titleIds\": [\"CUSA37192_00\", \"CUSA37932_00\", \"CUSA37193_00\", \"CUSA37191_00\", \"PPSA10609_00\", \"PPSA10610_00\", \"PPSA10611_00\", \"PPSA11192_00\"], \"name\": \"Pursuit Force (PSP)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pursuit Force\", \"uk-UA\": \"Pursuit Force\", \"de-DE\": \"Pursuit Force\", \"en-US\": \"Pursuit Force (PSP)\", \"ko-KR\": \"\\uccb4\\uc774\\uc2a4 \\uce85\", \"pt-BR\": \"Pursuit Force\", \"es-ES\": \"Pursuit Force\", \"ar-AE\": \"Pursuit Force\", \"no-NO\": \"Pursuit Force\", \"fr-CA\": \"Pursuit Force\", \"it-IT\": \"Pursuit Force\", \"pl-PL\": \"Pursuit Force\", \"ru-RU\": \"Pursuit Force\", \"zh-Hans\": \"Pursuit Force (PSP)\", \"nl-NL\": \"Pursuit Force\", \"pt-PT\": \"Pursuit Force\", \"zh-Hant\": \"Pursuit Force\", \"sv-SE\": \"Pursuit Force\", \"da-DK\": \"Pursuit Force\", \"tr-TR\": \"Pursuit Force\", \"fr-FR\": \"Pursuit Force\", \"en-GB\": \"Pursuit Force\", \"es-419\": \"Pursuit Force\", \"ja-JP\": \"\\u30d1\\u30fc\\u30b9\\u30fc\\u30c8\\u30d5\\u30a9\\u30fc\\u30b9 \\uff5e\\u5927\\u8ffd\\u8de1\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:30:10.370000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:37:13.370000Z\", \"playDuration\": \"PT6M34S\"}, {\"titleId\": \"CUSA37932_00\", \"name\": \"Pursuit Force (PSP)\", \"localizedName\": \"Pursuit Force (PSP)\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006276, \"titleIds\": [\"CUSA37192_00\", \"CUSA37932_00\", \"CUSA37193_00\", \"CUSA37191_00\", \"PPSA10609_00\", \"PPSA10610_00\", \"PPSA10611_00\", \"PPSA11192_00\"], \"name\": \"Pursuit Force (PSP)\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pursuit Force\", \"uk-UA\": \"Pursuit Force\", \"de-DE\": \"Pursuit Force\", \"en-US\": \"Pursuit Force (PSP)\", \"ko-KR\": \"\\uccb4\\uc774\\uc2a4 \\uce85\", \"pt-BR\": \"Pursuit Force\", \"es-ES\": \"Pursuit Force\", \"ar-AE\": \"Pursuit Force\", \"no-NO\": \"Pursuit Force\", \"fr-CA\": \"Pursuit Force\", \"it-IT\": \"Pursuit Force\", \"pl-PL\": \"Pursuit Force\", \"ru-RU\": \"Pursuit Force\", \"zh-Hans\": \"Pursuit Force (PSP)\", \"nl-NL\": \"Pursuit Force\", \"pt-PT\": \"Pursuit Force\", \"zh-Hant\": \"Pursuit Force\", \"sv-SE\": \"Pursuit Force\", \"da-DK\": \"Pursuit Force\", \"tr-TR\": \"Pursuit Force\", \"fr-FR\": \"Pursuit Force\", \"en-GB\": \"Pursuit Force\", \"es-419\": \"Pursuit Force\", \"ja-JP\": \"\\u30d1\\u30fc\\u30b9\\u30fc\\u30c8\\u30d5\\u30a9\\u30fc\\u30b9 \\uff5e\\u5927\\u8ffd\\u8de1\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/3c7c5a76141842915a944d7b32aca3fd2ab937b6db3d0944.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/50592ce3feaf866ca292cefc206a92c9f01ff626efa89b76.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c8b85f703e29705a530906564136e2a7f2c12d0b1f1e55e6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c4b8091b1da7a100d1c69fed6df502a457e040b66a033135.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/e570793310107011c47121c0dfd6e145e3cad6e2147f1b10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/593f626e32d0f18977742100309e1c32680ad6ac05113590.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/357175251478548f106854d6d95a893c6386371534aab88e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/274b84d50180599c7ab5ba9711c2d8236d9a70a200e4bd0b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/c375d7c5c8707de11d85772a2e8e2d15d986f7326fa5ee97.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/28637011a768cd90045910e46d7352934beae5100df06218.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/f2d9f64d5474840ddf15c1b2d77743b508a5b554ebbfd89c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/8de3eadb6ad6781c2a64ddae7de121a5f6e3899684a1e844.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1018/21ceb8a8276085539f75c270f739995cc804252838f03dcc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:23:22.930000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:30:04.220000Z\", \"playDuration\": \"PT6M31S\"}, {\"titleId\": \"PPSA11139_00\", \"name\": \"Blade Dancer: Lineage of Light\", \"localizedName\": \"Blade Dancer: Lineage of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006483, \"titleIds\": [\"CUSA37873_00\", \"PPSA11137_00\", \"PPSA11140_00\", \"PPSA11138_00\", \"PPSA11139_00\", \"CUSA37872_00\", \"CUSA37870_00\", \"CUSA37871_00\"], \"name\": \"Blade Dancer: Lineage of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blade Dancer: Lineage of Light\", \"uk-UA\": \"Blade Dancer: Lineage of Light\", \"de-DE\": \"Blade Dancer: Lineage of Light\", \"en-US\": \"Blade Dancer: Lineage of Light\", \"ko-KR\": \"Blade Dancer: Lineage of Light\", \"pt-BR\": \"Blade Dancer: Lineage of Light\", \"es-ES\": \"Blade Dancer: Lineage of Light\", \"ar-AE\": \"Blade Dancer: Lineage of Light\", \"no-NO\": \"Blade Dancer: Lineage of Light\", \"fr-CA\": \"Blade Dancer: Lineage of Light\", \"it-IT\": \"Blade Dancer: Lineage of Light\", \"pl-PL\": \"Blade Dancer: Lineage of Light\", \"ru-RU\": \"Blade Dancer: Lineage of Light\", \"zh-Hans\": \"\\u5251\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7ea6\\u5b9a\", \"nl-NL\": \"Blade Dancer: Lineage of Light\", \"pt-PT\": \"Blade Dancer: Lineage of Light\", \"zh-Hant\": \"\\u528d\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7d04\\u5b9a\", \"sv-SE\": \"Blade Dancer: Lineage of Light\", \"da-DK\": \"Blade Dancer: Lineage of Light\", \"tr-TR\": \"Blade Dancer: Lineage of Light\", \"fr-FR\": \"Blade Dancer: Lineage of Light\", \"en-GB\": \"Blade Dancer: Lineage of Light\", \"es-419\": \"Blade Dancer: Lineage of Light\", \"ja-JP\": \"\\u30d6\\u30ec\\u30a4\\u30c9\\u30c0\\u30f3\\u30b5\\u30fc \\u5343\\u5e74\\u306e\\u7d04\\u675f\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:19:04.280000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:22:21.150000Z\", \"playDuration\": \"PT3M10S\"}, {\"titleId\": \"CUSA37872_00\", \"name\": \"Blade Dancer: Lineage of Light\", \"localizedName\": \"Blade Dancer: Lineage of Light\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 10006483, \"titleIds\": [\"CUSA37873_00\", \"PPSA11137_00\", \"PPSA11140_00\", \"PPSA11138_00\", \"PPSA11139_00\", \"CUSA37872_00\", \"CUSA37870_00\", \"CUSA37871_00\"], \"name\": \"Blade Dancer: Lineage of Light\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Blade Dancer: Lineage of Light\", \"uk-UA\": \"Blade Dancer: Lineage of Light\", \"de-DE\": \"Blade Dancer: Lineage of Light\", \"en-US\": \"Blade Dancer: Lineage of Light\", \"ko-KR\": \"Blade Dancer: Lineage of Light\", \"pt-BR\": \"Blade Dancer: Lineage of Light\", \"es-ES\": \"Blade Dancer: Lineage of Light\", \"ar-AE\": \"Blade Dancer: Lineage of Light\", \"no-NO\": \"Blade Dancer: Lineage of Light\", \"fr-CA\": \"Blade Dancer: Lineage of Light\", \"it-IT\": \"Blade Dancer: Lineage of Light\", \"pl-PL\": \"Blade Dancer: Lineage of Light\", \"ru-RU\": \"Blade Dancer: Lineage of Light\", \"zh-Hans\": \"\\u5251\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7ea6\\u5b9a\", \"nl-NL\": \"Blade Dancer: Lineage of Light\", \"pt-PT\": \"Blade Dancer: Lineage of Light\", \"zh-Hant\": \"\\u528d\\u821e\\u8005\\uff1a\\u5343\\u5e74\\u4e4b\\u7d04\\u5b9a\", \"sv-SE\": \"Blade Dancer: Lineage of Light\", \"da-DK\": \"Blade Dancer: Lineage of Light\", \"tr-TR\": \"Blade Dancer: Lineage of Light\", \"fr-FR\": \"Blade Dancer: Lineage of Light\", \"en-GB\": \"Blade Dancer: Lineage of Light\", \"es-419\": \"Blade Dancer: Lineage of Light\", \"ja-JP\": \"\\u30d6\\u30ec\\u30a4\\u30c9\\u30c0\\u30f3\\u30b5\\u30fc \\u5343\\u5e74\\u306e\\u7d04\\u675f\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6584d88a73f574576ca3b2598a4854581d30994fefef998a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3013a5e5a84d1afe7aafea898812aa1dc9a53fc32ad386fa.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/f469e222bd1048a69b55bb88e4e3cd3309794805c4f5fdc3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6d03df8e06987a4443ebde6028a6cbb560b90a8c97567e96.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/7a4d7302a7b6b56ee38b52f7d9562a9fb7cae87bd2dd5431.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/6814b298e5dbfeecee81b43493975ddc2c276c14b57fab58.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/181b3e94b80ce7a2ecd2f1cfbede0996d3e7a3fcd8088ad2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/3b9ff81b4713281c948ded3bd157e1652ea877b76772650e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/e0da3360a943c1785cb07b84f5488c42593823859163a56c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/60982266686f4fdada4a3a1ea7e8a005f2b5477fc92d5a16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/5c26d4d4173503953784aa598fe3f7213c080fb05dcc6156.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/56719b9e4f15503ef79d5e9967cfa678eb38872472f398d7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0900/fca91e3a77fcc7ed090031d6b05a25afe6adc5e36a751e28.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:05:36.420000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:18:58.940000Z\", \"playDuration\": \"PT12M49S\"}, {\"titleId\": \"PPSA10886_00\", \"name\": \"Weird West: Definitive Edition\", \"localizedName\": \"Weird West: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"category\": \"ps5_native_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234916, \"titleIds\": [\"CUSA17337_00\", \"PPSA10886_00\", \"PPSA10887_00\", \"CUSA17598_00\"], \"name\": \"Weird West: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Weird West: Definitive Edition\", \"uk-UA\": \"Weird West: Definitive Edition\", \"de-DE\": \"Weird West: Definitive Edition\", \"en-US\": \"Weird West: Definitive Edition\", \"ko-KR\": \"Weird West: Definitive Edition\", \"pt-BR\": \"Weird West: Definitive Edition\", \"es-ES\": \"Weird West: Definitive Edition\", \"ar-AE\": \"Weird West: Definitive Edition\", \"no-NO\": \"Weird West: Definitive Edition\", \"fr-CA\": \"Weird West: Definitive Edition\", \"it-IT\": \"Weird West: Definitive Edition\", \"pl-PL\": \"Weird West: Definitive Edition\", \"ru-RU\": \"Weird West: Definitive Edition\", \"zh-Hans\": \"Weird West: Definitive Edition\", \"nl-NL\": \"Weird West: Definitive Edition\", \"pt-PT\": \"Weird West: Definitive Edition\", \"zh-Hant\": \"Weird West: Definitive Edition\", \"sv-SE\": \"Weird West: Definitive Edition\", \"da-DK\": \"Weird West: Definitive Edition\", \"tr-TR\": \"Weird West: Definitive Edition\", \"fr-FR\": \"Weird West: Definitive Edition\", \"en-GB\": \"Weird West: Definitive Edition\", \"es-419\": \"Weird West: Definitive Edition\", \"ja-JP\": \"Weird West: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T04:00:35.390000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:03:32.530000Z\", \"playDuration\": \"PT2M50S\"}, {\"titleId\": \"CUSA17598_00\", \"name\": \"Weird West: Definitive Edition\", \"localizedName\": \"Weird West: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"category\": \"ps4_game\", \"service\": \"ps_plus\", \"playCount\": 1, \"concept\": {\"id\": 234916, \"titleIds\": [\"CUSA17337_00\", \"PPSA10886_00\", \"PPSA10887_00\", \"CUSA17598_00\"], \"name\": \"Weird West: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Weird West: Definitive Edition\", \"uk-UA\": \"Weird West: Definitive Edition\", \"de-DE\": \"Weird West: Definitive Edition\", \"en-US\": \"Weird West: Definitive Edition\", \"ko-KR\": \"Weird West: Definitive Edition\", \"pt-BR\": \"Weird West: Definitive Edition\", \"es-ES\": \"Weird West: Definitive Edition\", \"ar-AE\": \"Weird West: Definitive Edition\", \"no-NO\": \"Weird West: Definitive Edition\", \"fr-CA\": \"Weird West: Definitive Edition\", \"it-IT\": \"Weird West: Definitive Edition\", \"pl-PL\": \"Weird West: Definitive Edition\", \"ru-RU\": \"Weird West: Definitive Edition\", \"zh-Hans\": \"Weird West: Definitive Edition\", \"nl-NL\": \"Weird West: Definitive Edition\", \"pt-PT\": \"Weird West: Definitive Edition\", \"zh-Hant\": \"Weird West: Definitive Edition\", \"sv-SE\": \"Weird West: Definitive Edition\", \"da-DK\": \"Weird West: Definitive Edition\", \"tr-TR\": \"Weird West: Definitive Edition\", \"fr-FR\": \"Weird West: Definitive Edition\", \"en-GB\": \"Weird West: Definitive Edition\", \"es-419\": \"Weird West: Definitive Edition\", \"ja-JP\": \"Weird West: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202110/2506/8TJ6qxG54FHhFNto42IQTM4v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/40e89084a34747b485748423e345befda81d2deee404b34a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2123/wx9qCU7kfLexalcgJa2J2g7Z.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202111/0114/BUGeWlcQof9VBCnh5a5HcYtP.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0823/0b2ecc1a06cf47b1418bd1efa11fd0fb12124cc284e71c28.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0546f63215b63939f652f16a04987a55838de2bc00bc4ebb.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/28gm6JBkMt7cKrrIsxr5f8xD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/CwHUDgv1JZHtkeBkaYQ7FD5g.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/LjYfRpgBNHVSFNQxMFaIL6TO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0409/GzxrtcI8KCcy4ckMoT7LA95w.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/fLpMUlAyPgXwPdnvOAa7eIiY.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/xFjqsIGLfuQ7D4Sz23wlZtfW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/TEzzqFfbVJN57TGxlynkl4dq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/i1gbiHeaN7D7uWPOFCZSwRZS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/empd1Y1LTm6h4A1z7yrNDxeW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/3023/JWMti9gA38aVfSDwwFy9mRnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0517/0e63f17ba1f80d4f5d7d7628bbc0d1e018c74edd9f00739b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T03:56:13.810000Z\", \"lastPlayedDateTime\": \"2023-05-20T04:00:31.020000Z\", \"playDuration\": \"PT3M5S\"}, {\"titleId\": \"PPSA11038_00\", \"name\": \"Warlander\", \"localizedName\": \"Warlander\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003872, \"titleIds\": [\"PPSA11038_00\", \"PPSA11051_00\", \"PPSA11047_00\"], \"name\": \"Warlander\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/048cc2424bf4ebfb307d94fe9d2aa60ba3713675869285f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/162e1e79477591405440ea476a8ad61da85ac5a5b948794a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/a3fe5312690d273f2bfd3bef050c0abf4105e0bfe3b8e10d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/26e384db898dc153908afeaaecf8972c9a632bd694338970.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/41f98646304dcaa4c61dc8565d6a84a02de8e38ec784cf0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/b1c62c4c4612f95e995906cd76f0eb083044f6970f17bd79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/120822ff84d0eb5c0ce8618cd95757f9f0880b1af99cb6a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/5556f448a243a31890f1af0217c3bf809ed5fd7f468aa353.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/89f2f08fc06670dfd012100e9322d0f7de01166df6ee711c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/ffe01c501222c36896ece5ec4dd1886d8632d7761a629673.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feee1bb5c9ae62e81f0daaf746156aaa00e5f8476888802c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/3747d9991e662281d81cd5b0eb0355165ed03fb9ab4229d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/23225fc0911a721fd876559e92ab7aa5913ac2fd7769ac22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feae5c03af1c7ae6c45b7e4afc8ef9784b78b37a989c7bfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/c2f29a1fb3c9a0f4c488065e5d658fb5b1fac8f14ae228a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Warlander\", \"uk-UA\": \"Warlander\", \"de-DE\": \"Warlander\", \"en-US\": \"Warlander\", \"ko-KR\": \"Warlander\", \"pt-BR\": \"Warlander\", \"es-ES\": \"Warlander\", \"ar-AE\": \"Warlander\", \"no-NO\": \"Warlander\", \"fr-CA\": \"Warlander\", \"it-IT\": \"Warlander\", \"pl-PL\": \"Warlander\", \"ru-RU\": \"Warlander\", \"zh-Hans\": \"Warlander\", \"nl-NL\": \"Warlander\", \"pt-PT\": \"Warlander\", \"zh-Hant\": \"Warlander\", \"sv-SE\": \"Warlander\", \"da-DK\": \"Warlander\", \"tr-TR\": \"Warlander\", \"fr-FR\": \"Warlander\", \"en-GB\": \"Warlander\", \"es-419\": \"Warlander\", \"ja-JP\": \"Warlander\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/048cc2424bf4ebfb307d94fe9d2aa60ba3713675869285f4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/162e1e79477591405440ea476a8ad61da85ac5a5b948794a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/a3fe5312690d273f2bfd3bef050c0abf4105e0bfe3b8e10d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1111/26e384db898dc153908afeaaecf8972c9a632bd694338970.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/41f98646304dcaa4c61dc8565d6a84a02de8e38ec784cf0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/b1c62c4c4612f95e995906cd76f0eb083044f6970f17bd79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/120822ff84d0eb5c0ce8618cd95757f9f0880b1af99cb6a3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/5556f448a243a31890f1af0217c3bf809ed5fd7f468aa353.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/89f2f08fc06670dfd012100e9322d0f7de01166df6ee711c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/ffe01c501222c36896ece5ec4dd1886d8632d7761a629673.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feee1bb5c9ae62e81f0daaf746156aaa00e5f8476888802c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/3747d9991e662281d81cd5b0eb0355165ed03fb9ab4229d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/23225fc0911a721fd876559e92ab7aa5913ac2fd7769ac22.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/feae5c03af1c7ae6c45b7e4afc8ef9784b78b37a989c7bfa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0312/c2f29a1fb3c9a0f4c488065e5d658fb5b1fac8f14ae228a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2813/67a6f8e47526a28f2e1f0cf422e84ff3c68b25fe67e2b117.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T02:00:37.190000Z\", \"lastPlayedDateTime\": \"2023-05-20T02:15:57.230000Z\", \"playDuration\": \"PT14M42S\"}, {\"titleId\": \"CUSA31022_00\", \"name\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"localizedName\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10003190, \"titleIds\": [\"CUSA31023_00\", \"CUSA31022_00\", \"PPSA05662_00\", \"CUSA31024_00\", \"CUSA31025_00\", \"PPSA05663_00\", \"PPSA05664_00\", \"PPSA05665_00\"], \"name\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/i9Oif0aN1Sgm3q1QBzKTngPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/dmHZsYBMraNSMNqoitG0NywS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/GER7egWuV3Tr9XXXvBf1kds1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/WsPRHSyjtu77nOX6C6RUUeBn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0508/hfrtyucbxYjWuGSwpffaD8yz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/UJaOX0MTWInANZfV0BptRWfe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/KL9xpHisYjXEjWezz6htHTXS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/vUWdblTDS377HVZ3oSkXtvNw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/aj5IrdnMhuwuaJazhtlHGanl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/GsGuzB6QA5esti1LIFtoMC7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/ZK8k7BFZF2DecQVy1VvMnjaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/t4dEf5OxqszmB4CVP0qVY0TB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/S7hER9LSPID4CHYXLD2xBdLE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/RPn988wuquWRCERjTuAWCGwR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/7wv4a8QdqIupwJM8WXxQ3one.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"uk-UA\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"de-DE\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"en-US\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ko-KR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"pt-BR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"es-ES\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ar-AE\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"no-NO\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"fr-CA\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"it-IT\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"pl-PL\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ru-RU\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"zh-Hans\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"nl-NL\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"pt-PT\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"zh-Hant\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"sv-SE\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"da-DK\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"tr-TR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"fr-FR\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"en-GB\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"es-419\": \"Warhammer 40,000: Shootas, Blood & Teef\", \"ja-JP\": \"Warhammer 40,000: Shootas, Blood & Teef\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/i9Oif0aN1Sgm3q1QBzKTngPa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/dmHZsYBMraNSMNqoitG0NywS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2813/GER7egWuV3Tr9XXXvBf1kds1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/WsPRHSyjtu77nOX6C6RUUeBn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0508/hfrtyucbxYjWuGSwpffaD8yz.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1418/UJaOX0MTWInANZfV0BptRWfe.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/KL9xpHisYjXEjWezz6htHTXS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/vUWdblTDS377HVZ3oSkXtvNw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/aj5IrdnMhuwuaJazhtlHGanl.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/GsGuzB6QA5esti1LIFtoMC7x.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/ZK8k7BFZF2DecQVy1VvMnjaa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/t4dEf5OxqszmB4CVP0qVY0TB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/S7hER9LSPID4CHYXLD2xBdLE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/RPn988wuquWRCERjTuAWCGwR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202209/2914/7wv4a8QdqIupwJM8WXxQ3one.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2014/Lu09FkROWfPxQdrs0Tz87Uhn.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T01:55:32.890000Z\", \"lastPlayedDateTime\": \"2023-05-20T01:58:34.090000Z\", \"playDuration\": \"PT2M57S\"}, {\"titleId\": \"CUSA26370_00\", \"name\": \"NEW Joe & Mac - Caveman Ninja\", \"localizedName\": \"NEW Joe & Mac - Caveman Ninja\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10002233, \"titleIds\": [\"PPSA02801_00\", \"CUSA26371_00\", \"CUSA26370_00\", \"PPSA02804_00\"], \"name\": \"NEW Joe & Mac - Caveman Ninja\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/g3oZ6FoJwstOyimQ7F5W3ows.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/IiyPPQimPYqGCLSGjlRw5oAp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/oADtf8ZFf2Pf7jkNBlLAL33D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/bqnlWFLdA3U5UVf5jc54S7XG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/5FIY7GPcKFDL3drnmUIRe5do.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/9rg5PzFiQZWJFFb5hSWFafwO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/FWkNpyCsXEgQCWzHlptlqPei.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/q3qNFVVsOQqMHZS77KtXiKnB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZL5PBSVHbMfTWbhAV9CnsKbA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZusjBJcNZ4qAEDxrbrMLqYuv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"NEW Joe & Mac - Caveman Ninja\", \"uk-UA\": \"NEW Joe & Mac - Caveman Ninja\", \"de-DE\": \"NEW Joe & Mac - Caveman Ninja\", \"en-US\": \"NEW Joe & Mac - Caveman Ninja\", \"ko-KR\": \"NEW Joe & Mac - Caveman Ninja\", \"pt-BR\": \"NEW Joe & Mac - Caveman Ninja\", \"es-ES\": \"NEW Joe & Mac - Caveman Ninja\", \"ar-AE\": \"NEW Joe & Mac - Caveman Ninja\", \"no-NO\": \"NEW Joe & Mac - Caveman Ninja\", \"fr-CA\": \"NEW Joe & Mac - Caveman Ninja\", \"it-IT\": \"NEW Joe & Mac - Caveman Ninja\", \"pl-PL\": \"NEW Joe & Mac - Caveman Ninja\", \"ru-RU\": \"NEW Joe & Mac - Caveman Ninja\", \"zh-Hans\": \"NEW Joe & Mac - Caveman Ninja\", \"nl-NL\": \"NEW Joe & Mac - Caveman Ninja\", \"pt-PT\": \"NEW Joe & Mac - Caveman Ninja\", \"zh-Hant\": \"NEW Joe & Mac - Caveman Ninja\", \"sv-SE\": \"NEW Joe & Mac - Caveman Ninja\", \"da-DK\": \"NEW Joe & Mac - Caveman Ninja\", \"tr-TR\": \"NEW Joe & Mac - Caveman Ninja\", \"fr-FR\": \"NEW Joe & Mac - Caveman Ninja\", \"en-GB\": \"NEW Joe & Mac - Caveman Ninja\", \"es-419\": \"NEW Joe & Mac - Caveman Ninja\", \"ja-JP\": \"NEW Joe & Mac - Caveman Ninja\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/g3oZ6FoJwstOyimQ7F5W3ows.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/IiyPPQimPYqGCLSGjlRw5oAp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/oADtf8ZFf2Pf7jkNBlLAL33D.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/bqnlWFLdA3U5UVf5jc54S7XG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/5FIY7GPcKFDL3drnmUIRe5do.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/9rg5PzFiQZWJFFb5hSWFafwO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/FWkNpyCsXEgQCWzHlptlqPei.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/q3qNFVVsOQqMHZS77KtXiKnB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZL5PBSVHbMfTWbhAV9CnsKbA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/ZusjBJcNZ4qAEDxrbrMLqYuv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0416/xLvz1CCnCJBGerpWL3CstW0F.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-20T01:50:24.580000Z\", \"lastPlayedDateTime\": \"2023-05-20T01:54:33.490000Z\", \"playDuration\": \"PT4M3S\"}, {\"titleId\": \"CUSA43501_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T16:33:52.810000Z\", \"lastPlayedDateTime\": \"2023-05-19T17:16:26.130000Z\", \"playDuration\": \"PT42M14S\"}, {\"titleId\": \"CUSA43500_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T15:48:31.670000Z\", \"lastPlayedDateTime\": \"2023-05-19T16:33:49.590000Z\", \"playDuration\": \"PT45M3S\"}, {\"titleId\": \"CUSA43498_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T15:02:23.780000Z\", \"lastPlayedDateTime\": \"2023-05-19T15:46:19.620000Z\", \"playDuration\": \"PT43M52S\"}, {\"titleId\": \"CUSA43499_00\", \"name\": \"Cubic Figures 2\", \"localizedName\": \"Cubic Figures 2\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008433, \"titleIds\": [\"PPSA16761_00\", \"PPSA16759_00\", \"PPSA16760_00\", \"CUSA43499_00\", \"CUSA43498_00\", \"CUSA43500_00\", \"CUSA43501_00\", \"PPSA16762_00\"], \"name\": \"Cubic Figures 2\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures 2\", \"uk-UA\": \"Cubic Figures 2\", \"de-DE\": \"Cubic Figures 2\", \"en-US\": \"Cubic Figures 2\", \"ko-KR\": \"Cubic Figures 2\", \"pt-BR\": \"Cubic Figures 2\", \"es-ES\": \"Cubic Figures 2\", \"ar-AE\": \"Cubic Figures 2\", \"no-NO\": \"Cubic Figures 2\", \"fr-CA\": \"Cubic Figures 2\", \"it-IT\": \"Cubic Figures 2\", \"pl-PL\": \"Cubic Figures 2\", \"ru-RU\": \"Cubic Figures 2\", \"zh-Hans\": \"Cubic Figures 2\", \"nl-NL\": \"Cubic Figures 2\", \"pt-PT\": \"Cubic Figures 2\", \"zh-Hant\": \"Cubic Figures 2\", \"sv-SE\": \"Cubic Figures 2\", \"da-DK\": \"Cubic Figures 2\", \"tr-TR\": \"Cubic Figures 2\", \"fr-FR\": \"Cubic Figures 2\", \"en-GB\": \"Cubic Figures 2\", \"es-419\": \"Cubic Figures 2\", \"ja-JP\": \"Cubic Figures 2\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/46370f49a461254b07723336f13ee8038bbc60396d01a39b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/f8b834a922e5492e38d1ba5709e1de9203f2c700a493d828.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0bf4f52b1269c196703127fc8d65efbdedee197f1ee680e4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5ab06c71abf70f30ea0da84004ba78b7a94433104fabd8b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/0d21f48ccc8e662db13a1418845e2cc1d0b199bf1e4a062c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/d2486d21cddf24e7bd360a000993c72414797e2e2b706330.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/e8488790aa01762c7c77e5e0cd47b9cb5ce943383fc0c465.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/cd5e3410a6de2a2a66cf4ff8fca282a959bbab35b0852847.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/3018/5370a822cb0c2e075bbf91ec480862b51862dcb2a79b7331.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2419/c6e7eab83acc86dcfb783bedd758a1497219466314739aa3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T13:52:08.260000Z\", \"lastPlayedDateTime\": \"2023-05-19T15:00:20.010000Z\", \"playDuration\": \"PT1H8M1S\"}, {\"titleId\": \"CUSA43473_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T13:07:06.960000Z\", \"lastPlayedDateTime\": \"2023-05-19T13:41:34.640000Z\", \"playDuration\": \"PT28M49S\"}, {\"titleId\": \"CUSA43472_00\", \"name\": \"BlackJack Waifu Tour\", \"localizedName\": \"BlackJack Waifu Tour\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 15, \"concept\": {\"id\": 10008423, \"titleIds\": [\"PPSA16545_00\", \"PPSA16546_00\", \"CUSA43473_00\", \"CUSA43664_00\", \"CUSA43472_00\", \"PPSA16765_00\"], \"name\": \"BlackJack Waifu Tour\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"BlackJack Waifu Tour\", \"uk-UA\": \"BlackJack Waifu Tour\", \"de-DE\": \"BlackJack Waifu Tour\", \"en-US\": \"BlackJack Waifu Tour\", \"ko-KR\": \"BlackJack Waifu Tour\", \"pt-BR\": \"BlackJack Waifu Tour\", \"es-ES\": \"BlackJack Waifu Tour\", \"ar-AE\": \"BlackJack Waifu Tour\", \"no-NO\": \"BlackJack Waifu Tour\", \"fr-CA\": \"BlackJack Waifu Tour\", \"it-IT\": \"BlackJack Waifu Tour\", \"pl-PL\": \"BlackJack Waifu Tour\", \"ru-RU\": \"BlackJack Waifu Tour\", \"zh-Hans\": \"BlackJack Waifu Tour\", \"nl-NL\": \"BlackJack Waifu Tour\", \"pt-PT\": \"BlackJack Waifu Tour\", \"zh-Hant\": \"BlackJack Waifu Tour\", \"sv-SE\": \"BlackJack Waifu Tour\", \"da-DK\": \"BlackJack Waifu Tour\", \"tr-TR\": \"BlackJack Waifu Tour\", \"fr-FR\": \"BlackJack Waifu Tour\", \"en-GB\": \"BlackJack Waifu Tour\", \"es-419\": \"BlackJack Waifu Tour\", \"ja-JP\": \"BlackJack Waifu Tour\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/bd62b185b24ff574e2a04928b66bd30d069a5fc6280dd069.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/a2bed9d7e0d88d9f398f3821221240cd86cabb3753bbe95c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/b7ea906063012bc037aa00278bb8a2d1679d5bd93cf6f31e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/eb3343b951bbe851f9265b47a40f06344595054d96cbc2b8.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/535b18a2cffc373350fe16bfaa869eefcd91c92d3f540e40.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/074d96895dce2a578f86cc12372fa000a249652b349bedb6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/1771a57c7f002bd0b82943a8d3541637dc77c63ddbc01919.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/675eff0431c5e1be04c14aaf523c0775770862980947e9bb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/7253494e5384de2c7ba6432435839bfc324f856d172c8e24.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/4bd29f41e03485ca893543e45b725e3fbd58e1bd60a90b39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0216/d8802932fb4b725f456806a4b7d796f4ff0c93cdaa783671.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/1608/109d9f00d56db4617359d1b64508647752a1e58ce732d34f.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T12:30:56.850000Z\", \"lastPlayedDateTime\": \"2023-05-19T13:07:00.710000Z\", \"playDuration\": \"PT21M32S\"}, {\"titleId\": \"CUSA42915_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T12:23:00.470000Z\", \"lastPlayedDateTime\": \"2023-05-19T12:25:00.380000Z\", \"playDuration\": \"PT1M51S\"}, {\"titleId\": \"PPSA05075_00\", \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"localizedName\": \"The Adventures of Elena Temple: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003687, \"titleIds\": [\"PPSA05075_00\", \"PPSA05076_00\", \"CUSA30093_00\", \"CUSA30092_00\", \"CUSA30091_00\"], \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Adventures of Elena Temple: Definitive Edition\", \"uk-UA\": \"The Adventures of Elena Temple: Definitive Edition\", \"de-DE\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-US\": \"The Adventures of Elena Temple: Definitive Edition\", \"ko-KR\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-BR\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-ES\": \"The Adventures of Elena Temple: Definitive Edition\", \"ar-AE\": \"The Adventures of Elena Temple: Definitive Edition\", \"no-NO\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-CA\": \"The Adventures of Elena Temple: Definitive Edition\", \"it-IT\": \"The Adventures of Elena Temple: Definitive Edition\", \"pl-PL\": \"The Adventures of Elena Temple: Definitive Edition\", \"ru-RU\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hans\": \"The Adventures of Elena Temple: Definitive Edition\", \"nl-NL\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-PT\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hant\": \"The Adventures of Elena Temple: Definitive Edition\", \"sv-SE\": \"The Adventures of Elena Temple: Definitive Edition\", \"da-DK\": \"The Adventures of Elena Temple: Definitive Edition\", \"tr-TR\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-FR\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-GB\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-419\": \"The Adventures of Elena Temple: Definitive Edition\", \"ja-JP\": \"The Adventures of Elena Temple: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-19T10:54:44.720000Z\", \"lastPlayedDateTime\": \"2023-05-19T12:05:52.880000Z\", \"playDuration\": \"PT1H10M14S\"}, {\"titleId\": \"CUSA30091_00\", \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"localizedName\": \"The Adventures of Elena Temple: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003687, \"titleIds\": [\"PPSA05075_00\", \"PPSA05076_00\", \"CUSA30093_00\", \"CUSA30092_00\", \"CUSA30091_00\"], \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Adventures of Elena Temple: Definitive Edition\", \"uk-UA\": \"The Adventures of Elena Temple: Definitive Edition\", \"de-DE\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-US\": \"The Adventures of Elena Temple: Definitive Edition\", \"ko-KR\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-BR\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-ES\": \"The Adventures of Elena Temple: Definitive Edition\", \"ar-AE\": \"The Adventures of Elena Temple: Definitive Edition\", \"no-NO\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-CA\": \"The Adventures of Elena Temple: Definitive Edition\", \"it-IT\": \"The Adventures of Elena Temple: Definitive Edition\", \"pl-PL\": \"The Adventures of Elena Temple: Definitive Edition\", \"ru-RU\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hans\": \"The Adventures of Elena Temple: Definitive Edition\", \"nl-NL\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-PT\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hant\": \"The Adventures of Elena Temple: Definitive Edition\", \"sv-SE\": \"The Adventures of Elena Temple: Definitive Edition\", \"da-DK\": \"The Adventures of Elena Temple: Definitive Edition\", \"tr-TR\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-FR\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-GB\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-419\": \"The Adventures of Elena Temple: Definitive Edition\", \"ja-JP\": \"The Adventures of Elena Temple: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T13:41:11.670000Z\", \"lastPlayedDateTime\": \"2023-05-18T15:57:42.930000Z\", \"playDuration\": \"PT2H16M26S\"}, {\"titleId\": \"CUSA30092_00\", \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"localizedName\": \"The Adventures of Elena Temple: Definitive Edition\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10003687, \"titleIds\": [\"PPSA05075_00\", \"PPSA05076_00\", \"CUSA30093_00\", \"CUSA30092_00\", \"CUSA30091_00\"], \"name\": \"The Adventures of Elena Temple: Definitive Edition\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Adventures of Elena Temple: Definitive Edition\", \"uk-UA\": \"The Adventures of Elena Temple: Definitive Edition\", \"de-DE\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-US\": \"The Adventures of Elena Temple: Definitive Edition\", \"ko-KR\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-BR\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-ES\": \"The Adventures of Elena Temple: Definitive Edition\", \"ar-AE\": \"The Adventures of Elena Temple: Definitive Edition\", \"no-NO\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-CA\": \"The Adventures of Elena Temple: Definitive Edition\", \"it-IT\": \"The Adventures of Elena Temple: Definitive Edition\", \"pl-PL\": \"The Adventures of Elena Temple: Definitive Edition\", \"ru-RU\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hans\": \"The Adventures of Elena Temple: Definitive Edition\", \"nl-NL\": \"The Adventures of Elena Temple: Definitive Edition\", \"pt-PT\": \"The Adventures of Elena Temple: Definitive Edition\", \"zh-Hant\": \"The Adventures of Elena Temple: Definitive Edition\", \"sv-SE\": \"The Adventures of Elena Temple: Definitive Edition\", \"da-DK\": \"The Adventures of Elena Temple: Definitive Edition\", \"tr-TR\": \"The Adventures of Elena Temple: Definitive Edition\", \"fr-FR\": \"The Adventures of Elena Temple: Definitive Edition\", \"en-GB\": \"The Adventures of Elena Temple: Definitive Edition\", \"es-419\": \"The Adventures of Elena Temple: Definitive Edition\", \"ja-JP\": \"The Adventures of Elena Temple: Definitive Edition\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Tka9jbpjyF8kCnxZmjZ2Qth1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/3RIBYO4RIX0m5eYM3TNqEzth.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/AUCydJy5HzME692QuWezjbuC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Urm81aosaBV0yWfzFQkAv8gn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FAf6gMdbpwtNfrgk97etHbVt.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/bafMBpmdje0BaABUlaO91vlg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/HVfXSKCnGpSelrd7sovKBkBo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/FseEjHzBpKvBBdoswpmoDgvS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/Q6bxxwN4j6DHBAfWXb44O3T5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/zNJ4OHuLX4gMZ2jPU5CHvKr6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/fGPZL4R0UUBi2H63Ihr7bFS3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/gxT0jcrwEG4cfE5Z4YHr7amm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/lkHZAv8X1eElcwTtKvKx59tv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/SHjqqHkUkreNkN6GRBLRmbdy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/0O6zWO9CTkq2UOuCBEgSmYJ0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/L8Bpt82jJfYeMB4EB6TlHuKq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0913/7DApfoyWjOrCOmfQvfz04TdS.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T11:37:59.690000Z\", \"lastPlayedDateTime\": \"2023-05-18T13:39:42.650000Z\", \"playDuration\": \"PT1H56M5S\"}, {\"titleId\": \"CUSA24043_00\", \"name\": \"Hitchhiker - A Mystery Game\", \"localizedName\": \"Hitchhiker - A Mystery Game\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234556, \"titleIds\": [\"CUSA16454_00\", \"CUSA24043_00\", \"CUSA16674_00\"], \"name\": \"Hitchhiker - A Mystery Game\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/owyuu06bxX9qFvDQiYtPRJbW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/iZ2mZxQWBvIVMIFKpLXYYeVq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/U6qwow5ul0HOvRzzzipA4TnM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/VzgVe80wZ2HhFYqHzyh0Kg1j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/Wj2plUI48GvRjMXCIwYvQlZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/42OsMQdwYSTJ87nXqCoeA1Ai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/NzenRbAF62RPP2tQdeZNY2ZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/OWTf3Szv5Be7fftPYwJCGho1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/c9ShcVYKon6Bz0KvNzdz9nDo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hitchhiker - A Mystery Game\", \"uk-UA\": \"Hitchhiker - A Mystery Game\", \"de-DE\": \"Hitchhiker - A Mystery Game\", \"en-US\": \"Hitchhiker - A Mystery Game\", \"ko-KR\": \"Hitchhiker - A Mystery Game\", \"pt-BR\": \"Hitchhiker - A Mystery Game\", \"es-ES\": \"Hitchhiker - A Mystery Game\", \"ar-AE\": \"Hitchhiker - A Mystery Game\", \"no-NO\": \"Hitchhiker - A Mystery Game\", \"fr-CA\": \"Hitchhiker - A Mystery Game\", \"it-IT\": \"Hitchhiker - A Mystery Game\", \"pl-PL\": \"Hitchhiker - A Mystery Game\", \"ru-RU\": \"Hitchhiker - A Mystery Game\", \"zh-Hans\": \"Hitchhiker - A Mystery Game\", \"nl-NL\": \"Hitchhiker - A Mystery Game\", \"pt-PT\": \"Hitchhiker - A Mystery Game\", \"zh-Hant\": \"Hitchhiker - A Mystery Game\", \"sv-SE\": \"Hitchhiker - A Mystery Game\", \"da-DK\": \"Hitchhiker - A Mystery Game\", \"tr-TR\": \"Hitchhiker - A Mystery Game\", \"fr-FR\": \"Hitchhiker - A Mystery Game\", \"en-GB\": \"Hitchhiker - A Mystery Game\", \"es-419\": \"Hitchhiker - A Mystery Game\", \"ja-JP\": \"Hitchhiker - A Mystery Game\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/owyuu06bxX9qFvDQiYtPRJbW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/iZ2mZxQWBvIVMIFKpLXYYeVq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202104/0917/U6qwow5ul0HOvRzzzipA4TnM.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/VzgVe80wZ2HhFYqHzyh0Kg1j.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/Wj2plUI48GvRjMXCIwYvQlZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/42OsMQdwYSTJ87nXqCoeA1Ai.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/NzenRbAF62RPP2tQdeZNY2ZA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/OWTf3Szv5Be7fftPYwJCGho1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1821/c9ShcVYKon6Bz0KvNzdz9nDo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202012/1617/xKgApb9LksqYaFnf9SVkdlxK.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T07:54:58.070000Z\", \"lastPlayedDateTime\": \"2023-05-18T11:31:22.720000Z\", \"playDuration\": \"PT2H50M6S\"}, {\"titleId\": \"PPSA10514_00\", \"name\": \"Alphadia Neo\", \"localizedName\": \"Alphadia Neo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 7, \"concept\": {\"id\": 10005997, \"titleIds\": [\"CUSA40281_00\", \"CUSA40280_00\", \"CUSA40252_00\", \"PPSA10514_00\", \"CUSA36749_00\", \"PPSA13314_00\", \"PPSA13313_00\"], \"name\": \"Alphadia Neo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alphadia Neo\", \"uk-UA\": \"Alphadia Neo\", \"de-DE\": \"Alphadia Neo\", \"en-US\": \"Alphadia Neo\", \"ko-KR\": \"Alphadia Neo\", \"pt-BR\": \"Alphadia Neo\", \"es-ES\": \"Alphadia Neo\", \"no-NO\": \"Alphadia Neo\", \"fr-CA\": \"Alphadia Neo\", \"it-IT\": \"Alphadia Neo\", \"pl-PL\": \"Alphadia Neo\", \"ru-RU\": \"Alphadia Neo\", \"zh-Hans\": \"Alphadia Neo\", \"nl-NL\": \"Alphadia Neo\", \"pt-PT\": \"Alphadia Neo\", \"zh-Hant\": \"Alphadia Neo\", \"sv-SE\": \"Alphadia Neo\", \"da-DK\": \"Alphadia Neo\", \"fr-FR\": \"Alphadia Neo\", \"en-GB\": \"Alphadia Neo\", \"es-419\": \"Alphadia Neo\", \"ja-JP\": \"\\u30a2\\u30eb\\u30d5\\u30a1\\u30c7\\u30a3\\u30a2 \\u30cd\\u30aa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:49:34.610000Z\", \"lastPlayedDateTime\": \"2023-05-18T07:53:16.210000Z\", \"playDuration\": \"PT15H11M22S\"}, {\"titleId\": \"CUSA36749_00\", \"name\": \"Alphadia Neo\", \"localizedName\": \"Alphadia Neo\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10005997, \"titleIds\": [\"CUSA40281_00\", \"CUSA40280_00\", \"CUSA40252_00\", \"PPSA10514_00\", \"CUSA36749_00\", \"PPSA13314_00\", \"PPSA13313_00\"], \"name\": \"Alphadia Neo\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alphadia Neo\", \"uk-UA\": \"Alphadia Neo\", \"de-DE\": \"Alphadia Neo\", \"en-US\": \"Alphadia Neo\", \"ko-KR\": \"Alphadia Neo\", \"pt-BR\": \"Alphadia Neo\", \"es-ES\": \"Alphadia Neo\", \"no-NO\": \"Alphadia Neo\", \"fr-CA\": \"Alphadia Neo\", \"it-IT\": \"Alphadia Neo\", \"pl-PL\": \"Alphadia Neo\", \"ru-RU\": \"Alphadia Neo\", \"zh-Hans\": \"Alphadia Neo\", \"nl-NL\": \"Alphadia Neo\", \"pt-PT\": \"Alphadia Neo\", \"zh-Hant\": \"Alphadia Neo\", \"sv-SE\": \"Alphadia Neo\", \"da-DK\": \"Alphadia Neo\", \"fr-FR\": \"Alphadia Neo\", \"en-GB\": \"Alphadia Neo\", \"es-419\": \"Alphadia Neo\", \"ja-JP\": \"\\u30a2\\u30eb\\u30d5\\u30a1\\u30c7\\u30a3\\u30a2 \\u30cd\\u30aa\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/g96svL7WSKUVtzE8bGlAhSv8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/IzoHR4SZYAOWA2EEDCAVxYAm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2804/M4j4GWI6VKTjHecUTMxggtTv.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/rdZwTBTgTfzdFHqWkFmVCy5R.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/02OqswbriL5T2LqGoyHog1Df.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/uYA9zzynmWL1wejGvCSGeXFJ.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DdcAIDE3zjFr5aOiswONWK3i.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0706/MowBeCEaflHJVhxTNfbtcM5L.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/hlrxFnSwN6vttH8gvYdwVY3Y.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/Srv0vAk6excRFbsX3qVuW6VU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/DU3Re9wkWAzno9TgP1KTxpfO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/qyOMD2VHajrIH2AcSJa9PHWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/U7gT1cS6R5CT0C7IgdmnGFrp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/nuKTeoEDecbRfclkNYuAmMuA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/5oJe7LqHeABSMfsmimWBUbvb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0605/0Jng8UlAm8dV18905Q6xPUH9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0101/hMhbLAQ24Vamu5XDeHCgVjXL.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T11:25:07.680000Z\", \"lastPlayedDateTime\": \"2023-05-18T07:47:44.600000Z\", \"playDuration\": \"PT15H10M51S\"}, {\"titleId\": \"PPSA16705_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T02:37:59.250000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:53:23.300000Z\", \"playDuration\": \"PT14M23S\"}, {\"titleId\": \"PPSA16704_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T02:23:07.680000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:37:39.170000Z\", \"playDuration\": \"PT14M17S\"}, {\"titleId\": \"PPSA16706_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T02:06:43.890000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:21:43.400000Z\", \"playDuration\": \"PT14M56S\"}, {\"titleId\": \"PPSA16707_00\", \"name\": \"Cubic Figures\", \"localizedName\": \"Cubic Figures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006087, \"titleIds\": [\"CUSA36517_00\", \"PPSA16704_00\", \"PPSA16707_00\", \"PPSA16705_00\", \"PPSA16706_00\", \"CUSA37212_00\", \"CUSA36513_00\", \"CUSA36515_00\"], \"name\": \"Cubic Figures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cubic Figures\", \"uk-UA\": \"Cubic Figures\", \"de-DE\": \"Cubic Figures\", \"en-US\": \"Cubic Figures\", \"ko-KR\": \"Cubic Figures\", \"pt-BR\": \"Cubic Figures\", \"es-ES\": \"Cubic Figures\", \"ar-AE\": \"Cubic Figures\", \"no-NO\": \"Cubic Figures\", \"fr-CA\": \"Cubic Figures\", \"it-IT\": \"Cubic Figures\", \"pl-PL\": \"Cubic Figures\", \"ru-RU\": \"Cubic Figures\", \"zh-Hans\": \"Cubic Figures\", \"nl-NL\": \"Cubic Figures\", \"pt-PT\": \"Cubic Figures\", \"zh-Hant\": \"Cubic Figures\", \"sv-SE\": \"Cubic Figures\", \"da-DK\": \"Cubic Figures\", \"tr-TR\": \"Cubic Figures\", \"fr-FR\": \"Cubic Figures\", \"en-GB\": \"Cubic Figures\", \"es-419\": \"Cubic Figures\", \"ja-JP\": \"Cubic Figures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/WmOU71JuS56uB0qyjW61feeQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/Rl4bCIiJ8U33e4UmFiOALSOb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/eV1zHsFMYlBlPEBTcrcaRTI0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/5ocoNRzh7V3nHQiOJ18YbbJn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/x1SsbzVlcEfUPVNFEiS36iIx.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/k5aqenscXP7HHaZWkg4y87Mp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/7dLt1KlBjpJeT0SjHkLhW5Ap.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/sjk8RF9ob8ZyexcbbZ3YwQCG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/OZor5jP0iQrOtXfN6i1VZP2z.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/0uqwwKfmyfNIyr1Z2GwbCr36.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1215/G9oR2vCzad0n0OjYalF5KBpQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/2417/ZAspX9aksBhoGudSBFG8Bghe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:47:47.880000Z\", \"lastPlayedDateTime\": \"2023-05-18T02:06:41.150000Z\", \"playDuration\": \"PT18M39S\"}, {\"titleId\": \"PPSA12628_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:37:33.770000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:39:25.640000Z\", \"playDuration\": \"PT1M49S\"}, {\"titleId\": \"PPSA12627_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:35:50.250000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:37:31.720000Z\", \"playDuration\": \"PT1M37S\"}, {\"titleId\": \"CUSA39590_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:33:59.060000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:35:35.790000Z\", \"playDuration\": \"PT1M34S\"}, {\"titleId\": \"CUSA39589_00\", \"name\": \"Descending\", \"localizedName\": \"Descending\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006955, \"titleIds\": [\"CUSA39591_00\", \"CUSA39589_00\", \"PPSA12630_00\", \"CUSA39590_00\", \"PPSA12627_00\", \"CUSA39592_00\", \"PPSA12628_00\", \"PPSA12629_00\"], \"name\": \"Descending\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Descending\", \"uk-UA\": \"Descending\", \"de-DE\": \"Descending\", \"en-US\": \"Descending\", \"ko-KR\": \"Descending\", \"pt-BR\": \"Descending\", \"es-ES\": \"Descending\", \"ar-AE\": \"Descending\", \"no-NO\": \"Descending\", \"fr-CA\": \"Descending\", \"it-IT\": \"Descending\", \"pl-PL\": \"Descending\", \"ru-RU\": \"Descending\", \"zh-Hans\": \"Descending\", \"nl-NL\": \"Descending\", \"pt-PT\": \"Descending\", \"zh-Hant\": \"Descending\", \"sv-SE\": \"Descending\", \"da-DK\": \"Descending\", \"tr-TR\": \"Descending\", \"fr-FR\": \"Descending\", \"en-GB\": \"Descending\", \"es-419\": \"Descending\", \"ja-JP\": \"Descending\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/gQXHQSrnSmAhccsF50SfhHko.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/Nlv4ZnbQdOrhm1dH5R4TLoKu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/eMqhTnafuPYSYSyhRvng4RuW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/W31XAxNONPUZ1Ky9A06mleag.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/J1Wx78syv1flw1J7ylm1VtUh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/42f656b23b95f54a2ee87169c755b5bae83728057e22b898.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/4e1e9279bdec138d9bcb8716d5de6eee234676a389f7cb0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/6ba7c8c7249c0dc72d2d26221b9442b1daa855b7feb4c94e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/9f97315f901126e89323ac6dd990460859848f9816fed150.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0914/ff98fc8dd76f0e7ab655ba7751213bf378fcccf4b3aabefb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/1520/IlYHACQJeFqQ0pxTUsz96xUD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-18T01:30:55.640000Z\", \"lastPlayedDateTime\": \"2023-05-18T01:33:51.800000Z\", \"playDuration\": \"PT2M52S\"}, {\"titleId\": \"PPSA12498_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T15:45:25.630000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:59:22.380000Z\", \"playDuration\": \"PT13M53S\"}, {\"titleId\": \"PPSA12499_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T15:31:02.960000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:45:22.470000Z\", \"playDuration\": \"PT14M9S\"}, {\"titleId\": \"CUSA39459_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T15:13:28.320000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:30:48.370000Z\", \"playDuration\": \"PT16M32S\"}, {\"titleId\": \"CUSA39460_00\", \"name\": \"Under the Warehouse\", \"localizedName\": \"Under the Warehouse\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006905, \"titleIds\": [\"CUSA39459_00\", \"PPSA12498_00\", \"PPSA12499_00\", \"CUSA39460_00\"], \"name\": \"Under the Warehouse\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Under the Warehouse\", \"uk-UA\": \"Under the Warehouse\", \"de-DE\": \"Under the Warehouse\", \"en-US\": \"Under the Warehouse\", \"ko-KR\": \"Under the Warehouse\", \"pt-BR\": \"Under the Warehouse\", \"es-ES\": \"Under the Warehouse\", \"ar-AE\": \"Under the Warehouse\", \"no-NO\": \"Under the Warehouse\", \"fr-CA\": \"Under the Warehouse\", \"it-IT\": \"Under the Warehouse\", \"pl-PL\": \"Under the Warehouse\", \"ru-RU\": \"Under the Warehouse\", \"zh-Hans\": \"Under the Warehouse\", \"nl-NL\": \"Under the Warehouse\", \"pt-PT\": \"Under the Warehouse\", \"zh-Hant\": \"Under the Warehouse\", \"sv-SE\": \"Under the Warehouse\", \"da-DK\": \"Under the Warehouse\", \"tr-TR\": \"Under the Warehouse\", \"fr-FR\": \"Under the Warehouse\", \"en-GB\": \"Under the Warehouse\", \"es-419\": \"Under the Warehouse\", \"ja-JP\": \"Under the Warehouse\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/938bc816c20353818f58834856b3f08b26beeda2298c0d09.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/dbb5b71bffa8ee6dd6d361eff79cd40642a3dbc4d80f1e26.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/6016904238ef8763e5b43c78edabec3700a674af0ba7dab4.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/60c98688c03cbcefee79322601f5e9f90e9c9bae7c862c65.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a00da4b2fed70208044864bda6b4e4141ae26b40dfe84eb3.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/788205489e9bb4fef0a862a96828f13fbbef19913e516862.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/8a1d5a4ccb6280cd141dfac03096da71e655f2edbfc93e19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/09e69de8e66c3fb168d5f677a0e1862a8e5b2dc08c790d57.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/77d532e593aa28a3d3a759c5a2446ca000d2f0e7a821b6b1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/2654a27fce1baff122f4b9b2756537a84735f8aec1b2c752.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/4caa5a98b170f217f5d5bd2d7748c10794e146e081e107e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/758ebd66ddbc868113619ae3df7c7f93da4419e09173a7f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/a251793b4978eb658bd1289636bdd4dd5034fd4f956c4b77.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e3fd7ef7cb565c32667c04a63a1c9143ae7a183741e9e1ca.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/b209876e44ff5635475fa3e2e009810b4f3810218956327f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2309/e16892fa9ba831c527d27102061a27176fb5bf6b9fc420b4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2308/30f1c66607c71649d9975d0c82a8f2c9bfd47c92355ee980.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T13:47:30.510000Z\", \"lastPlayedDateTime\": \"2023-05-17T15:13:24.370000Z\", \"playDuration\": \"PT28M36S\"}, {\"titleId\": \"CUSA42421_00\", \"name\": \"Neon Blast\", \"localizedName\": \"Neon Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007985, \"titleIds\": [\"CUSA46472_00\", \"CUSA46471_00\", \"CUSA46473_00\", \"CUSA42421_00\", \"CUSA42422_00\"], \"name\": \"Neon Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neon Blast\", \"uk-UA\": \"Neon Blast\", \"de-DE\": \"Neon Blast\", \"en-US\": \"Neon Blast\", \"pt-BR\": \"Neon Blast\", \"es-ES\": \"Neon Blast\", \"ar-AE\": \"Neon Blast\", \"no-NO\": \"Neon Blast\", \"fr-CA\": \"Neon Blast\", \"it-IT\": \"Neon Blast\", \"pl-PL\": \"Neon Blast\", \"ru-RU\": \"Neon Blast\", \"nl-NL\": \"Neon Blast\", \"pt-PT\": \"Neon Blast\", \"sv-SE\": \"Neon Blast\", \"da-DK\": \"Neon Blast\", \"tr-TR\": \"Neon Blast\", \"fr-FR\": \"Neon Blast\", \"en-GB\": \"Neon Blast\", \"es-419\": \"Neon Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T08:15:12.630000Z\", \"lastPlayedDateTime\": \"2023-05-17T13:36:26.990000Z\", \"playDuration\": \"PT1H14M50S\"}, {\"titleId\": \"CUSA42422_00\", \"name\": \"Neon Blast\", \"localizedName\": \"Neon Blast\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007985, \"titleIds\": [\"CUSA46472_00\", \"CUSA46471_00\", \"CUSA46473_00\", \"CUSA42421_00\", \"CUSA42422_00\"], \"name\": \"Neon Blast\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neon Blast\", \"uk-UA\": \"Neon Blast\", \"de-DE\": \"Neon Blast\", \"en-US\": \"Neon Blast\", \"pt-BR\": \"Neon Blast\", \"es-ES\": \"Neon Blast\", \"ar-AE\": \"Neon Blast\", \"no-NO\": \"Neon Blast\", \"fr-CA\": \"Neon Blast\", \"it-IT\": \"Neon Blast\", \"pl-PL\": \"Neon Blast\", \"ru-RU\": \"Neon Blast\", \"nl-NL\": \"Neon Blast\", \"pt-PT\": \"Neon Blast\", \"sv-SE\": \"Neon Blast\", \"da-DK\": \"Neon Blast\", \"tr-TR\": \"Neon Blast\", \"fr-FR\": \"Neon Blast\", \"en-GB\": \"Neon Blast\", \"es-419\": \"Neon Blast\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/c365dde9e77c517755df5724a8ecf38f3160422c269ef693.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/1029eb273ae38ff0520654f476669724de951b726fcb322b.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/9487cf8597fba7f86ef20e9954b05f615125d4d6c7ff18c9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/edbdc3ad4e2d688bcb3ec6f8c7eb2181c46f6d0876347935.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/f400c60ed44fd1ded8c4afff4c1525fe20bd084629d9d758.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/fcc71dfc69304506425405b5ddfcdbf0305866363d234ba5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/332db5914976449fcbb3f32909c55c272a107b7148ccacf2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/39fd4c75c3ff4dafd927b3537a68d3b9eaf5576e240d9760.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/7e3f061879556b417f83fb9a435fee68f9c2dd523e8af6c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/651fe93c5d04d50f57c5d4f87c8acdbbb9620ad74c11bfd3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2113/398bb316940f8e7d3ab53d4af8e1e05f5fc4f8c6559ad0f5.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T06:32:33.530000Z\", \"lastPlayedDateTime\": \"2023-05-17T08:15:11.080000Z\", \"playDuration\": \"PT1H42M28S\"}, {\"titleId\": \"CUSA33491_00\", \"name\": \"Eternal Hope\", \"localizedName\": \"Eternal Hope\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004761, \"titleIds\": [\"CUSA32889_00\", \"CUSA32888_00\", \"CUSA33492_00\", \"CUSA33491_00\"], \"name\": \"Eternal Hope\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eternal Hope\", \"uk-UA\": \"Eternal Hope\", \"de-DE\": \"Eternal Hope\", \"en-US\": \"Eternal Hope\", \"ko-KR\": \"Eternal Hope\", \"pt-BR\": \"Eternal Hope\", \"es-ES\": \"Eternal Hope\", \"ar-AE\": \"Eternal Hope\", \"no-NO\": \"Eternal Hope\", \"fr-CA\": \"Eternal Hope\", \"it-IT\": \"Eternal Hope\", \"pl-PL\": \"Eternal Hope\", \"ru-RU\": \"Eternal Hope\", \"zh-Hans\": \"Eternal Hope\", \"nl-NL\": \"Eternal Hope\", \"pt-PT\": \"Eternal Hope\", \"zh-Hant\": \"Eternal Hope\", \"sv-SE\": \"Eternal Hope\", \"da-DK\": \"Eternal Hope\", \"tr-TR\": \"Eternal Hope\", \"fr-FR\": \"Eternal Hope\", \"en-GB\": \"Eternal Hope\", \"es-419\": \"Eternal Hope\", \"ja-JP\": \"Eternal Hope\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-17T02:41:57.800000Z\", \"lastPlayedDateTime\": \"2023-05-17T06:30:49.440000Z\", \"playDuration\": \"PT2H10M25S\"}, {\"titleId\": \"CUSA32889_00\", \"name\": \"Eternal Hope\", \"localizedName\": \"Eternal Hope\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004761, \"titleIds\": [\"CUSA32889_00\", \"CUSA32888_00\", \"CUSA33492_00\", \"CUSA33491_00\"], \"name\": \"Eternal Hope\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Eternal Hope\", \"uk-UA\": \"Eternal Hope\", \"de-DE\": \"Eternal Hope\", \"en-US\": \"Eternal Hope\", \"ko-KR\": \"Eternal Hope\", \"pt-BR\": \"Eternal Hope\", \"es-ES\": \"Eternal Hope\", \"ar-AE\": \"Eternal Hope\", \"no-NO\": \"Eternal Hope\", \"fr-CA\": \"Eternal Hope\", \"it-IT\": \"Eternal Hope\", \"pl-PL\": \"Eternal Hope\", \"ru-RU\": \"Eternal Hope\", \"zh-Hans\": \"Eternal Hope\", \"nl-NL\": \"Eternal Hope\", \"pt-PT\": \"Eternal Hope\", \"zh-Hant\": \"Eternal Hope\", \"sv-SE\": \"Eternal Hope\", \"da-DK\": \"Eternal Hope\", \"tr-TR\": \"Eternal Hope\", \"fr-FR\": \"Eternal Hope\", \"en-GB\": \"Eternal Hope\", \"es-419\": \"Eternal Hope\", \"ja-JP\": \"Eternal Hope\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/L9bxl2thYdYDeD0uEwt3FKLi.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/DkuPKMAg5oJBefIQZnRLBwWB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/0415/Ud2Dt7lrWFwOkjxVc4gB9AWk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/MR3845kjRugeL3JwSp6J60LH.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1115/U1NjUTgqC7wPKveQxaaQNpjo.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/2Px9w91YeFc7PWbjpG61IjXB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/L52MPkuST8H5ls1EAXYt312Q.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9GSGVH2q3UOO04HO0nsV3iuu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/RSWa7sGfPcqn12shONgnLxcj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/5w5tOd8Z3IqBUTj5zSUNz9p4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/9K0424fvvqfv4S1wdbT59nhu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202204/1219/Ge4i0Cx1ffWVxf5QBV8bNiPI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T15:23:55.400000Z\", \"lastPlayedDateTime\": \"2023-05-17T02:40:55.280000Z\", \"playDuration\": \"PT2H51M51S\"}, {\"titleId\": \"PPSA15542_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T15:06:54.880000Z\", \"lastPlayedDateTime\": \"2023-05-16T15:17:51.140000Z\", \"playDuration\": \"PT7M47S\"}, {\"titleId\": \"PPSA15541_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T14:57:28.670000Z\", \"lastPlayedDateTime\": \"2023-05-16T15:06:50.340000Z\", \"playDuration\": \"PT8M58S\"}, {\"titleId\": \"CUSA42550_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T14:47:02.700000Z\", \"lastPlayedDateTime\": \"2023-05-16T14:57:23.070000Z\", \"playDuration\": \"PT10M16S\"}, {\"titleId\": \"CUSA42551_00\", \"name\": \"Little Disaster\", \"localizedName\": \"Little Disaster\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008045, \"titleIds\": [\"CUSA42550_00\", \"CUSA42551_00\", \"PPSA15541_00\", \"PPSA15542_00\"], \"name\": \"Little Disaster\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"PUZZLE\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Little Disaster\", \"uk-UA\": \"Little Disaster\", \"de-DE\": \"Little Disaster\", \"en-US\": \"Little Disaster\", \"pt-BR\": \"Little Disaster\", \"es-ES\": \"Little Disaster\", \"ar-AE\": \"Little Disaster\", \"no-NO\": \"Little Disaster\", \"fr-CA\": \"Little Disaster\", \"it-IT\": \"Little Disaster\", \"pl-PL\": \"Little Disaster\", \"ru-RU\": \"Little Disaster\", \"nl-NL\": \"Little Disaster\", \"pt-PT\": \"Little Disaster\", \"sv-SE\": \"Little Disaster\", \"da-DK\": \"Little Disaster\", \"tr-TR\": \"Little Disaster\", \"fr-FR\": \"Little Disaster\", \"en-GB\": \"Little Disaster\", \"es-419\": \"Little Disaster\", \"ja-JP\": \"Little Disaster\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/1ea667a23143562130566c48c9b2685587f23c0a095bb269.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/49e39955da288777d943e167b19d690bc70ba3768837ad34.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c61773371e72e08771092118d0b7a6d1f7ee2b8f423b40e8.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/86ed899c08c729696d6dee07e035b02e95bbeafa60a0753a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/90bb5e8c03fc08ca32767d1fc5585f534b787240237ba95c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/e2c8623f8daaa38883a974defda1a85fecdf45acc6b1b6a2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/f4bda53ac785232677d5f514efb79b98b8042dbf7a40578f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/ac5a2d7834eb98c6f9bdc85fc95e08957a97aab0e5bbf381.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/9525aedcb2e697aaed9ad05a523a505667a525150ca8a025.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/434d827bc8e9b512e4dfa7d67ab5c314b9816cff8abe0a72.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/c1cc72877d30ed3c36451fbdc9b661758ee1fd2b6f8a623f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/2f026232ca01bedb28c78307da1fd7a554e245f1bef4198f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2116/3a66c2c840d27e88bef802c57595f017a40296a03c102dde.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T14:06:07.360000Z\", \"lastPlayedDateTime\": \"2023-05-16T14:34:56.460000Z\", \"playDuration\": \"PT15M8S\"}, {\"titleId\": \"PPSA13762_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T13:20:56.440000Z\", \"lastPlayedDateTime\": \"2023-05-16T13:25:51.570000Z\", \"playDuration\": \"PT4M42S\"}, {\"titleId\": \"PPSA15204_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T13:18:16.000000Z\", \"lastPlayedDateTime\": \"2023-05-16T13:20:53.660000Z\", \"playDuration\": \"PT2M29S\"}, {\"titleId\": \"CUSA40703_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T13:04:12.920000Z\", \"lastPlayedDateTime\": \"2023-05-16T13:18:13.170000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA42184_00\", \"name\": \"Alpha Warrior\", \"localizedName\": \"Alpha Warrior\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007336, \"titleIds\": [\"PPSA13762_00\", \"PPSA15204_00\", \"CUSA40703_00\", \"CUSA42184_00\"], \"name\": \"Alpha Warrior\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alpha Warrior\", \"uk-UA\": \"Alpha Warrior\", \"de-DE\": \"Alpha Warrior\", \"en-US\": \"Alpha Warrior\", \"pt-BR\": \"Alpha Warrior\", \"es-ES\": \"Alpha Warrior\", \"ar-AE\": \"Alpha Warrior\", \"no-NO\": \"Alpha Warrior\", \"fr-CA\": \"Alpha Warrior\", \"it-IT\": \"Alpha Warrior\", \"pl-PL\": \"Alpha Warrior\", \"ru-RU\": \"Alpha Warrior\", \"nl-NL\": \"Alpha Warrior\", \"pt-PT\": \"Alpha Warrior\", \"sv-SE\": \"Alpha Warrior\", \"da-DK\": \"Alpha Warrior\", \"tr-TR\": \"Alpha Warrior\", \"fr-FR\": \"Alpha Warrior\", \"en-GB\": \"Alpha Warrior\", \"es-419\": \"Alpha Warrior\", \"ja-JP\": \"Alpha Warrior\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/b89e42a8244cebfe7c35b2119355272feb72c0fd3172023f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/d522654920649e0c8eb364362e8fa4fe7f16b9a038b86c28.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dc22302a47ea7c4d6efea7a7e67f65eefa95505e06fa07d2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/4b1aad117abe4b9a8f4653548d97196a969e7f014f779ff3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7c4673abf38659ffeff608166f97aae16270786099747580.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/11fea83cb571638b0f3b4ab515f61f9ca4ed0bffd59060f3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/efc9220dedb033809007eb80c0c6df9f17ecfada67c82265.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/7d88c136718f37f2c7977903898052fbab76c8b45f1e0d95.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/3adc67598fd984b3b6a91df269f228a74c43ded3fbefc71b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/0216efbd83f7698a5e570dd74108964427891376ff04fa9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/a6cf65019e9f90a330aca06dca15d7c7c853b5133e0fbb3a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/9275709f8467f7cc1e2ab61bb839f1443a14e19f832bef7d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/5e3776e501f9c77848251e3b02fd9bf3742a731d5b7494d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/1307980b7fc3255570f31cae2ca588c578fcbfa57df8f67f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/6d56d42f0d671f52909aea2f9a9f0e07fd136cd4e402d9e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0620/dd8ffb12f8f01b4231eede7c9cc4742f0cb49f405a12408b.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:53:45.460000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:59:06.500000Z\", \"playDuration\": \"PT5M2S\"}, {\"titleId\": \"CUSA33156_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:40:45.700000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:52:06.530000Z\", \"playDuration\": \"PT11M9S\"}, {\"titleId\": \"CUSA33155_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:28:38.380000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:40:14.670000Z\", \"playDuration\": \"PT11M25S\"}, {\"titleId\": \"CUSA33154_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:16:05.810000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:28:20.770000Z\", \"playDuration\": \"PT12M3S\"}, {\"titleId\": \"CUSA33157_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T12:03:01.840000Z\", \"lastPlayedDateTime\": \"2023-05-16T12:15:48.190000Z\", \"playDuration\": \"PT12M18S\"}, {\"titleId\": \"PPSA14059_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T11:41:14.860000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:57:44.500000Z\", \"playDuration\": \"PT16M4S\"}, {\"titleId\": \"PPSA14057_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T11:24:16.950000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:41:06.000000Z\", \"playDuration\": \"PT16M45S\"}, {\"titleId\": \"PPSA14058_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T11:04:19.270000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:24:00.760000Z\", \"playDuration\": \"PT19M38S\"}, {\"titleId\": \"PPSA14060_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T10:38:19.000000Z\", \"lastPlayedDateTime\": \"2023-05-16T11:04:13.630000Z\", \"playDuration\": \"PT25M50S\"}, {\"titleId\": \"CUSA41100_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T10:18:44.520000Z\", \"lastPlayedDateTime\": \"2023-05-16T10:37:33.790000Z\", \"playDuration\": \"PT18M33S\"}, {\"titleId\": \"CUSA41098_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T10:00:01.940000Z\", \"lastPlayedDateTime\": \"2023-05-16T10:15:22.190000Z\", \"playDuration\": \"PT15M16S\"}, {\"titleId\": \"CUSA41099_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T08:47:51.580000Z\", \"lastPlayedDateTime\": \"2023-05-16T09:05:42.670000Z\", \"playDuration\": \"PT17M46S\"}, {\"titleId\": \"CUSA41101_00\", \"name\": \"Boss Rush: Mythology\", \"localizedName\": \"Boss Rush: Mythology\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007492, \"titleIds\": [\"PPSA14060_00\", \"PPSA14057_00\", \"PPSA14058_00\", \"PPSA14059_00\", \"CUSA41100_00\", \"CUSA41098_00\", \"CUSA41099_00\", \"CUSA41101_00\"], \"name\": \"Boss Rush: Mythology\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Boss Rush: Mythology\", \"uk-UA\": \"Boss Rush: Mythology\", \"de-DE\": \"Boss Rush: Mythology\", \"en-US\": \"Boss Rush: Mythology\", \"ko-KR\": \"Boss Rush: Mythology\", \"pt-BR\": \"Boss Rush: Mythology\", \"es-ES\": \"Boss Rush: Mythology\", \"ar-AE\": \"Boss Rush: Mythology\", \"no-NO\": \"Boss Rush: Mythology\", \"fr-CA\": \"Boss Rush: Mythology\", \"it-IT\": \"Boss Rush: Mythology\", \"pl-PL\": \"Boss Rush: Mythology\", \"ru-RU\": \"Boss Rush: Mythology\", \"zh-Hans\": \"Boss Rush: Mythology\", \"nl-NL\": \"Boss Rush: Mythology\", \"pt-PT\": \"Boss Rush: Mythology\", \"zh-Hant\": \"Boss Rush: Mythology\", \"sv-SE\": \"Boss Rush: Mythology\", \"da-DK\": \"Boss Rush: Mythology\", \"tr-TR\": \"Boss Rush: Mythology\", \"fr-FR\": \"Boss Rush: Mythology\", \"en-GB\": \"Boss Rush: Mythology\", \"es-419\": \"Boss Rush: Mythology\", \"ja-JP\": \"Boss Rush: Mythology\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/9585a278313f5579271822b9e9e2dc8be8868f4cc5d3dddb.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5b7c2d8acc7b6ea77c8e32de433f9bab8193440c52cf9747.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/f11187bd2d2f4263f6afc53e888bb76f5b1cd68c8427bea1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/4868594525af92e0ca7dd813a1f2706b1ff2fc16f2d2fbd6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/cf6ddfba9fa8c962de0d9d814ce47ef1c2b19cc72d83e2fe.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/6a34d5b83eb49b2ba302ef88304a702fab2a70a4d23545a7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5fade622ea27f0fd1f96d62ecd4230ea347c592894683dc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/138c5fc8a5c89f7074dc9855c5830ec387115fba72ff17b5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/115b1c5054b6db8a769ead163214d218496405c4a23efc15.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/dbd0b31d005dfaf93491455026ee003976f1245d215074bc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/578a97a980755d46d7233cb7ad32bd0136abbf1c4db88d44.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/5e4df09495e881e4acb9e8ceb04a621b796c12d091ed54ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/eea3bddf915d3e189d779d4dfe56475dfae3de443c977745.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/7b165856cc36a89b1849144cdf6472295d0efd572c0e1ff0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/ee7a1ca95a51a21bebafa6dd858c22511171ff92989aeed8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/a1fde3c7e7d2b522f646040aa6c7371253f24b2a8cd94da7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2518/2537a78dec63907789fa6429c6da769b447f784d1ce167d6.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T08:25:26.670000Z\", \"lastPlayedDateTime\": \"2023-05-16T08:47:49.430000Z\", \"playDuration\": \"PT22M2S\"}, {\"titleId\": \"CUSA40380_00\", \"name\": \"Midnight is Lost\", \"localizedName\": \"Midnight is Lost\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005584, \"titleIds\": [\"CUSA40379_00\", \"CUSA40380_00\"], \"name\": \"Midnight is Lost\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/acbf0588a56e227f148b2af4ec4fbe87da368abb20e29911.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c0610c082866fbb3dd98e948fe1b238f7b2f65cd943388c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/53bd2113c10056b3d223c37c6dde673d85fb3d209ee1dfad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/2e5cc68607553ffac8eb18db9558920b09795d131fde5ac1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/fd968ad8c081582088e4c21ce3b7459537e7653fe18a4878.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/49854736cb372c3e3a42fefcd6abe92c251c4e4af681e29f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/d062fad111b922c7494abcc91f810bb08b06599a9cfcf1b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/aed6fe93a30054b21df0d33e6fa9953d69f5a310cda30c9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/989ce654169953037fc35d93589db3e66848bde3bd8941bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c3c56fe8008b46cacf3fab6bbc4bafc9468a3c460080d1de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/e2d953aae9c6ef948b3f69fea5395c74713ede75b1ecf595.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c4217cd6a4f2aa7f010582c1be35918230e7b775d6eaceaf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Midnight is Lost\", \"uk-UA\": \"Midnight is Lost\", \"de-DE\": \"Midnight is Lost\", \"en-US\": \"Midnight is Lost\", \"ko-KR\": \"Midnight is Lost\", \"pt-BR\": \"Midnight is Lost\", \"es-ES\": \"Midnight is Lost\", \"ar-AE\": \"Midnight is Lost\", \"no-NO\": \"Midnight is Lost\", \"fr-CA\": \"Midnight is Lost\", \"it-IT\": \"Midnight is Lost\", \"pl-PL\": \"Midnight is Lost\", \"ru-RU\": \"Midnight is Lost\", \"zh-Hans\": \"Midnight is Lost\", \"nl-NL\": \"Midnight is Lost\", \"pt-PT\": \"Midnight is Lost\", \"zh-Hant\": \"Midnight is Lost\", \"sv-SE\": \"Midnight is Lost\", \"da-DK\": \"Midnight is Lost\", \"tr-TR\": \"Midnight is Lost\", \"fr-FR\": \"Midnight is Lost\", \"en-GB\": \"Midnight is Lost\", \"es-419\": \"Midnight is Lost\", \"ja-JP\": \"Midnight is Lost\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/acbf0588a56e227f148b2af4ec4fbe87da368abb20e29911.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c0610c082866fbb3dd98e948fe1b238f7b2f65cd943388c0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/53bd2113c10056b3d223c37c6dde673d85fb3d209ee1dfad.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/2e5cc68607553ffac8eb18db9558920b09795d131fde5ac1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/fd968ad8c081582088e4c21ce3b7459537e7653fe18a4878.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/49854736cb372c3e3a42fefcd6abe92c251c4e4af681e29f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/d062fad111b922c7494abcc91f810bb08b06599a9cfcf1b6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/aed6fe93a30054b21df0d33e6fa9953d69f5a310cda30c9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/989ce654169953037fc35d93589db3e66848bde3bd8941bd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c3c56fe8008b46cacf3fab6bbc4bafc9468a3c460080d1de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/e2d953aae9c6ef948b3f69fea5395c74713ede75b1ecf595.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/c4217cd6a4f2aa7f010582c1be35918230e7b775d6eaceaf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0916/063a6a7d34ae14839ff2020667526a5d28a8abb9fa476cb4.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T07:29:12.450000Z\", \"lastPlayedDateTime\": \"2023-05-16T08:15:05.950000Z\", \"playDuration\": \"PT45M48S\"}, {\"titleId\": \"PPSA06486_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 8, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T04:00:15.530000Z\", \"lastPlayedDateTime\": \"2023-05-16T05:40:03.680000Z\", \"playDuration\": \"PT1H37M45S\"}, {\"titleId\": \"PPSA06483_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 6, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-16T01:28:43.550000Z\", \"lastPlayedDateTime\": \"2023-05-16T03:07:30.890000Z\", \"playDuration\": \"PT1H37M7S\"}, {\"titleId\": \"CUSA32203_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T14:11:36.790000Z\", \"lastPlayedDateTime\": \"2023-05-15T15:49:45.950000Z\", \"playDuration\": \"PT1H36M50S\"}, {\"titleId\": \"CUSA32200_00\", \"name\": \"Vegas Tales\", \"localizedName\": \"Vegas Tales\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10004495, \"titleIds\": [\"CUSA32200_00\", \"CUSA32203_00\", \"PPSA06483_00\", \"PPSA06486_00\"], \"name\": \"Vegas Tales\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\", \"CASUAL\", \"SIMULATION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Vegas Tales\", \"uk-UA\": \"Vegas Tales\", \"de-DE\": \"Vegas Tales\", \"en-US\": \"Vegas Tales\", \"pt-BR\": \"Vegas Tales\", \"es-ES\": \"Vegas Tales\", \"ar-AE\": \"Vegas Tales\", \"no-NO\": \"Vegas Tales\", \"fr-CA\": \"Vegas Tales\", \"it-IT\": \"Vegas Tales\", \"pl-PL\": \"Vegas Tales\", \"ru-RU\": \"Vegas Tales\", \"nl-NL\": \"Vegas Tales\", \"pt-PT\": \"Vegas Tales\", \"sv-SE\": \"Vegas Tales\", \"da-DK\": \"Vegas Tales\", \"tr-TR\": \"Vegas Tales\", \"fr-FR\": \"Vegas Tales\", \"en-GB\": \"Vegas Tales\", \"es-419\": \"Vegas Tales\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/itYFQgkZT6PU2KAx64LTIKxT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/SHvGYqooMizZgfhJ1QdP131D.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/WKt8I6uToiNhrYf1qKZRChE0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202202/0918/dfswwDMetKCfcr2HgZdkbzlG.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/od7P5linEqRkmRBCn4MuuNz7.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/2jUS8wktG2q4EO0fJEx7qLAQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/urupenR3P5VoYK0BIvV7fHIa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/N1ma1mNKMfiRBTEFY7qh8imD.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/ENmZDnpEqkYbsvLHlJKOSPzK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202112/2804/BCKOkEOolujrQGybT74ZlFNv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202306/2015/c03d8a9cd4f417cacac893c66d900d315d8060772e22b967.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T12:08:32.210000Z\", \"lastPlayedDateTime\": \"2023-05-15T13:56:07.440000Z\", \"playDuration\": \"PT1H44M58S\"}, {\"titleId\": \"CUSA41001_00\", \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"localizedName\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007454, \"titleIds\": [\"CUSA41050_00\", \"CUSA41051_00\", \"CUSA41049_00\", \"CUSA41272_00\", \"CUSA41275_00\", \"CUSA41273_00\", \"CUSA41274_00\", \"CUSA41001_00\"], \"name\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ACTION\", \"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"uk-UA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"de-DE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-US\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ko-KR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-BR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-ES\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ar-AE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"no-NO\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-CA\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"it-IT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pl-PL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ru-RU\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hans\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"nl-NL\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"pt-PT\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"zh-Hant\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"sv-SE\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"da-DK\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"tr-TR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"fr-FR\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"en-GB\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"es-419\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\", \"ja-JP\": \"\\\"Buy The Game, I Have a Gun\\\" -Sheesh-Man\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/G2aHiBj1ch52iDFaMOnNl5rZ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/H8aIDL35w2DMlwiBMDbzfiHa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/HwFRMxK4fNAmxvE4BC9dZJ3j.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/QUdPAe3jHLk0JM9HD9CIEOv1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/YPGVK6CcplznAchCKMITRzOy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/aNMD7ZSPnmKU4QPlcriuTAxY.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/bFGA2Sb1L8eUoMcXot0dxNYj.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/cx6e0XMnmq5VrivGDntyIRTc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/dEIAFKzhaVmO9eCdQxYfy8xu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/obh1DzQM0gSURetcNq9yE2mA.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/sIoizxnsQoJu6JcgCHwCMqT0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/wKTdwUTWpxWXxDnisGnics39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2022/xGJlhtgvVjMr5MedQo9YR2wu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/NEJ3hW94X2fw1JCBE3EE7Qc3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/xcSHWScu56fUEVr0gdcq9ekm.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/yrsFuPD8pm9zlSj2DFIH00Sc.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202301/2522/cdnhZrkBLmtdE7DFnp4LIXhI.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T11:22:21.610000Z\", \"lastPlayedDateTime\": \"2023-05-15T11:49:03.250000Z\", \"playDuration\": \"PT26M19S\"}, {\"titleId\": \"PPSA10888_00\", \"name\": \"Beat The Clock\", \"localizedName\": \"Beat The Clock\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005631, \"titleIds\": [\"CUSA35191_00\", \"CUSA35192_00\", \"CUSA37482_00\", \"CUSA37549_00\", \"CUSA37548_00\", \"CUSA37547_00\", \"PPSA08958_00\", \"CUSA36449_00\", \"CUSA37546_00\", \"PPSA10888_00\"], \"name\": \"Beat The Clock\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Beat The Clock\", \"uk-UA\": \"Beat The Clock\", \"de-DE\": \"Wettlauf gegen die Zeit\", \"en-US\": \"Beat The Clock\", \"ko-KR\": \"\\uc2dc\\uacc4\\ub97c \\uc774\\uae38\", \"pt-BR\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"es-ES\": \"vencer al reloj\", \"ar-AE\": \"\\u062a\\u063a\\u0644\\u0628 \\u0639\\u0644\\u0649 \\u0645\\u062f\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629\", \"no-NO\": \"Sl\\u00e5 klokken\", \"fr-CA\": \"Battre le temps\", \"it-IT\": \"Batti l'orologio\", \"pl-PL\": \"Bicie zegara\", \"ru-RU\": \"\\u0411\\u0438\\u0442\\u044c \\u0447\\u0430\\u0441\\u044b\", \"zh-Hans\": \"\\u6253\\u8d25\\u65f6\\u949f\", \"nl-NL\": \"Versla de klok\", \"pt-PT\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"zh-Hant\": \"\\u6253\\u6557\\u6642\\u9418\", \"sv-SE\": \"Sl\\u00e5 klockan\", \"da-DK\": \"Sl\\u00e5 uret\", \"tr-TR\": \"Saati yenmek\", \"fr-FR\": \"Battre le temps\", \"en-GB\": \"Beat The Clock\", \"es-419\": \"vencer al reloj\", \"ja-JP\": \"\\u30d3\\u30fc\\u30c8\\u30fb\\u30b6\\u30fb\\u30af\\u30ed\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:43:05.510000Z\", \"lastPlayedDateTime\": \"2023-05-15T11:22:18.660000Z\", \"playDuration\": \"PT1H15M15S\"}, {\"titleId\": \"PPSA07233_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:29:14.410000Z\", \"lastPlayedDateTime\": \"2023-05-15T06:42:14.120000Z\", \"playDuration\": \"PT12M42S\"}, {\"titleId\": \"PPSA07235_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T06:15:56.200000Z\", \"lastPlayedDateTime\": \"2023-05-15T06:28:18.580000Z\", \"playDuration\": \"PT12M18S\"}, {\"titleId\": \"PPSA07234_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T05:59:02.750000Z\", \"lastPlayedDateTime\": \"2023-05-15T06:15:32.130000Z\", \"playDuration\": \"PT16M9S\"}, {\"titleId\": \"PPSA07236_00\", \"name\": \"MathLand\", \"localizedName\": \"MathLand\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004845, \"titleIds\": [\"CUSA33156_00\", \"CUSA33157_00\", \"PPSA07234_00\", \"PPSA07235_00\", \"PPSA07233_00\", \"CUSA33154_00\", \"CUSA33155_00\", \"PPSA07236_00\"], \"name\": \"MathLand\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"EDUCATIONAL\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"MathLand\", \"uk-UA\": \"MathLand\", \"de-DE\": \"MathLand\", \"en-US\": \"MathLand\", \"ko-KR\": \"MathLand\", \"pt-BR\": \"MathLand\", \"es-ES\": \"MathLand\", \"ar-AE\": \"MathLand\", \"no-NO\": \"MathLand\", \"fr-CA\": \"MathLand\", \"it-IT\": \"MathLand\", \"pl-PL\": \"MathLand\", \"ru-RU\": \"MathLand\", \"zh-Hans\": \"MathLand\", \"nl-NL\": \"MathLand\", \"pt-PT\": \"MathLand\", \"zh-Hant\": \"MathLand\", \"sv-SE\": \"MathLand\", \"da-DK\": \"MathLand\", \"tr-TR\": \"MathLand\", \"fr-FR\": \"MathLand\", \"en-GB\": \"MathLand\", \"es-419\": \"MathLand\", \"ja-JP\": \"\\u30de\\u30b9\\u30e9\\u30f3\\u30c9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/277100bb2dd662b87c160deb0db148baf13f58af4131bc71.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P7ClErhgwj4eFgNsKmjjKNvh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0814/dd5f4080bfd76306e75f14c22690f5d19540389bef226071.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/fcc35c263439c7694f19e6c8ccf8389051f215a5bbc07c83.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0919/790a386e46ab8f067c92f5038e8f721fe61ebd7f7912dbe6.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cUIx0XJQYkgwP20UWVj2bT7p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/462b268e7689920dbc354932c71a22f9fd8fbfef94741e0e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/7978888a1d8b931cf65ce9981c75c7414af0ddd1d5a1d461.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/2c83b2af2dce03be88c68632a59d0ecbcdebc6f6a9a7dbe4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/c67dfaaaa1c83e522e302de6f311d894a010d45ed4149369.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1010/752dc8c3d4389fc8070d41590acbf0588b40fba40c896af8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/P8d9gFfU8uiAqqtb5oXISD39.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/cSEwKzczlj2snj70cKmWG1G6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/6N0R0gK9sPbbMnV1q57VIraB.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0607/ckwcsnZbpC5hXqqUyotxMeu3.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T05:39:31.980000Z\", \"lastPlayedDateTime\": \"2023-05-15T05:58:24.980000Z\", \"playDuration\": \"PT18M48S\"}, {\"titleId\": \"CUSA37547_00\", \"name\": \"Beat The Clock\", \"localizedName\": \"Beat The Clock\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"category\": \"unknown\", \"service\": \"none_purchased\", \"playCount\": 2, \"concept\": {\"id\": 10005631, \"titleIds\": [\"CUSA35191_00\", \"CUSA35192_00\", \"CUSA37482_00\", \"CUSA37549_00\", \"CUSA37548_00\", \"CUSA37547_00\", \"PPSA08958_00\", \"CUSA36449_00\", \"CUSA37546_00\", \"PPSA10888_00\"], \"name\": \"Beat The Clock\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Beat The Clock\", \"uk-UA\": \"Beat The Clock\", \"de-DE\": \"Wettlauf gegen die Zeit\", \"en-US\": \"Beat The Clock\", \"ko-KR\": \"\\uc2dc\\uacc4\\ub97c \\uc774\\uae38\", \"pt-BR\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"es-ES\": \"vencer al reloj\", \"ar-AE\": \"\\u062a\\u063a\\u0644\\u0628 \\u0639\\u0644\\u0649 \\u0645\\u062f\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629\", \"no-NO\": \"Sl\\u00e5 klokken\", \"fr-CA\": \"Battre le temps\", \"it-IT\": \"Batti l'orologio\", \"pl-PL\": \"Bicie zegara\", \"ru-RU\": \"\\u0411\\u0438\\u0442\\u044c \\u0447\\u0430\\u0441\\u044b\", \"zh-Hans\": \"\\u6253\\u8d25\\u65f6\\u949f\", \"nl-NL\": \"Versla de klok\", \"pt-PT\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"zh-Hant\": \"\\u6253\\u6557\\u6642\\u9418\", \"sv-SE\": \"Sl\\u00e5 klockan\", \"da-DK\": \"Sl\\u00e5 uret\", \"tr-TR\": \"Saati yenmek\", \"fr-FR\": \"Battre le temps\", \"en-GB\": \"Beat The Clock\", \"es-419\": \"vencer al reloj\", \"ja-JP\": \"\\u30d3\\u30fc\\u30c8\\u30fb\\u30b6\\u30fb\\u30af\\u30ed\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T05:35:50.250000Z\", \"lastPlayedDateTime\": \"2023-05-15T05:38:26.960000Z\", \"playDuration\": \"PT1H29M53S\"}, {\"titleId\": \"CUSA37546_00\", \"name\": \"Beat The Clock\", \"localizedName\": \"Beat The Clock\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005631, \"titleIds\": [\"CUSA35191_00\", \"CUSA35192_00\", \"CUSA37482_00\", \"CUSA37549_00\", \"CUSA37548_00\", \"CUSA37547_00\", \"PPSA08958_00\", \"CUSA36449_00\", \"CUSA37546_00\", \"PPSA10888_00\"], \"name\": \"Beat The Clock\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Beat The Clock\", \"uk-UA\": \"Beat The Clock\", \"de-DE\": \"Wettlauf gegen die Zeit\", \"en-US\": \"Beat The Clock\", \"ko-KR\": \"\\uc2dc\\uacc4\\ub97c \\uc774\\uae38\", \"pt-BR\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"es-ES\": \"vencer al reloj\", \"ar-AE\": \"\\u062a\\u063a\\u0644\\u0628 \\u0639\\u0644\\u0649 \\u0645\\u062f\\u0627\\u0631 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629\", \"no-NO\": \"Sl\\u00e5 klokken\", \"fr-CA\": \"Battre le temps\", \"it-IT\": \"Batti l'orologio\", \"pl-PL\": \"Bicie zegara\", \"ru-RU\": \"\\u0411\\u0438\\u0442\\u044c \\u0447\\u0430\\u0441\\u044b\", \"zh-Hans\": \"\\u6253\\u8d25\\u65f6\\u949f\", \"nl-NL\": \"Versla de klok\", \"pt-PT\": \"Ven\\u00e7a o Rel\\u00f3gio\", \"zh-Hant\": \"\\u6253\\u6557\\u6642\\u9418\", \"sv-SE\": \"Sl\\u00e5 klockan\", \"da-DK\": \"Sl\\u00e5 uret\", \"tr-TR\": \"Saati yenmek\", \"fr-FR\": \"Battre le temps\", \"en-GB\": \"Beat The Clock\", \"es-419\": \"vencer al reloj\", \"ja-JP\": \"\\u30d3\\u30fc\\u30c8\\u30fb\\u30b6\\u30fb\\u30af\\u30ed\\u30c3\\u30af\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/1d91dfbb80a8ec1da5fa040f6cc732ca7f745473b339276a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/482ba02094ea018940597acfc5bd5010308f3ad5b1987245.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/480d5e7d9d81bd551c3ab39e976ea33db50408cb930a2d7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/75c649841d41b018340dbcd37bee1577e10d44acbe79858c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/d7c701cae99c2c864f51ad524dda281b78bbdc8c6d456283.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2909/2938788bf84dc55787f6693f21fd96d4fdd519111b65040c.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-15T04:21:51.720000Z\", \"lastPlayedDateTime\": \"2023-05-15T05:34:45.510000Z\", \"playDuration\": \"PT1H12M49S\"}, {\"titleId\": \"CUSA40903_00\", \"name\": \"Kick it, Bunny!\", \"localizedName\": \"Kick it, Bunny!\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003865, \"titleIds\": [\"CUSA30577_00\", \"CUSA30578_00\", \"CUSA40902_00\", \"CUSA40903_00\"], \"name\": \"Kick it, Bunny!\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/bJW65jyp4N2Bhv71tdWCD4wK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/FVu6g2I58a2oKWGUnM0bEcRo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/WCjbToMR2IL9LiN3tgAmLIkK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/mdPZdf8JCQmuyRty2FLQNgxk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Kick it, Bunny!\", \"uk-UA\": \"Kick it, Bunny!\", \"de-DE\": \"Kick it, Bunny!\", \"en-US\": \"Kick it, Bunny!\", \"ko-KR\": \"Kick it, Bunny!\", \"pt-BR\": \"Kick it, Bunny!\", \"es-ES\": \"Kick it, Bunny!\", \"ar-AE\": \"Kick it, Bunny!\", \"no-NO\": \"Kick it, Bunny!\", \"fr-CA\": \"Kick it, Bunny!\", \"it-IT\": \"Kick it, Bunny!\", \"pl-PL\": \"Kick it, Bunny!\", \"ru-RU\": \"Kick it, Bunny!\", \"zh-Hans\": \"Kick it, Bunny!\", \"nl-NL\": \"Kick it, Bunny!\", \"pt-PT\": \"Kick it, Bunny!\", \"zh-Hant\": \"Kick it, Bunny!\", \"sv-SE\": \"Kick it, Bunny!\", \"da-DK\": \"Kick it, Bunny!\", \"tr-TR\": \"Kick it, Bunny!\", \"fr-FR\": \"Kick it, Bunny!\", \"en-GB\": \"Kick it, Bunny!\", \"es-419\": \"Kick it, Bunny!\", \"ja-JP\": \"Kick it, Bunny!\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/bJW65jyp4N2Bhv71tdWCD4wK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/FVu6g2I58a2oKWGUnM0bEcRo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/WCjbToMR2IL9LiN3tgAmLIkK.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/mdPZdf8JCQmuyRty2FLQNgxk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202109/1414/7KftruXH3z0EnQW3JxQtNQ6Q.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T12:20:43.670000Z\", \"lastPlayedDateTime\": \"2023-05-14T15:48:29.440000Z\", \"playDuration\": \"PT3H21M50S\"}, {\"titleId\": \"CUSA41268_00\", \"name\": \"SokoBunny\", \"localizedName\": \"SokoBunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10003587, \"titleIds\": [\"CUSA29861_00\", \"CUSA41267_00\", \"CUSA41268_00\", \"CUSA29860_00\"], \"name\": \"SokoBunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/zON4T7eM6vM8FkaKqoNbAELv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1912/OAVwSeB0G3splPZfupUGgOL1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/H6s66zHeHi1s0rZ9KLTBlXmE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/N70EDQcg0olrouTgVt9esqU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"SokoBunny\", \"uk-UA\": \"SokoBunny\", \"de-DE\": \"SokoBunny\", \"en-US\": \"SokoBunny\", \"ko-KR\": \"SokoBunny\", \"pt-BR\": \"SokoBunny\", \"es-ES\": \"SokoBunny\", \"ar-AE\": \"SokoBunny\", \"no-NO\": \"SokoBunny\", \"fr-CA\": \"SokoBunny\", \"it-IT\": \"SokoBunny\", \"pl-PL\": \"SokoBunny\", \"ru-RU\": \"SokoBunny\", \"zh-Hans\": \"SokoBunny\", \"nl-NL\": \"SokoBunny\", \"pt-PT\": \"SokoBunny\", \"zh-Hant\": \"SokoBunny\", \"sv-SE\": \"SokoBunny\", \"da-DK\": \"SokoBunny\", \"tr-TR\": \"SokoBunny\", \"fr-FR\": \"SokoBunny\", \"en-GB\": \"SokoBunny\", \"es-419\": \"SokoBunny\", \"ja-JP\": \"SokoBunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/zON4T7eM6vM8FkaKqoNbAELv.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/img/rnd/202111/1912/OAVwSeB0G3splPZfupUGgOL1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/H6s66zHeHi1s0rZ9KLTBlXmE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202108/2518/N70EDQcg0olrouTgVt9esqU5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202107/2120/i2Gqa8SfkROfweiyL22GJEWO.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T10:24:03.520000Z\", \"lastPlayedDateTime\": \"2023-05-14T12:16:51.270000Z\", \"playDuration\": \"PT1H52M28S\"}, {\"titleId\": \"PPSA07650_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T07:56:33.150000Z\", \"lastPlayedDateTime\": \"2023-05-14T10:14:15.340000Z\", \"playDuration\": \"PT1H18M26S\"}, {\"titleId\": \"PPSA07649_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T06:11:05.830000Z\", \"lastPlayedDateTime\": \"2023-05-14T07:56:21.900000Z\", \"playDuration\": \"PT1H44M56S\"}, {\"titleId\": \"PPSA10591_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T04:37:23.320000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:46:41.250000Z\", \"playDuration\": \"PT9M14S\"}, {\"titleId\": \"PPSA10590_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T04:20:30.060000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:30:41.660000Z\", \"playDuration\": \"PT10M8S\"}, {\"titleId\": \"CUSA37177_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T04:07:26.210000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:19:18.330000Z\", \"playDuration\": \"PT11M47S\"}, {\"titleId\": \"CUSA37178_00\", \"name\": \"Billy 101\", \"localizedName\": \"Billy 101\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006267, \"titleIds\": [\"PPSA10591_00\", \"PPSA10590_00\", \"CUSA37177_00\", \"CUSA37178_00\"], \"name\": \"Billy 101\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"CASUAL\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Billy 101\", \"uk-UA\": \"Billy 101\", \"de-DE\": \"Billy 101\", \"en-US\": \"Billy 101\", \"pt-BR\": \"Billy 101\", \"es-ES\": \"Billy 101\", \"ar-AE\": \"Billy 101\", \"no-NO\": \"Billy 101\", \"fr-CA\": \"Billy 101\", \"it-IT\": \"Billy 101\", \"pl-PL\": \"Billy 101\", \"ru-RU\": \"Billy 101\", \"nl-NL\": \"Billy 101\", \"pt-PT\": \"Billy 101\", \"sv-SE\": \"Billy 101\", \"da-DK\": \"Billy 101\", \"tr-TR\": \"Billy 101\", \"fr-FR\": \"Billy 101\", \"en-GB\": \"Billy 101\", \"es-419\": \"Billy 101\", \"ja-JP\": \"Billy 101\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/b836e1273d64b309bfafc35086d8b8661f12bc23b3160471.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/81373a847cf89b4bf64f7c52b3c3bb04c946de1e969fef0a.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f0c04d426e26fcf88d841e16e919a9b4c221fbcb9ebd1d08.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/d4c167cd4527e494670a45d3b1c0d435bf4239f16df46cc1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/e701ab5626e0bec1f504655aa8d772e50b024100e41ee33a.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/f1511c77b2980a2cbb2433299474cd750e5c3a9e6c77c3b5.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/04d9ab78319bc715ee7ae8f2c672bb7c7aee5a96440841c9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/879e7e9e84db109b78e2c76ac2d4c761a73f4630c6bf81aa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/36cc8b2f524063a0e463634d69b8a3053367af437aa62b79.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/cdc8abd54cd4fbf89c9214556c6981fda2307ecaa9d7cc9a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/fc02dfe6089f01fb87e0cf8fefd625e18b00b0ecd0747605.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de0a7bc813c88611affa1ed70b82e374b53afa3ed897e766.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0821/d8bc5f4b0d726df2d512ff4fcbf014b0159155d1ed6fcf74.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T03:45:05.360000Z\", \"lastPlayedDateTime\": \"2023-05-14T04:07:24.400000Z\", \"playDuration\": \"PT16M59S\"}, {\"titleId\": \"CUSA35852_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T03:15:39.740000Z\", \"lastPlayedDateTime\": \"2023-05-14T03:21:55.760000Z\", \"playDuration\": \"PT6M12S\"}, {\"titleId\": \"CUSA35853_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T03:11:24.570000Z\", \"lastPlayedDateTime\": \"2023-05-14T03:15:07.510000Z\", \"playDuration\": \"PT3M39S\"}, {\"titleId\": \"CUSA35851_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:55:57.670000Z\", \"lastPlayedDateTime\": \"2023-05-14T03:11:09.800000Z\", \"playDuration\": \"PT15M\"}, {\"titleId\": \"CUSA35850_00\", \"name\": \"THUNDER\", \"localizedName\": \"THUNDER\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005864, \"titleIds\": [\"CUSA35851_00\", \"CUSA35852_00\", \"CUSA35850_00\", \"CUSA35853_00\"], \"name\": \"THUNDER\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"THUNDER\", \"uk-UA\": \"THUNDER\", \"de-DE\": \"THUNDER\", \"en-US\": \"THUNDER\", \"ko-KR\": \"THUNDER\", \"pt-BR\": \"THUNDER\", \"es-ES\": \"THUNDER\", \"ar-AE\": \"THUNDER\", \"no-NO\": \"THUNDER\", \"fr-CA\": \"THUNDER\", \"it-IT\": \"THUNDER\", \"pl-PL\": \"THUNDER\", \"ru-RU\": \"THUNDER\", \"zh-Hans\": \"THUNDER\", \"nl-NL\": \"THUNDER\", \"pt-PT\": \"THUNDER\", \"zh-Hant\": \"THUNDER\", \"sv-SE\": \"THUNDER\", \"da-DK\": \"THUNDER\", \"tr-TR\": \"THUNDER\", \"fr-FR\": \"THUNDER\", \"en-GB\": \"THUNDER\", \"es-419\": \"THUNDER\", \"ja-JP\": \"THUNDER\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0413/5210e33cb903e5ce2e431a3061a092d64e5b554045fa8bf0.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/VXjuPiRhR8wLCSPS99AfAsuR.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/vjMLv0lDwSTbacnn72RiTLaJ.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/CRMAsn1ltcpFmIbRFmJ9GZ9I.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1913/enh5EudZYa3hIabhIEsRsfKs.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:51:01.110000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:55:52.390000Z\", \"playDuration\": \"PT4M28S\"}, {\"titleId\": \"CUSA39326_00\", \"name\": \"Marsi's Adventures\", \"localizedName\": \"Marsi's Adventures\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006857, \"titleIds\": [\"CUSA39326_00\", \"CUSA39325_00\", \"CUSA39323_00\", \"CUSA39324_00\"], \"name\": \"Marsi's Adventures\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2215/VVynmGN1rBIqgttBnNr4bvFT.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/hsqjpuZeotk5VPgtjV9rT6uQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Marsi's Adventures\", \"uk-UA\": \"Marsi's Adventures\", \"de-DE\": \"Marsi's Adventures\", \"en-US\": \"Marsi's Adventures\", \"ko-KR\": \"Marsi's Adventures\", \"pt-BR\": \"Marsi's Adventures\", \"es-ES\": \"Marsi's Adventures\", \"ar-AE\": \"Marsi's Adventures\", \"no-NO\": \"Marsi's Adventures\", \"fr-CA\": \"Marsi's Adventures\", \"it-IT\": \"Marsi's Adventures\", \"pl-PL\": \"Marsi's Adventures\", \"ru-RU\": \"Marsi's Adventures\", \"zh-Hans\": \"Marsi's Adventures\", \"nl-NL\": \"Marsi's Adventures\", \"pt-PT\": \"Marsi's Adventures\", \"zh-Hant\": \"Marsi's Adventures\", \"sv-SE\": \"Marsi's Adventures\", \"da-DK\": \"Marsi's Adventures\", \"tr-TR\": \"Marsi's Adventures\", \"fr-FR\": \"Marsi's Adventures\", \"en-GB\": \"Marsi's Adventures\", \"es-419\": \"Marsi's Adventures\", \"ja-JP\": \"Marsi's Adventures\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2215/VVynmGN1rBIqgttBnNr4bvFT.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/hsqjpuZeotk5VPgtjV9rT6uQ.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0710/yz4ZVAK5yXHes4fI1zCvmppP.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:42:38.790000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:48:14.770000Z\", \"playDuration\": \"PT5M31S\"}, {\"titleId\": \"CUSA35917_00\", \"name\": \"B CANNON\", \"localizedName\": \"B CANNON\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005879, \"titleIds\": [\"CUSA35918_00\", \"CUSA35917_00\", \"CUSA35915_00\", \"CUSA35916_00\"], \"name\": \"B CANNON\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"B CANNON\", \"uk-UA\": \"B CANNON\", \"de-DE\": \"B CANNON\", \"en-US\": \"B CANNON\", \"ko-KR\": \"B CANNON\", \"pt-BR\": \"B CANNON\", \"es-ES\": \"B CANNON\", \"ar-AE\": \"B CANNON\", \"no-NO\": \"B CANNON\", \"fr-CA\": \"B CANNON\", \"it-IT\": \"B CANNON\", \"pl-PL\": \"B CANNON\", \"ru-RU\": \"B CANNON\", \"zh-Hans\": \"B CANNON\", \"nl-NL\": \"B CANNON\", \"pt-PT\": \"B CANNON\", \"zh-Hant\": \"B CANNON\", \"sv-SE\": \"B CANNON\", \"da-DK\": \"B CANNON\", \"tr-TR\": \"B CANNON\", \"fr-FR\": \"B CANNON\", \"en-GB\": \"B CANNON\", \"es-419\": \"B CANNON\", \"ja-JP\": \"B CANNON\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:33:10.160000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:42:27.040000Z\", \"playDuration\": \"PT5M35S\"}, {\"titleId\": \"CUSA35918_00\", \"name\": \"B CANNON\", \"localizedName\": \"B CANNON\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005879, \"titleIds\": [\"CUSA35918_00\", \"CUSA35917_00\", \"CUSA35915_00\", \"CUSA35916_00\"], \"name\": \"B CANNON\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"B CANNON\", \"uk-UA\": \"B CANNON\", \"de-DE\": \"B CANNON\", \"en-US\": \"B CANNON\", \"ko-KR\": \"B CANNON\", \"pt-BR\": \"B CANNON\", \"es-ES\": \"B CANNON\", \"ar-AE\": \"B CANNON\", \"no-NO\": \"B CANNON\", \"fr-CA\": \"B CANNON\", \"it-IT\": \"B CANNON\", \"pl-PL\": \"B CANNON\", \"ru-RU\": \"B CANNON\", \"zh-Hans\": \"B CANNON\", \"nl-NL\": \"B CANNON\", \"pt-PT\": \"B CANNON\", \"zh-Hant\": \"B CANNON\", \"sv-SE\": \"B CANNON\", \"da-DK\": \"B CANNON\", \"tr-TR\": \"B CANNON\", \"fr-FR\": \"B CANNON\", \"en-GB\": \"B CANNON\", \"es-419\": \"B CANNON\", \"ja-JP\": \"B CANNON\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1019/cf2341a88159ee7d362aea26be5ff0c2ae402864fae373d9.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/w5rnd06rUYMgwYVra7NdTue1.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/15Y49WV8uXv0LmRq3eOjqgHn.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/XkFBur1J28MoLAfHav7DzeJt.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202207/1914/R7CQZbGlctgudiPkLDI7erI2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T02:28:48.240000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:33:08.140000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA40734_00\", \"name\": \"Lila's Tale and the Hidden Forest\", \"localizedName\": \"Lila's Tale and the Hidden Forest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007342, \"titleIds\": [\"CUSA40734_00\", \"CUSA40735_00\"], \"name\": \"Lila's Tale and the Hidden Forest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lila's Tale and the Hidden Forest\", \"uk-UA\": \"Lila's Tale and the Hidden Forest\", \"de-DE\": \"Lila's Tale and the Hidden Forest\", \"en-US\": \"Lila's Tale and the Hidden Forest\", \"ko-KR\": \"Lila's Tale and the Hidden Forest\", \"pt-BR\": \"Lila's Tale and the Hidden Forest\", \"es-ES\": \"Lila's Tale and the Hidden Forest\", \"ar-AE\": \"Lila's Tale and the Hidden Forest\", \"no-NO\": \"Lila's Tale and the Hidden Forest\", \"fr-CA\": \"Lila's Tale and the Hidden Forest\", \"it-IT\": \"Lila's Tale and the Hidden Forest\", \"pl-PL\": \"Lila's Tale and the Hidden Forest\", \"ru-RU\": \"Lila's Tale and the Hidden Forest\", \"nl-NL\": \"Lila's Tale and the Hidden Forest\", \"pt-PT\": \"Lila's Tale and the Hidden Forest\", \"sv-SE\": \"Lila's Tale and the Hidden Forest\", \"da-DK\": \"Lila's Tale and the Hidden Forest\", \"tr-TR\": \"Lila's Tale and the Hidden Forest\", \"fr-FR\": \"Lila's Tale and the Hidden Forest\", \"en-GB\": \"Lila's Tale and the Hidden Forest\", \"es-419\": \"Lila's Tale and the Hidden Forest\", \"ja-JP\": \"Lila's Tale and the Hidden Forest\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-14T01:02:39.090000Z\", \"lastPlayedDateTime\": \"2023-05-14T02:25:32.800000Z\", \"playDuration\": \"PT1H21M44S\"}, {\"titleId\": \"CUSA40735_00\", \"name\": \"Lila's Tale and the Hidden Forest\", \"localizedName\": \"Lila's Tale and the Hidden Forest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007342, \"titleIds\": [\"CUSA40734_00\", \"CUSA40735_00\"], \"name\": \"Lila's Tale and the Hidden Forest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lila's Tale and the Hidden Forest\", \"uk-UA\": \"Lila's Tale and the Hidden Forest\", \"de-DE\": \"Lila's Tale and the Hidden Forest\", \"en-US\": \"Lila's Tale and the Hidden Forest\", \"ko-KR\": \"Lila's Tale and the Hidden Forest\", \"pt-BR\": \"Lila's Tale and the Hidden Forest\", \"es-ES\": \"Lila's Tale and the Hidden Forest\", \"ar-AE\": \"Lila's Tale and the Hidden Forest\", \"no-NO\": \"Lila's Tale and the Hidden Forest\", \"fr-CA\": \"Lila's Tale and the Hidden Forest\", \"it-IT\": \"Lila's Tale and the Hidden Forest\", \"pl-PL\": \"Lila's Tale and the Hidden Forest\", \"ru-RU\": \"Lila's Tale and the Hidden Forest\", \"nl-NL\": \"Lila's Tale and the Hidden Forest\", \"pt-PT\": \"Lila's Tale and the Hidden Forest\", \"sv-SE\": \"Lila's Tale and the Hidden Forest\", \"da-DK\": \"Lila's Tale and the Hidden Forest\", \"tr-TR\": \"Lila's Tale and the Hidden Forest\", \"fr-FR\": \"Lila's Tale and the Hidden Forest\", \"en-GB\": \"Lila's Tale and the Hidden Forest\", \"es-419\": \"Lila's Tale and the Hidden Forest\", \"ja-JP\": \"Lila's Tale and the Hidden Forest\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f7038557c17df446db63cb2b0bd88a74796a007697fe77ec.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/1a610001a69192eea8caa76b5431d98032726e8698005faa.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9ca7acc54ec2b59a331ff4d4ac59e1310b18594f3e45b82a.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/0d34937f02dd5c313e5accf8c8640075917eab24d20b0592.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/d0ddfc14792e0e5ac85f92e843a20c041f1a9f87eadcccb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/8dc058f33a88e0464a2569f136d91f7d5bf988adbcdc5c4d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/dd57fcba304727358321b5f8797f50bab3bd01e13a782242.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/7d762b52ae2f271f6578825c080985f44a86770f02cc823d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/2a75a002334a7b1294d56fa06b59ec42ab29040ec786e1ef.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/957053d9822604ad9c22b04fb171e24b21b8db948e06ba98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/b31d2a9b327deb07c07bc71bc0e5f8fa19754cdea0e16ab9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/f54b433957b5dad2f29571f6b4fcf0cf953ccbf6b4a31c2c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/9315b81aa261d0df7d4e3dc3ae2f22c655f938e259dc26fd.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/00e8af571bab4d304fbbdae753f5e3a0d8824c825501c0e8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/57becd56614ecf808911ccd36582e44d851ecc18e8a99f90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/32e42038df7110648d21f2c1da4f8d36b57203c9612e1b19.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1711/559e58e078e251a067bc85fbca52ba2ef69ddc3167202dbc.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-13T01:45:57.190000Z\", \"lastPlayedDateTime\": \"2023-05-13T17:27:19.660000Z\", \"playDuration\": \"PT3H16M23S\"}, {\"titleId\": \"CUSA35823_00\", \"name\": \"Alterity Experience\", \"localizedName\": \"Alterity Experience\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005289, \"titleIds\": [\"PPSA15727_00\", \"PPSA15728_00\", \"CUSA35823_00\", \"CUSA42716_00\", \"PPSA12399_00\", \"CUSA42715_00\", \"CUSA35824_00\", \"PPSA12398_00\"], \"name\": \"Alterity Experience\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alterity Experience\", \"uk-UA\": \"Alterity Experience\", \"de-DE\": \"Alterity Experience\", \"en-US\": \"Alterity Experience\", \"ko-KR\": \"Alterity Experience\", \"pt-BR\": \"Alterity Experience\", \"es-ES\": \"Alterity Experience\", \"ar-AE\": \"Alterity Experience\", \"no-NO\": \"Alterity Experience\", \"fr-CA\": \"Alterity Experience\", \"it-IT\": \"Alterity Experience\", \"pl-PL\": \"Alterity Experience\", \"ru-RU\": \"Alterity Experience\", \"zh-Hans\": \"Alterity Experience\", \"nl-NL\": \"Alterity Experience\", \"pt-PT\": \"Alterity Experience\", \"zh-Hant\": \"Alterity Experience\", \"sv-SE\": \"Alterity Experience\", \"da-DK\": \"Alterity Experience\", \"tr-TR\": \"Alterity Experience\", \"fr-FR\": \"Alterity Experience\", \"en-GB\": \"Alterity Experience\", \"es-419\": \"Alterity Experience\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c6\\u30a3\\u30ea\\u30c6\\u30a3\\u30a8\\u30af\\u30b9\\u30da\\u30ea\\u30a8\\u30f3\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T15:40:51.850000Z\", \"lastPlayedDateTime\": \"2023-05-12T16:16:52.140000Z\", \"playDuration\": \"PT35M57S\"}, {\"titleId\": \"CUSA35824_00\", \"name\": \"Alterity Experience\", \"localizedName\": \"Alterity Experience\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005289, \"titleIds\": [\"PPSA15727_00\", \"PPSA15728_00\", \"CUSA35823_00\", \"CUSA42716_00\", \"PPSA12399_00\", \"CUSA42715_00\", \"CUSA35824_00\", \"PPSA12398_00\"], \"name\": \"Alterity Experience\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Alterity Experience\", \"uk-UA\": \"Alterity Experience\", \"de-DE\": \"Alterity Experience\", \"en-US\": \"Alterity Experience\", \"ko-KR\": \"Alterity Experience\", \"pt-BR\": \"Alterity Experience\", \"es-ES\": \"Alterity Experience\", \"ar-AE\": \"Alterity Experience\", \"no-NO\": \"Alterity Experience\", \"fr-CA\": \"Alterity Experience\", \"it-IT\": \"Alterity Experience\", \"pl-PL\": \"Alterity Experience\", \"ru-RU\": \"Alterity Experience\", \"zh-Hans\": \"Alterity Experience\", \"nl-NL\": \"Alterity Experience\", \"pt-PT\": \"Alterity Experience\", \"zh-Hant\": \"Alterity Experience\", \"sv-SE\": \"Alterity Experience\", \"da-DK\": \"Alterity Experience\", \"tr-TR\": \"Alterity Experience\", \"fr-FR\": \"Alterity Experience\", \"en-GB\": \"Alterity Experience\", \"es-419\": \"Alterity Experience\", \"ja-JP\": \"\\u30a2\\u30eb\\u30c6\\u30a3\\u30ea\\u30c6\\u30a3\\u30a8\\u30af\\u30b9\\u30da\\u30ea\\u30a8\\u30f3\\u30b9\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/rlhf6iZ5vwU7Sy13KLjZzAnS.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/GwuGDBX1a3sJjgqb3lBW85id.PNG\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/2508/BGRdbEJsUg6CpGelX1VhBblh.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/YRhH5Ni4tNbVvFJ25yYDfLWs.PNG\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/ad3MXtZuZytAWymtZwjxNJIo.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nKeD05lbikAsPFtNrvHJ2Z53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UlpOuh18sYSrYRusi0MerRC5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/nTo7ykYAzl5vhyXh6zNrIpo7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/m4wokuDC4w93NwJjYdcY9ZVT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/l6DwSNjhvtAYcmbdXvrU8Q2K.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0413/UNn661WAG5fDmXIi3OkZlgam.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T15:03:21.730000Z\", \"lastPlayedDateTime\": \"2023-05-12T15:40:44.560000Z\", \"playDuration\": \"PT37M12S\"}, {\"titleId\": \"PPSA13306_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T14:29:23.000000Z\", \"lastPlayedDateTime\": \"2023-05-12T14:52:08.470000Z\", \"playDuration\": \"PT22M38S\"}, {\"titleId\": \"PPSA13305_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T14:00:05.200000Z\", \"lastPlayedDateTime\": \"2023-05-12T14:28:10.950000Z\", \"playDuration\": \"PT27M57S\"}, {\"titleId\": \"PPSA13304_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T13:30:57.190000Z\", \"lastPlayedDateTime\": \"2023-05-12T13:58:03.840000Z\", \"playDuration\": \"PT27M1S\"}, {\"titleId\": \"PPSA13303_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T12:55:44.000000Z\", \"lastPlayedDateTime\": \"2023-05-12T13:24:29.540000Z\", \"playDuration\": \"PT28M36S\"}, {\"titleId\": \"CUSA40274_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T12:24:35.690000Z\", \"lastPlayedDateTime\": \"2023-05-12T12:50:21.900000Z\", \"playDuration\": \"PT25M42S\"}, {\"titleId\": \"CUSA40273_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T11:54:13.600000Z\", \"lastPlayedDateTime\": \"2023-05-12T12:24:33.780000Z\", \"playDuration\": \"PT28M50S\"}, {\"titleId\": \"CUSA40272_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T11:14:01.910000Z\", \"lastPlayedDateTime\": \"2023-05-12T11:50:50.620000Z\", \"playDuration\": \"PT36M43S\"}, {\"titleId\": \"CUSA40275_00\", \"name\": \"Mangavania\", \"localizedName\": \"Mangavania\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007154, \"titleIds\": [\"PPSA13305_00\", \"CUSA40275_00\", \"CUSA40274_00\", \"CUSA40272_00\", \"CUSA40273_00\", \"PPSA13306_00\", \"PPSA13303_00\", \"PPSA13304_00\"], \"name\": \"Mangavania\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Mangavania\", \"uk-UA\": \"Mangavania\", \"de-DE\": \"Mangavania\", \"en-US\": \"Mangavania\", \"ko-KR\": \"Mangavania\", \"pt-BR\": \"Mangavania\", \"es-ES\": \"Mangavania\", \"ar-AE\": \"Mangavania\", \"no-NO\": \"Mangavania\", \"fr-CA\": \"Mangavania\", \"it-IT\": \"Mangavania\", \"pl-PL\": \"Mangavania\", \"ru-RU\": \"Mangavania\", \"zh-Hans\": \"Mangavania\", \"nl-NL\": \"Mangavania\", \"pt-PT\": \"Mangavania\", \"zh-Hant\": \"Mangavania\", \"sv-SE\": \"Mangavania\", \"da-DK\": \"Mangavania\", \"tr-TR\": \"Mangavania\", \"fr-FR\": \"Mangavania\", \"en-GB\": \"Mangavania\", \"es-419\": \"Mangavania\", \"ja-JP\": \"Mangavania\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/12aa3332ca3d598d1ff7c3c5629e5850a652f4b64fc429f6.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/8f5946860d57958c7140907acbbe14b18437f3a20fe5596d.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7d9e65358df64bcebe677d0e0f6b4852b13bd1e29e45f7f0.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/69c3fdce49e40a296a1b0868a94acd89725c8ebd10e4e7d6.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7aa6e660a4d8bb31b94b289e142b1d04035b3d3966a82625.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/5f32fbefaa1f704a939324399accfbe6535d0e8f577667d3.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3e8c387cdf06e16e85d504592e3b4b3e0e030b7ea0b26d98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b61d502affc77dac90ece6a63cb4fcaf7ac7dc6960d9ce92.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/44b1eb3ac892e574ac437cf27b7bf1aa80fe1922ad017953.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/3a40f8974636467666c7733eca317b66931b26c83486d11f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/08f70b9dc0fd38e0f552cd8332d32f7574a1490a5a7f5d90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/c7be3bc10c6b55f8be2637b44df9ada3748fb1c08e358f29.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/a2b42d9b0331f8711dbd798c666a5321a835f6d68bb17004.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/7f72735c45595b27804851ba4b34b3152ec9250118a6d5e7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/4276cfae3d18f79e538ab36474185ceea207def1d3958278.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/61ae984e8b97ffec72813ce69af15f189db5176c3eaba611.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2012/b22482aec43f8735a24c4ce4f82d3fc52a727696aadb6c07.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T10:09:52.800000Z\", \"lastPlayedDateTime\": \"2023-05-12T11:10:58.040000Z\", \"playDuration\": \"PT1H1M1S\"}, {\"titleId\": \"PPSA08301_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T08:40:03.330000Z\", \"lastPlayedDateTime\": \"2023-05-12T09:00:35.120000Z\", \"playDuration\": \"PT20M28S\"}, {\"titleId\": \"PPSA08300_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T08:19:24.290000Z\", \"lastPlayedDateTime\": \"2023-05-12T08:39:54.170000Z\", \"playDuration\": \"PT20M27S\"}, {\"titleId\": \"CUSA34364_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T07:57:35.980000Z\", \"lastPlayedDateTime\": \"2023-05-12T08:19:20.980000Z\", \"playDuration\": \"PT21M30S\"}, {\"titleId\": \"CUSA34363_00\", \"name\": \"Cions of Vega\", \"localizedName\": \"Cions of Vega\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005347, \"titleIds\": [\"PPSA08300_00\", \"PPSA08301_00\", \"CUSA34363_00\", \"CUSA34364_00\"], \"name\": \"Cions of Vega\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Cions of Vega\", \"uk-UA\": \"Cions of Vega\", \"de-DE\": \"Cions of Vega\", \"en-US\": \"Cions of Vega\", \"ko-KR\": \"Cions of Vega\", \"pt-BR\": \"Cions of Vega\", \"es-ES\": \"Cions of Vega\", \"ar-AE\": \"Cions of Vega\", \"no-NO\": \"Cions of Vega\", \"fr-CA\": \"Cions of Vega\", \"it-IT\": \"Cions of Vega\", \"pl-PL\": \"Cions of Vega\", \"ru-RU\": \"Cions of Vega\", \"zh-Hans\": \"Cions of Vega\", \"nl-NL\": \"Cions of Vega\", \"pt-PT\": \"Cions of Vega\", \"zh-Hant\": \"Cions of Vega\", \"sv-SE\": \"Cions of Vega\", \"da-DK\": \"Cions of Vega\", \"tr-TR\": \"Cions of Vega\", \"fr-FR\": \"Cions of Vega\", \"en-GB\": \"Cions of Vega\", \"es-419\": \"Cions of Vega\", \"ja-JP\": \"Cions of Vega\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ILQJC7SNk2AtS6jpdmCQzxJr.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/KIKmu2VQxrl7sPV0Xk6HL5UI.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/c5pFebakCbeRPMSxd9fPqXaN.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/Yx81mq8VRxHDblEpMVIYDKhn.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/cGxHhrXNXrVgP2AWC0jXtNKd.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/i8vFCq0m6aaLzpYEVDFWZFdH.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/4BJNjKphx1EvB1pewxP16oHk.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/vqiDD343NRYOP5W3hAHGhG7v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/IPAhLk6v6r4IJh9V6LqvaxNK.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/sc8riOxqH9U2RRu5Dm3E7Mqy.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/x8yw5F8A4dMboHh7IFFBBYLT.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/71zE2mCuNVUq6bO60DIssx4C.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/f2PNWIwvXzbuU2ApBSjlqUus.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/ffpcq00XjDJqGBeFPwNbJrin.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/uFdVRMDDu4qGxbJo55ag6LHw.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1514/DasoB6QwKUpNbUSj8XqcQp10.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/1506/fK2HXSIAZfyafRuiEhTsuuyD.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T07:30:30.780000Z\", \"lastPlayedDateTime\": \"2023-05-12T07:54:15.300000Z\", \"playDuration\": \"PT23M40S\"}, {\"titleId\": \"PPSA13869_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T06:39:16.920000Z\", \"lastPlayedDateTime\": \"2023-05-12T07:29:47.640000Z\", \"playDuration\": \"PT44M51S\"}, {\"titleId\": \"PPSA13868_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T05:57:16.330000Z\", \"lastPlayedDateTime\": \"2023-05-12T06:39:13.380000Z\", \"playDuration\": \"PT41M48S\"}, {\"titleId\": \"CUSA40857_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T05:14:23.480000Z\", \"lastPlayedDateTime\": \"2023-05-12T05:55:29.230000Z\", \"playDuration\": \"PT40M54S\"}, {\"titleId\": \"CUSA40856_00\", \"name\": \"Pretty Girls Tile Match\", \"localizedName\": \"Pretty Girls Tile Match\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007388, \"titleIds\": [\"PPSA13869_00\", \"PPSA13868_00\", \"CUSA40856_00\", \"CUSA40857_00\"], \"name\": \"Pretty Girls Tile Match\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Pretty Girls Tile Match\", \"uk-UA\": \"Pretty Girls Tile Match\", \"de-DE\": \"Pretty Girls Tile Match\", \"en-US\": \"Pretty Girls Tile Match\", \"ko-KR\": \"Pretty Girls Tile Match\", \"pt-BR\": \"Pretty Girls Tile Match\", \"es-ES\": \"Pretty Girls Tile Match\", \"ar-AE\": \"Pretty Girls Tile Match\", \"no-NO\": \"Pretty Girls Tile Match\", \"fr-CA\": \"Pretty Girls Tile Match\", \"it-IT\": \"Pretty Girls Tile Match\", \"pl-PL\": \"Pretty Girls Tile Match\", \"ru-RU\": \"Pretty Girls Tile Match\", \"zh-Hans\": \"Pretty Girls Tile Match\", \"nl-NL\": \"Pretty Girls Tile Match\", \"pt-PT\": \"Pretty Girls Tile Match\", \"zh-Hant\": \"Pretty Girls Tile Match\", \"sv-SE\": \"Pretty Girls Tile Match\", \"da-DK\": \"Pretty Girls Tile Match\", \"tr-TR\": \"Pretty Girls Tile Match\", \"fr-FR\": \"Pretty Girls Tile Match\", \"en-GB\": \"Pretty Girls Tile Match\", \"es-419\": \"Pretty Girls Tile Match\", \"ja-JP\": \"Pretty Girls Tile Match\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/7e6116b10154248fbda783650ea748a9eb25144419877313.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/39207b0d3c54d56edb05c7df54d0968db166f6e259ed5764.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e6da81d4c42d4aed34abb868a69de64ae20e0ebd34523f61.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2706/d90e7d45d3a086f135663741bb9cc9a70bfb248b283c0b6e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b6a98ce42b9019d91dfb23138a6d5edb0257816ebd39cdba.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/df142a83d7eac5d8a96de273104edef3434b219a5a5ea03f.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/67736e2983d103bb3ba7b68b130ba88b052852c8d4534602.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/46a4951542483103f712eaee2d4bb8d352e254f2d6df32c2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e230de53a9dde943c1113e6ae2d35c33ee31d58f760b8b3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/7cd8e94c85e021c7c2ca8804543898386b377b07f0a644f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e746d6b5e997d5b8844d927f891c8512a7ef07d7ca115bd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/8e51cfb87b5220151cd3069b36c64ca0b6a71db0ed5ed0c4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/b1703e47f16a20c4fdbc1b1059fc6561c40fb15fe818f03a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/4bde64cd442b4a56bae0572a86821851d3384e7fd569973c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/eb76ad1c94d26ec38a0e27de0b61cec3c0764ea2d87c42fb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/30e031359105fe9fee715cd4c471d4b613b7d7f6feb196ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2703/e3c028bc659f558f1fbaf2674ad05453062e9c96f01eea9e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:22:26.960000Z\", \"lastPlayedDateTime\": \"2023-05-12T05:14:19.620000Z\", \"playDuration\": \"PT50M7S\"}, {\"titleId\": \"PPSA16449_00\", \"name\": \"Dreaming Canvas\", \"localizedName\": \"Dreaming Canvas\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 234601, \"titleIds\": [\"PPSA16449_00\", \"CUSA16583_00\", \"PPSA16448_00\", \"CUSA17513_00\", \"CUSA16612_00\", \"CUSA17557_00\"], \"name\": \"Dreaming Canvas\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/45cf68eb746dfbaea56b36bce65990d828765d15918b6251.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/1fec6fce792559ed350af2b4f578058ce2ce66cb82f29f43.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/2efc802b72844fd1555d535ca95b785a261738ffb2beb3fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/024bc806026641fb52b8f24c556276012dac39576283e479.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/0649a336d7d4daf17f4dc1237fc7620a5c2e2c2698c1feb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/44ab372c5576f4550be920c64291b9878405f01f186e06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d6bfba8a0efc4cdcdd6f1098e7dc5856635cc87aa9760d53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d9f748e9d315c5b2682668f576478b31f1c7ced90ee971f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/73bbdc0f958e66ef6ffd13c9a79cc234c2ba632de4b46fba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/554da1019ae2691523e543962c1b5aaada460769a998ecd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/b3cedd4d66d4d5c1f9b258358910b70882b2d6cb9da62221.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/4788ae093d277e50380f079b464e88702eb68799c4cb3d91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dreaming Canvas\", \"uk-UA\": \"Dreaming Canvas\", \"de-DE\": \"Dreaming Canvas\", \"en-US\": \"Dreaming Canvas\", \"ko-KR\": \"Dreaming Canvas\", \"pt-BR\": \"Dreaming Canvas\", \"es-ES\": \"Dreaming Canvas\", \"ar-AE\": \"Dreaming Canvas\", \"no-NO\": \"Dreaming Canvas\", \"fr-CA\": \"Dreaming Canvas\", \"it-IT\": \"Dreaming Canvas\", \"pl-PL\": \"Dreaming Canvas\", \"ru-RU\": \"Dreaming Canvas\", \"zh-Hans\": \"Dreaming Canvas\", \"nl-NL\": \"Dreaming Canvas\", \"pt-PT\": \"Dreaming Canvas\", \"zh-Hant\": \"Dreaming Canvas\", \"sv-SE\": \"Dreaming Canvas\", \"da-DK\": \"Dreaming Canvas\", \"tr-TR\": \"Dreaming Canvas\", \"fr-FR\": \"Dreaming Canvas\", \"en-GB\": \"Dreaming Canvas\", \"es-419\": \"Dreaming Canvas\", \"ja-JP\": \"Dreaming Canvas\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/45cf68eb746dfbaea56b36bce65990d828765d15918b6251.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/1fec6fce792559ed350af2b4f578058ce2ce66cb82f29f43.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/2efc802b72844fd1555d535ca95b785a261738ffb2beb3fe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/024bc806026641fb52b8f24c556276012dac39576283e479.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/0649a336d7d4daf17f4dc1237fc7620a5c2e2c2698c1feb9.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/44ab372c5576f4550be920c64291b9878405f01f186e06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d6bfba8a0efc4cdcdd6f1098e7dc5856635cc87aa9760d53.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d9f748e9d315c5b2682668f576478b31f1c7ced90ee971f9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/73bbdc0f958e66ef6ffd13c9a79cc234c2ba632de4b46fba.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/554da1019ae2691523e543962c1b5aaada460769a998ecd9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/b3cedd4d66d4d5c1f9b258358910b70882b2d6cb9da62221.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/4788ae093d277e50380f079b464e88702eb68799c4cb3d91.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0208/d48d3a97eb94fd39cca91af8fedd52bde43cf6e984a2982e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:08:23.000000Z\", \"lastPlayedDateTime\": \"2023-05-12T04:21:10.010000Z\", \"playDuration\": \"PT12M42S\"}, {\"titleId\": \"PPSA15989_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:04:51.660000Z\", \"lastPlayedDateTime\": \"2023-05-12T04:06:22.780000Z\", \"playDuration\": \"PT1M28S\"}, {\"titleId\": \"CUSA42914_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T04:02:29.220000Z\", \"lastPlayedDateTime\": \"2023-05-12T04:04:47.690000Z\", \"playDuration\": \"PT2M6S\"}, {\"titleId\": \"PPSA15990_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T03:09:57.910000Z\", \"lastPlayedDateTime\": \"2023-05-12T03:11:21.360000Z\", \"playDuration\": \"PT1M20S\"}, {\"titleId\": \"PPSA15988_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T03:07:22.880000Z\", \"lastPlayedDateTime\": \"2023-05-12T03:09:55.250000Z\", \"playDuration\": \"PT2M15S\"}, {\"titleId\": \"CUSA42910_00\", \"name\": \"Monster Battle\", \"localizedName\": \"Monster Battle\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008201, \"titleIds\": [\"CUSA42914_00\", \"CUSA42915_00\", \"PPSA15989_00\", \"CUSA42910_00\", \"PPSA15988_00\", \"PPSA15990_00\"], \"name\": \"Monster Battle\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ARCADE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Monster Battle\", \"uk-UA\": \"Monster Battle\", \"de-DE\": \"Monster Battle\", \"en-US\": \"Monster Battle\", \"pt-BR\": \"Monster Battle\", \"es-ES\": \"Monster Battle\", \"ar-AE\": \"Monster Battle\", \"no-NO\": \"Monster Battle\", \"fr-CA\": \"Monster Battle\", \"it-IT\": \"Monster Battle\", \"pl-PL\": \"Monster Battle\", \"ru-RU\": \"Monster Battle\", \"nl-NL\": \"Monster Battle\", \"pt-PT\": \"Monster Battle\", \"sv-SE\": \"Monster Battle\", \"da-DK\": \"Monster Battle\", \"tr-TR\": \"Monster Battle\", \"fr-FR\": \"Monster Battle\", \"en-GB\": \"Monster Battle\", \"es-419\": \"Monster Battle\", \"ja-JP\": \"Monster Battle\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a6f484ecc6195d46a86e1dcd88660ae40eeed1a41ef3e9fc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4d6368d9f994a171d9d455230968084148a6b4d0e86b1426.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d2afc666aa85bcd3aa1e85f22dd03c77af4a713cc2b6e933.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/08e06a3ec37b99e3f61b86f46e8b4f1af0e285f466eb284e.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202305/0922/2f459fae982c78f90d2db057c9af2243d44eb9d66f03cf44.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/d6c382cc1924ae80d377ae33ae957872a1ad49ff404d62c7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/3d760f4f5bb49163a30520fa3cb972bda64fef8750bb9e8b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a4d2bbf9060281613ca0280f2585844298e4cf4fe951f94b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/69d9f58bad67f1da86e806fa489cc30d5e13104e7e90c856.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a99b534006c1148588674722c48071b6bcbf805418f9b827.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a5ab7ffd86ef4a64aaea2d67961328aee940cbf8b9c894de.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/4b214198c2ed0934b096f24ae3f3a3f1ee90a3b698330a40.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/a64195ee5623de6978ba25302347c8a8db5defd91fd8a2e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/df0ab51260e3e6bfa71fed9c3885d24975e32f47ae565110.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2917/f6d5e970f923fe63d0a25e0ad1db71df6edbd4be45a7ad9f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1123/d6cfa147fb16445fe3bbf745ea7b8e19939a7b8bf2d70ac2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T03:03:18.850000Z\", \"lastPlayedDateTime\": \"2023-05-12T03:07:04.410000Z\", \"playDuration\": \"PT3M27S\"}, {\"titleId\": \"PPSA14496_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T02:43:13.210000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:56:19.020000Z\", \"playDuration\": \"PT13M2S\"}, {\"titleId\": \"PPSA14497_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T02:22:27.940000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:43:10.010000Z\", \"playDuration\": \"PT20M35S\"}, {\"titleId\": \"CUSA41469_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T02:06:25.540000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:22:11.490000Z\", \"playDuration\": \"PT15M34S\"}, {\"titleId\": \"CUSA41468_00\", \"name\": \"After You\", \"localizedName\": \"After You\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007677, \"titleIds\": [\"CUSA43667_00\", \"CUSA41469_00\", \"PPSA14497_00\", \"CUSA41468_00\", \"PPSA14496_00\"], \"name\": \"After You\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"After You\", \"uk-UA\": \"After You\", \"de-DE\": \"After You\", \"en-US\": \"After You\", \"pt-BR\": \"After You\", \"es-ES\": \"After You\", \"ar-AE\": \"After You\", \"no-NO\": \"After You\", \"fr-CA\": \"After You\", \"it-IT\": \"After You\", \"pl-PL\": \"After You\", \"ru-RU\": \"After You\", \"nl-NL\": \"After You\", \"pt-PT\": \"After You\", \"sv-SE\": \"After You\", \"da-DK\": \"After You\", \"tr-TR\": \"After You\", \"fr-FR\": \"After You\", \"en-GB\": \"After You\", \"es-419\": \"After You\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/04ba6e79f840b7c1bbee237677049617d187351cf6f80719.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/f3659c2c454d4abf1ec155e2da8eced1bd1e269cf0940dd6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ae5e3cd2687150dbd21057f46067a0ed8e85c4b66e3aa524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/42eb8234a6527ac4be498afea0ec86dcd9e74f2dd97492aa.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/195592cf12c6825a892a590e75b8a1106edee1fc14e758b9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/1ce4f56589daf81dca57e7afca9658c240a2d7ac30331536.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/76c049338e4e9c6b8f3156f3c384d582d21eefda77ef0941.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/73263c8522f20ddc70ffb68dad221da76865483e72b2be71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/fe5fd2574cf6c2fb7622ba91a69343c53ec9f2f0e43907b0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/ea8c364e12959b03982b7fc7814537531fdb7bf7c71167e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0609/01f9929c9deb83e271d6f44040abac0259b49dfcd7cce132.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:32:53.770000Z\", \"lastPlayedDateTime\": \"2023-05-12T02:05:46.530000Z\", \"playDuration\": \"PT32M30S\"}, {\"titleId\": \"PPSA12017_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:29:07.920000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:32:50.620000Z\", \"playDuration\": \"PT2M18S\"}, {\"titleId\": \"PPSA12016_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:26:47.080000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:29:05.580000Z\", \"playDuration\": \"PT2M9S\"}, {\"titleId\": \"CUSA38890_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:23:46.740000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:26:44.940000Z\", \"playDuration\": \"PT2M28S\"}, {\"titleId\": \"CUSA38891_00\", \"name\": \"Dodge the Ball\", \"localizedName\": \"Dodge the Ball\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006748, \"titleIds\": [\"CUSA38891_00\", \"CUSA38890_00\", \"PPSA12016_00\", \"CUSA38888_00\", \"PPSA12017_00\", \"PPSA12014_00\", \"PPSA12015_00\", \"CUSA38889_00\"], \"name\": \"Dodge the Ball\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"UNIQUE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Dodge the Ball\", \"uk-UA\": \"Dodge the Ball\", \"de-DE\": \"Dodge the Ball\", \"en-US\": \"Dodge the Ball\", \"ko-KR\": \"Dodge the Ball\", \"pt-BR\": \"Dodge the Ball\", \"es-ES\": \"Dodge the Ball\", \"ar-AE\": \"Dodge the Ball\", \"no-NO\": \"Dodge the Ball\", \"fr-CA\": \"Dodge the Ball\", \"it-IT\": \"Dodge the Ball\", \"pl-PL\": \"Dodge the Ball\", \"ru-RU\": \"Dodge the Ball\", \"zh-Hans\": \"Dodge the Ball\", \"nl-NL\": \"Dodge the Ball\", \"pt-PT\": \"Dodge the Ball\", \"zh-Hant\": \"Dodge the Ball\", \"sv-SE\": \"Dodge the Ball\", \"da-DK\": \"Dodge the Ball\", \"tr-TR\": \"Dodge the Ball\", \"fr-FR\": \"Dodge the Ball\", \"en-GB\": \"Dodge the Ball\", \"es-419\": \"Dodge the Ball\", \"ja-JP\": \"Dodge the Ball\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/BnuJ834wxRA1sA3ySsBYDpnz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/RgW2ISXqbTOu4SxaomPYegl9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/XoUdeMDvnzOrfTlUM7eERk1T.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/Ifab5Suv7KxE7Z1WPAJxufGO.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/opFldQYLhb1Tev1KjJVceJjD.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/jp0E6KRnkHkTEi0ChmGeGirp.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202212/0813/AyJaMw9VVeiTbv2JUVgcoKFX.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:20:12.980000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:23:41.580000Z\", \"playDuration\": \"PT3M24S\"}, {\"titleId\": \"CUSA43480_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:18:06.210000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:19:40.280000Z\", \"playDuration\": \"PT1M30S\"}, {\"titleId\": \"CUSA43479_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:14:41.810000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:18:03.180000Z\", \"playDuration\": \"PT3M14S\"}, {\"titleId\": \"CUSA43478_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:10:58.010000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:14:38.750000Z\", \"playDuration\": \"PT3M18S\"}, {\"titleId\": \"CUSA43477_00\", \"name\": \"Hidden Bunny\", \"localizedName\": \"Hidden Bunny\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008425, \"titleIds\": [\"CUSA43480_00\", \"PPSA16549_00\", \"PPSA16551_00\", \"PPSA16552_00\", \"PPSA16550_00\", \"CUSA43479_00\", \"CUSA43477_00\", \"CUSA43478_00\"], \"name\": \"Hidden Bunny\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Hidden Bunny\", \"uk-UA\": \"Hidden Bunny\", \"de-DE\": \"Hidden Bunny\", \"en-US\": \"Hidden Bunny\", \"ko-KR\": \"Hidden Bunny\", \"pt-BR\": \"Hidden Bunny\", \"es-ES\": \"Hidden Bunny\", \"ar-AE\": \"Hidden Bunny\", \"no-NO\": \"Hidden Bunny\", \"fr-CA\": \"Hidden Bunny\", \"it-IT\": \"Hidden Bunny\", \"pl-PL\": \"Hidden Bunny\", \"ru-RU\": \"Hidden Bunny\", \"zh-Hans\": \"Hidden Bunny\", \"nl-NL\": \"Hidden Bunny\", \"pt-PT\": \"Hidden Bunny\", \"zh-Hant\": \"Hidden Bunny\", \"sv-SE\": \"Hidden Bunny\", \"da-DK\": \"Hidden Bunny\", \"tr-TR\": \"Hidden Bunny\", \"fr-FR\": \"Hidden Bunny\", \"en-GB\": \"Hidden Bunny\", \"es-419\": \"Hidden Bunny\", \"ja-JP\": \"Hidden Bunny\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f2b03e132657a157035984808cde50415ec5831c52f19896.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/898d42fddf83a3f10b9b3c04f884ef77ad9b5ba6671b778c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/cf01282d9a8a9cb966c30e1bd81235a11719681743fa3a74.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/1f5f4536752357750a28b5cf660ab6922338d51720dd3bae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/a949ff668240a382969d8a0281c81daea490cfa5ddc43f43.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/96093d5107f8d0570eff0883652d57893f88516b5edb7301.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/8a2a5b4729be986f71419fb44cb9550e8706e9766f4da62a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/f5fe3620e2505ba78eef5d07a704f8d769c27fb5250b736b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/224d426507abc991a4504ea91005b60613eed4ed59001c70.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/2322/bf1a4f471961659234e2a06da7956ca1b8ddd571d45fd43d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-12T01:03:25.640000Z\", \"lastPlayedDateTime\": \"2023-05-12T01:10:54.730000Z\", \"playDuration\": \"PT7M21S\"}, {\"titleId\": \"PPSA15510_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T16:12:24.000000Z\", \"lastPlayedDateTime\": \"2023-05-11T16:19:26.760000Z\", \"playDuration\": \"PT6M59S\"}], \"nextOffset\": 1000, \"previousOffset\": 799, \"totalItemCount\": 13573}" } } }, @@ -530,56 +526,56 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" + "Cache-Control": [ + "max-age=0, no-cache, no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:15 GMT" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" ], "Connection": [ "keep-alive", "Transfer-Encoding" ], "X-Psn-Request-Id": [ - "fd220e17-83ee-1031-a9b3-4120343481b9" + "deb5742e-94be-1031-86e2-1aad41a00197" ], - "Access-Control-Allow-Origin": [ - "*" + "Access-Control-Allow-Headers": [ + "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" ], - "X-Psn-Correlation-Id": [ - "fd220e17-83ee-1031-a9b2-4120343481b9" + "Pragma": [ + "no-cache" ], - "Cache-Control": [ - "max-age=0, no-cache, no-store" + "X-Psn-Correlation-Id": [ + "deb5742e-94be-1031-86e1-1aad41a00197" ], "Transfer-Encoding": [ "chunked" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Expires": [ + "Sun, 12 Jan 2025 03:19:15 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Access-Control-Max-Age": [ + "3600" ], - "Access-Control-Allow-Methods": [ - "OPTIONS,GET,PUT,POST,PATCH,DELETE,HEAD" + "Access-Control-Allow-Origin": [ + "*" ], - "Expires": [ - "Sun, 16 Jun 2024 23:00:05 GMT" + "X-Content-Type-Options": [ + "nosniff" ], "Content-Type": [ "application/json" ], - "Date": [ - "Sun, 16 Jun 2024 23:00:05 GMT" - ], - "Access-Control-Max-Age": [ - "3600" - ], - "Access-Control-Allow-Headers": [ - "Authorization,Accept-Language,Accept-Encoding,Accept-Charset,Cache-Control,Content-Type,X-Psn-Np-Service-Label,X-Psn-Np-Title-Token,User-Agent,X-Psn-Origin-Client-Ip,X-Psn-Np-Title-Id,X-Psn-Sdk-Ver,X-Psn-App-Ver,X-Psn-Trace-Id,X-Psn-Span-Id,X-Psn-Sampled,X-Psn-Correlation-Id,X-Psn-Request-Id,X-Psn-Console-Token,X-Np-Title-Token,X-Np-Console-Token,Origin,X-Psn-Platform" - ], "Set-Cookie": "REDACTED" }, "body": { - "string": "{\"titles\": [{\"titleId\": \"CUSA42513_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/fa85759d25303a1613523f025f5db776be9bab5a433c7d1b.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/3f8be3f3f4c990a3e0d3d8fea0f1c5490998ebd5c167af09.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:45:53.140000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:57:49.390000Z\", \"playDuration\": \"PT11M11S\"}, {\"titleId\": \"PPSA15848_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:34:22.000000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:43:16.860000Z\", \"playDuration\": \"PT8M49S\"}, {\"titleId\": \"PPSA15847_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:26:29.910000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:34:20.500000Z\", \"playDuration\": \"PT7M6S\"}, {\"titleId\": \"CUSA42794_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:19:40.480000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:26:27.670000Z\", \"playDuration\": \"PT6M29S\"}, {\"titleId\": \"CUSA42795_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:13:24.190000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:19:38.620000Z\", \"playDuration\": \"PT5M55S\"}, {\"titleId\": \"PPSA11246_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:01:16.360000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:09:00.620000Z\", \"playDuration\": \"PT7M30S\"}, {\"titleId\": \"PPSA11243_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T14:54:10.520000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:01:14.100000Z\", \"playDuration\": \"PT6M51S\"}, {\"titleId\": \"CUSA37987_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T14:46:18.410000Z\", \"lastPlayedDateTime\": \"2023-05-11T14:54:08.390000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA37989_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T12:07:02.620000Z\", \"lastPlayedDateTime\": \"2023-05-11T14:46:11.160000Z\", \"playDuration\": \"PT10M54S\"}, {\"titleId\": \"CUSA40363_00\", \"name\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"localizedName\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10007193, \"titleIds\": [\"CUSA40363_00\"], \"name\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/24ff77de372af0f088d968b7a2fd586dfe75bd3a682c61e6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/c39bd6a8183e9f05d566cb8dd46b37c8acf12f1e4f7af2d1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/487067f4ea3fc7e1382e041c795438c0692d2cf59d084372.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e301cb37714323cdd9df4f7b4c667d8dade2f3107d28f4ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e684f2f16318d16cbe2148a6b0e1389854e71d685320843e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/aabe72b25ea0d075dfa005a47c9e2d724847ca5f723b1abb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6fc155ae395a48b77588dad78021fe153f9b207b502f72d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6e034c657bb951d574c84937b6e4b7ef700f9508d7183f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/0f8229529189058d28c3141d78d9566a96bc2fb35cf2e284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1054ece5636d369d11a2ea0bb4f92ea618ac5f40b4ceafc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1cfe83fc9aa15ad3f475ef8b8c5aa456c5566782875db4ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/503b0c56ecffcfc403f307a553b9c30c46c173481db9d5ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"en-GB\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"ja-JP\": \"\\u3084\\u306f\\u308a\\u30b2\\u30fc\\u30e0\\u3067\\u3082\\u4ffa\\u306e\\u9752\\u6625\\u30e9\\u30d6\\u30b3\\u30e1\\u306f\\u307e\\u3061\\u304c\\u3063\\u3066\\u3044\\u308b\\u3002\\u5b8c\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/24ff77de372af0f088d968b7a2fd586dfe75bd3a682c61e6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/c39bd6a8183e9f05d566cb8dd46b37c8acf12f1e4f7af2d1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/487067f4ea3fc7e1382e041c795438c0692d2cf59d084372.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e301cb37714323cdd9df4f7b4c667d8dade2f3107d28f4ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e684f2f16318d16cbe2148a6b0e1389854e71d685320843e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/aabe72b25ea0d075dfa005a47c9e2d724847ca5f723b1abb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6fc155ae395a48b77588dad78021fe153f9b207b502f72d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6e034c657bb951d574c84937b6e4b7ef700f9508d7183f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/0f8229529189058d28c3141d78d9566a96bc2fb35cf2e284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1054ece5636d369d11a2ea0bb4f92ea618ac5f40b4ceafc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1cfe83fc9aa15ad3f475ef8b8c5aa456c5566782875db4ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/503b0c56ecffcfc403f307a553b9c30c46c173481db9d5ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T10:05:20.950000Z\", \"lastPlayedDateTime\": \"2023-05-11T11:48:38.760000Z\", \"playDuration\": \"PT1H42M2S\"}, {\"titleId\": \"PPSA15567_00\", \"name\": \"The Witch of the Ihanashi\", \"localizedName\": \"The Witch of the Ihanashi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007955, \"titleIds\": [\"CUSA48914_00\", \"CUSA48915_00\", \"CUSA42334_00\", \"PPSA15567_00\"], \"name\": \"The Witch of the Ihanashi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/edaef70527a43296aa0ce975d28785b34165887c8147f9bb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/4b9b33c328ad033ec07be312d8007cc89f3c471cc3909858.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/29096bc69830ad0af64379c302ea3809837a96ebc317c02e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/d133fdd0b42b6ec2919eac6de16e8b79eb0e89f2a96e7112.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/7a360c739458542f165ead123aca5749eac66ca9464d71f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/86c431ef97d9afceabe05a5639914f86369608cd8c8dd101.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/2a2e9904995999245e4d5c73400544bbd40ceb8e7ab6560f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/9ba015936e0e7b05970e80e4ee1a64a8d782033848864538.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/0b099bf3134caeaa8842276287e59934ca11a56b6bc359d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/21a5782aa3dc517429e83a84ef46045c6e9eda20dcbdd0ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/26161869c4ef7c47242c8511ab54c30f5fa97a93a14308a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/f7b6beb1efc9d39fbb3d18e079e7a6e39af2a7fe3849fbd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/dd0b2506ee4b5b08eb72c3d35ca545cbc51abdf3e6df7401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/82ae53770b9d3225580c61191bd0b86823b415e1f61033f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"The Witch of the Ihanashi\", \"ko-KR\": \"\\uc774\\ud558\\ub098\\uc2dc\\uc758 \\ub9c8\\ub140\", \"en-GB\": \"The Witch of the Ihanashi\", \"ja-JP\": \"\\u30a4\\u30cf\\u30ca\\u30b7\\u306e\\u9b54\\u5973\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/edaef70527a43296aa0ce975d28785b34165887c8147f9bb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/4b9b33c328ad033ec07be312d8007cc89f3c471cc3909858.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/29096bc69830ad0af64379c302ea3809837a96ebc317c02e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/d133fdd0b42b6ec2919eac6de16e8b79eb0e89f2a96e7112.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/7a360c739458542f165ead123aca5749eac66ca9464d71f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/86c431ef97d9afceabe05a5639914f86369608cd8c8dd101.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/2a2e9904995999245e4d5c73400544bbd40ceb8e7ab6560f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/9ba015936e0e7b05970e80e4ee1a64a8d782033848864538.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/0b099bf3134caeaa8842276287e59934ca11a56b6bc359d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/21a5782aa3dc517429e83a84ef46045c6e9eda20dcbdd0ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/26161869c4ef7c47242c8511ab54c30f5fa97a93a14308a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/f7b6beb1efc9d39fbb3d18e079e7a6e39af2a7fe3849fbd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/dd0b2506ee4b5b08eb72c3d35ca545cbc51abdf3e6df7401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/82ae53770b9d3225580c61191bd0b86823b415e1f61033f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T08:52:30.680000Z\", \"lastPlayedDateTime\": \"2023-05-11T09:05:06.070000Z\", \"playDuration\": \"PT12M31S\"}, {\"titleId\": \"CUSA41215_00\", \"name\": \"Celebrity Slot Machine\", \"localizedName\": \"Celebrity Slot Machine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"category\": \"unknown\", \"service\": \"none_purchased\", \"playCount\": 1, \"concept\": {\"id\": 10007576, \"titleIds\": [\"CUSA41215_00\", \"CUSA41214_00\"], \"name\": \"Celebrity Slot Machine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/8583940087673b698a01112002950acbefb1c0f204ab4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/828842698b79432af29d1d16c1085a9968845a706191743c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/4a2e3e894773796a118af1ff491322bb97a03546276554c1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/edb3b106914385eeb0df68bfada947230810e5f2654e295e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/cf5696d01d320f3ac34830eb61cd48e8c2c5f6d48016ae47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/029a3222ca73c55a94efb61fdfd5d5a9218baa0b66ae9193.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/659ad45f1865695d3fc1c1b0eaae462bdd0b166996ff0c04.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/8eea3ba178b3fcd42cb80319abced55031f94b64acda9934.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/af1eb76534b02ecbf81eb338aa09b4780c27e4e8260e3909.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Celebrity Slot Machine\", \"uk-UA\": \"Celebrity Slot Machine\", \"de-DE\": \"Celebrity Slot Machine\", \"en-US\": \"Celebrity Slot Machine\", \"pt-BR\": \"Celebrity Slot Machine\", \"es-ES\": \"Celebrity Slot Machine\", \"ar-AE\": \"Celebrity Slot Machine\", \"no-NO\": \"Celebrity Slot Machine\", \"fr-CA\": \"Celebrity Slot Machine\", \"it-IT\": \"Celebrity Slot Machine\", \"pl-PL\": \"Celebrity Slot Machine\", \"ru-RU\": \"Celebrity Slot Machine\", \"nl-NL\": \"Celebrity Slot Machine\", \"pt-PT\": \"Celebrity Slot Machine\", \"sv-SE\": \"Celebrity Slot Machine\", \"da-DK\": \"Celebrity Slot Machine\", \"tr-TR\": \"Celebrity Slot Machine\", \"fr-FR\": \"Celebrity Slot Machine\", \"en-GB\": \"Celebrity Slot Machine\", \"es-419\": \"Celebrity Slot Machine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/8583940087673b698a01112002950acbefb1c0f204ab4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/828842698b79432af29d1d16c1085a9968845a706191743c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/4a2e3e894773796a118af1ff491322bb97a03546276554c1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/edb3b106914385eeb0df68bfada947230810e5f2654e295e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/cf5696d01d320f3ac34830eb61cd48e8c2c5f6d48016ae47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/029a3222ca73c55a94efb61fdfd5d5a9218baa0b66ae9193.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/659ad45f1865695d3fc1c1b0eaae462bdd0b166996ff0c04.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/8eea3ba178b3fcd42cb80319abced55031f94b64acda9934.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/af1eb76534b02ecbf81eb338aa09b4780c27e4e8260e3909.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T08:52:52.810000Z\", \"lastPlayedDateTime\": \"2023-05-11T08:52:52.810000Z\", \"playDuration\": \"PT2H32M42S\"}, {\"titleId\": \"CUSA42334_00\", \"name\": \"The Witch of the Ihanashi\", \"localizedName\": \"The Witch of the Ihanashi\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007955, \"titleIds\": [\"CUSA48914_00\", \"CUSA48915_00\", \"CUSA42334_00\", \"PPSA15567_00\"], \"name\": \"The Witch of the Ihanashi\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/edaef70527a43296aa0ce975d28785b34165887c8147f9bb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/4b9b33c328ad033ec07be312d8007cc89f3c471cc3909858.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/29096bc69830ad0af64379c302ea3809837a96ebc317c02e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/d133fdd0b42b6ec2919eac6de16e8b79eb0e89f2a96e7112.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/7a360c739458542f165ead123aca5749eac66ca9464d71f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/86c431ef97d9afceabe05a5639914f86369608cd8c8dd101.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/2a2e9904995999245e4d5c73400544bbd40ceb8e7ab6560f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/9ba015936e0e7b05970e80e4ee1a64a8d782033848864538.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/0b099bf3134caeaa8842276287e59934ca11a56b6bc359d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/21a5782aa3dc517429e83a84ef46045c6e9eda20dcbdd0ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/26161869c4ef7c47242c8511ab54c30f5fa97a93a14308a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/f7b6beb1efc9d39fbb3d18e079e7a6e39af2a7fe3849fbd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/dd0b2506ee4b5b08eb72c3d35ca545cbc51abdf3e6df7401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/82ae53770b9d3225580c61191bd0b86823b415e1f61033f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"The Witch of the Ihanashi\", \"ko-KR\": \"\\uc774\\ud558\\ub098\\uc2dc\\uc758 \\ub9c8\\ub140\", \"en-GB\": \"The Witch of the Ihanashi\", \"ja-JP\": \"\\u30a4\\u30cf\\u30ca\\u30b7\\u306e\\u9b54\\u5973\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/edaef70527a43296aa0ce975d28785b34165887c8147f9bb.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/4b9b33c328ad033ec07be312d8007cc89f3c471cc3909858.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/29096bc69830ad0af64379c302ea3809837a96ebc317c02e.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/d133fdd0b42b6ec2919eac6de16e8b79eb0e89f2a96e7112.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/7a360c739458542f165ead123aca5749eac66ca9464d71f5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/86c431ef97d9afceabe05a5639914f86369608cd8c8dd101.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/2a2e9904995999245e4d5c73400544bbd40ceb8e7ab6560f.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/9ba015936e0e7b05970e80e4ee1a64a8d782033848864538.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/0b099bf3134caeaa8842276287e59934ca11a56b6bc359d5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/21a5782aa3dc517429e83a84ef46045c6e9eda20dcbdd0ed.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/26161869c4ef7c47242c8511ab54c30f5fa97a93a14308a2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/f7b6beb1efc9d39fbb3d18e079e7a6e39af2a7fe3849fbd6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/dd0b2506ee4b5b08eb72c3d35ca545cbc51abdf3e6df7401.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1407/82ae53770b9d3225580c61191bd0b86823b415e1f61033f2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1405/25eb3b1b37174c4064365d95bd035e174b1aec5ad56cc29a.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T07:59:16.110000Z\", \"lastPlayedDateTime\": \"2023-05-11T08:52:13.350000Z\", \"playDuration\": \"PT42M42S\"}, {\"titleId\": \"CUSA40801_00\", \"name\": \"Lucky Slots\", \"localizedName\": \"Lucky Slots\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007366, \"titleIds\": [\"CUSA40802_00\", \"CUSA40801_00\"], \"name\": \"Lucky Slots\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lucky Slots\", \"uk-UA\": \"Lucky Slots\", \"de-DE\": \"Lucky Slots\", \"en-US\": \"Lucky Slots\", \"pt-BR\": \"Lucky Slots\", \"es-ES\": \"Lucky Slots\", \"ar-AE\": \"Lucky Slots\", \"no-NO\": \"Lucky Slots\", \"fr-CA\": \"Lucky Slots\", \"it-IT\": \"Lucky Slots\", \"pl-PL\": \"Lucky Slots\", \"ru-RU\": \"Lucky Slots\", \"nl-NL\": \"Lucky Slots\", \"pt-PT\": \"Lucky Slots\", \"sv-SE\": \"Lucky Slots\", \"da-DK\": \"Lucky Slots\", \"tr-TR\": \"Lucky Slots\", \"fr-FR\": \"Lucky Slots\", \"en-GB\": \"Lucky Slots\", \"es-419\": \"Lucky Slots\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T06:14:45.320000Z\", \"lastPlayedDateTime\": \"2023-05-11T07:56:07.810000Z\", \"playDuration\": \"PT1H41M9S\"}, {\"titleId\": \"CUSA40802_00\", \"name\": \"Lucky Slots\", \"localizedName\": \"Lucky Slots\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007366, \"titleIds\": [\"CUSA40802_00\", \"CUSA40801_00\"], \"name\": \"Lucky Slots\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lucky Slots\", \"uk-UA\": \"Lucky Slots\", \"de-DE\": \"Lucky Slots\", \"en-US\": \"Lucky Slots\", \"pt-BR\": \"Lucky Slots\", \"es-ES\": \"Lucky Slots\", \"ar-AE\": \"Lucky Slots\", \"no-NO\": \"Lucky Slots\", \"fr-CA\": \"Lucky Slots\", \"it-IT\": \"Lucky Slots\", \"pl-PL\": \"Lucky Slots\", \"ru-RU\": \"Lucky Slots\", \"nl-NL\": \"Lucky Slots\", \"pt-PT\": \"Lucky Slots\", \"sv-SE\": \"Lucky Slots\", \"da-DK\": \"Lucky Slots\", \"tr-TR\": \"Lucky Slots\", \"fr-FR\": \"Lucky Slots\", \"en-GB\": \"Lucky Slots\", \"es-419\": \"Lucky Slots\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T03:59:05.010000Z\", \"lastPlayedDateTime\": \"2023-05-11T06:14:14.360000Z\", \"playDuration\": \"PT2H14M58S\"}, {\"titleId\": \"CUSA39374_00\", \"name\": \"Tasty Slot Machine\", \"localizedName\": \"Tasty Slot Machine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006874, \"titleIds\": [\"CUSA39373_00\", \"CUSA39374_00\"], \"name\": \"Tasty Slot Machine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tasty Slot Machine\", \"uk-UA\": \"Tasty Slot Machine\", \"de-DE\": \"Tasty Slot Machine\", \"en-US\": \"Tasty Slot Machine\", \"pt-BR\": \"Tasty Slot Machine\", \"es-ES\": \"Tasty Slot Machine\", \"ar-AE\": \"Tasty Slot Machine\", \"no-NO\": \"Tasty Slot Machine\", \"fr-CA\": \"Tasty Slot Machine\", \"it-IT\": \"Tasty Slot Machine\", \"pl-PL\": \"Tasty Slot Machine\", \"ru-RU\": \"Tasty Slot Machine\", \"nl-NL\": \"Tasty Slot Machine\", \"pt-PT\": \"Tasty Slot Machine\", \"sv-SE\": \"Tasty Slot Machine\", \"da-DK\": \"Tasty Slot Machine\", \"tr-TR\": \"Tasty Slot Machine\", \"fr-FR\": \"Tasty Slot Machine\", \"en-GB\": \"Tasty Slot Machine\", \"es-419\": \"Tasty Slot Machine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T01:48:43.400000Z\", \"lastPlayedDateTime\": \"2023-05-11T03:59:01.140000Z\", \"playDuration\": \"PT2H9M35S\"}, {\"titleId\": \"CUSA39373_00\", \"name\": \"Tasty Slot Machine\", \"localizedName\": \"Tasty Slot Machine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006874, \"titleIds\": [\"CUSA39373_00\", \"CUSA39374_00\"], \"name\": \"Tasty Slot Machine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tasty Slot Machine\", \"uk-UA\": \"Tasty Slot Machine\", \"de-DE\": \"Tasty Slot Machine\", \"en-US\": \"Tasty Slot Machine\", \"pt-BR\": \"Tasty Slot Machine\", \"es-ES\": \"Tasty Slot Machine\", \"ar-AE\": \"Tasty Slot Machine\", \"no-NO\": \"Tasty Slot Machine\", \"fr-CA\": \"Tasty Slot Machine\", \"it-IT\": \"Tasty Slot Machine\", \"pl-PL\": \"Tasty Slot Machine\", \"ru-RU\": \"Tasty Slot Machine\", \"nl-NL\": \"Tasty Slot Machine\", \"pt-PT\": \"Tasty Slot Machine\", \"sv-SE\": \"Tasty Slot Machine\", \"da-DK\": \"Tasty Slot Machine\", \"tr-TR\": \"Tasty Slot Machine\", \"fr-FR\": \"Tasty Slot Machine\", \"en-GB\": \"Tasty Slot Machine\", \"es-419\": \"Tasty Slot Machine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T16:06:04.030000Z\", \"lastPlayedDateTime\": \"2023-05-11T01:48:37.980000Z\", \"playDuration\": \"PT9H41M45S\"}, {\"titleId\": \"CUSA33697_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T14:03:28.950000Z\", \"lastPlayedDateTime\": \"2023-05-10T15:25:23.360000Z\", \"playDuration\": \"PT1H19M48S\"}, {\"titleId\": \"CUSA33698_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T12:10:21.230000Z\", \"lastPlayedDateTime\": \"2023-05-10T14:03:26.590000Z\", \"playDuration\": \"PT1H48M4S\"}, {\"titleId\": \"CUSA40160_00\", \"name\": \"Evermaiden\", \"localizedName\": \"Evermaiden\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007102, \"titleIds\": [\"CUSA40160_00\", \"CUSA40161_00\"], \"name\": \"Evermaiden\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/482666265bdf96e3186ad83f5d31bf235e6d72a2a394a8dd.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/f8d65ed1bdd3ff734229cb9cee2963ac2271ff98592b3d58.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/eba46292b15319ff4972a5f538e320e9b255117853aee481.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/2076b4c87e80fdae7236500ec6c87a9ef8a0720de42991a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/055671114b8b0ff9a9023bf405d179fe4fb872987fe11cc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/785fc56096acd03fe5806dc5535033aa9b3fdd9e067a3b9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/235e4c88b3e8cb6370f68c18607b65786476a662aee3a3e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/6dba6a848fa6f56cc911c01d4aa919c8e14b3bf95053cf73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/3b4da8dcd983debcb8e4db3802b63cc75a7a3a31deb7e504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Evermaiden\", \"en-GB\": \"Evermaiden\", \"ja-JP\": \"\\u30a8\\u30f4\\u30a1\\u30fc\\u30e1\\u30a4\\u30c7\\u30f3 \\uff5e\\u5815\\u843d\\u306e\\u5712\\u306e\\u4e59\\u5973\\u305f\\u3061\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/482666265bdf96e3186ad83f5d31bf235e6d72a2a394a8dd.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/f8d65ed1bdd3ff734229cb9cee2963ac2271ff98592b3d58.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/eba46292b15319ff4972a5f538e320e9b255117853aee481.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/2076b4c87e80fdae7236500ec6c87a9ef8a0720de42991a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/055671114b8b0ff9a9023bf405d179fe4fb872987fe11cc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/785fc56096acd03fe5806dc5535033aa9b3fdd9e067a3b9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/235e4c88b3e8cb6370f68c18607b65786476a662aee3a3e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/6dba6a848fa6f56cc911c01d4aa919c8e14b3bf95053cf73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/3b4da8dcd983debcb8e4db3802b63cc75a7a3a31deb7e504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T11:15:40.420000Z\", \"lastPlayedDateTime\": \"2023-05-10T11:39:36.580000Z\", \"playDuration\": \"PT23M49S\"}, {\"titleId\": \"PPSA13870_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T05:11:42.430000Z\", \"lastPlayedDateTime\": \"2023-05-10T06:22:05.660000Z\", \"playDuration\": \"PT1H5M54S\"}, {\"titleId\": \"PPSA13871_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T04:01:44.740000Z\", \"lastPlayedDateTime\": \"2023-05-10T05:06:20.170000Z\", \"playDuration\": \"PT1H4M8S\"}, {\"titleId\": \"CUSA40859_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T00:47:06.150000Z\", \"lastPlayedDateTime\": \"2023-05-10T02:18:27.740000Z\", \"playDuration\": \"PT1H31M10S\"}, {\"titleId\": \"CUSA40858_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T10:44:47.470000Z\", \"lastPlayedDateTime\": \"2023-05-09T16:12:17.440000Z\", \"playDuration\": \"PT2H29S\"}, {\"titleId\": \"PPSA15741_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T14:52:10.870000Z\", \"lastPlayedDateTime\": \"2023-05-09T15:33:35.840000Z\", \"playDuration\": \"PT41M2S\"}, {\"titleId\": \"PPSA15742_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T14:27:29.430000Z\", \"lastPlayedDateTime\": \"2023-05-09T14:50:38.810000Z\", \"playDuration\": \"PT23M4S\"}, {\"titleId\": \"CUSA42727_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T12:49:05.510000Z\", \"lastPlayedDateTime\": \"2023-05-09T14:27:27.370000Z\", \"playDuration\": \"PT1H35M50S\"}, {\"titleId\": \"CUSA42728_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T12:08:59.240000Z\", \"lastPlayedDateTime\": \"2023-05-09T12:49:03.580000Z\", \"playDuration\": \"PT38M58S\"}, {\"titleId\": \"PPSA15460_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T10:03:30.000000Z\", \"lastPlayedDateTime\": \"2023-05-09T10:44:13.960000Z\", \"playDuration\": \"PT31M3S\"}, {\"titleId\": \"PPSA15461_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T08:16:10.000000Z\", \"lastPlayedDateTime\": \"2023-05-09T08:47:04.410000Z\", \"playDuration\": \"PT30M44S\"}, {\"titleId\": \"CUSA42459_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T07:43:54.860000Z\", \"lastPlayedDateTime\": \"2023-05-09T08:15:58.250000Z\", \"playDuration\": \"PT31M56S\"}, {\"titleId\": \"CUSA42458_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T07:00:33.080000Z\", \"lastPlayedDateTime\": \"2023-05-09T07:33:57.550000Z\", \"playDuration\": \"PT33M8S\"}, {\"titleId\": \"PPSA09028_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T06:09:46.480000Z\", \"lastPlayedDateTime\": \"2023-05-09T06:53:01.420000Z\", \"playDuration\": \"PT43M8S\"}, {\"titleId\": \"PPSA09027_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T05:21:28.650000Z\", \"lastPlayedDateTime\": \"2023-05-09T06:09:44.340000Z\", \"playDuration\": \"PT41M58S\"}, {\"titleId\": \"CUSA35295_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T04:29:17.080000Z\", \"lastPlayedDateTime\": \"2023-05-09T05:21:26.410000Z\", \"playDuration\": \"PT51M22S\"}, {\"titleId\": \"CUSA35296_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T13:35:27.820000Z\", \"lastPlayedDateTime\": \"2023-05-09T04:29:15.070000Z\", \"playDuration\": \"PT1H9M50S\"}, {\"titleId\": \"CUSA24409_00\", \"name\": \"The Procession to Calvary\", \"localizedName\": \"The Procession to Calvary\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001385, \"titleIds\": [\"CUSA24408_00\", \"CUSA24409_00\", \"CUSA35854_00\"], \"name\": \"The Procession to Calvary\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Procession to Calvary\", \"uk-UA\": \"The Procession to Calvary\", \"de-DE\": \"The Procession to Calvary\", \"en-US\": \"The Procession to Calvary\", \"ko-KR\": \"The Procession to Calvary\", \"pt-BR\": \"The Procession to Calvary\", \"es-ES\": \"The Procession to Calvary\", \"ar-AE\": \"The Procession to Calvary\", \"no-NO\": \"The Procession to Calvary\", \"fr-CA\": \"The Procession to Calvary\", \"it-IT\": \"The Procession to Calvary\", \"pl-PL\": \"The Procession to Calvary\", \"ru-RU\": \"The Procession to Calvary\", \"zh-Hans\": \"The Procession to Calvary\", \"nl-NL\": \"The Procession to Calvary\", \"pt-PT\": \"The Procession to Calvary\", \"zh-Hant\": \"The Procession to Calvary\", \"sv-SE\": \"The Procession to Calvary\", \"da-DK\": \"The Procession to Calvary\", \"tr-TR\": \"The Procession to Calvary\", \"fr-FR\": \"The Procession to Calvary\", \"en-GB\": \"The Procession to Calvary\", \"es-419\": \"The Procession to Calvary\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T00:44:27.180000Z\", \"lastPlayedDateTime\": \"2023-05-09T02:13:27.200000Z\", \"playDuration\": \"PT55M23S\"}, {\"titleId\": \"CUSA24408_00\", \"name\": \"The Procession to Calvary\", \"localizedName\": \"The Procession to Calvary\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001385, \"titleIds\": [\"CUSA24408_00\", \"CUSA24409_00\", \"CUSA35854_00\"], \"name\": \"The Procession to Calvary\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Procession to Calvary\", \"uk-UA\": \"The Procession to Calvary\", \"de-DE\": \"The Procession to Calvary\", \"en-US\": \"The Procession to Calvary\", \"ko-KR\": \"The Procession to Calvary\", \"pt-BR\": \"The Procession to Calvary\", \"es-ES\": \"The Procession to Calvary\", \"ar-AE\": \"The Procession to Calvary\", \"no-NO\": \"The Procession to Calvary\", \"fr-CA\": \"The Procession to Calvary\", \"it-IT\": \"The Procession to Calvary\", \"pl-PL\": \"The Procession to Calvary\", \"ru-RU\": \"The Procession to Calvary\", \"zh-Hans\": \"The Procession to Calvary\", \"nl-NL\": \"The Procession to Calvary\", \"pt-PT\": \"The Procession to Calvary\", \"zh-Hant\": \"The Procession to Calvary\", \"sv-SE\": \"The Procession to Calvary\", \"da-DK\": \"The Procession to Calvary\", \"tr-TR\": \"The Procession to Calvary\", \"fr-FR\": \"The Procession to Calvary\", \"en-GB\": \"The Procession to Calvary\", \"es-419\": \"The Procession to Calvary\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T13:54:07.720000Z\", \"lastPlayedDateTime\": \"2023-05-08T15:40:20.030000Z\", \"playDuration\": \"PT1H45M10S\"}, {\"titleId\": \"CUSA33444_00\", \"name\": \"PictoQuest\", \"localizedName\": \"PictoQuest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10004146, \"titleIds\": [\"CUSA33444_00\", \"CUSA31366_00\", \"CUSA31365_00\"], \"name\": \"PictoQuest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Pia98MRtz5o832JsG3Ul9JYH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/qkFelgeE8UfyAZxXOG2t5pZq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/XnMqoPT8kL7yYJpj7djbSxBz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/GPy7wcSr4CshpLedR9JNX3GR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/SstJ55qAzjdWTTI5GhAC3HbU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/WO9JdlMJWnms1Qy9Wr5FH71R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/MrarBlz9tVexgoSBjf12clch.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/53MwVU6hM6sw54FdKiTpVVvt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/pIlaybflgHho2NJtRR2a7OkC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/ubbRLnCCo5oC88Xq9RAS11qc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/LM2iOJ5MXUFvdt4YfO63VXEI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/5UKQazYUbwFucTX2GmZ7BpoM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"PictoQuest\", \"uk-UA\": \"PictoQuest\", \"de-DE\": \"PictoQuest\", \"en-US\": \"PictoQuest\", \"ko-KR\": \"PictoQuest\", \"pt-BR\": \"PictoQuest\", \"es-ES\": \"PictoQuest\", \"ar-AE\": \"PictoQuest\", \"no-NO\": \"PictoQuest\", \"fr-CA\": \"PictoQuest\", \"it-IT\": \"PictoQuest\", \"pl-PL\": \"PictoQuest\", \"ru-RU\": \"PictoQuest\", \"zh-Hans\": \"PictoQuest\", \"nl-NL\": \"PictoQuest\", \"pt-PT\": \"PictoQuest\", \"zh-Hant\": \"PictoQuest\", \"sv-SE\": \"PictoQuest\", \"da-DK\": \"PictoQuest\", \"tr-TR\": \"PictoQuest\", \"fr-FR\": \"PictoQuest\", \"en-GB\": \"PictoQuest\", \"es-419\": \"PictoQuest\", \"ja-JP\": \"PictoQuest\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Pia98MRtz5o832JsG3Ul9JYH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/qkFelgeE8UfyAZxXOG2t5pZq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/XnMqoPT8kL7yYJpj7djbSxBz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/GPy7wcSr4CshpLedR9JNX3GR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/SstJ55qAzjdWTTI5GhAC3HbU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/WO9JdlMJWnms1Qy9Wr5FH71R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/MrarBlz9tVexgoSBjf12clch.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/53MwVU6hM6sw54FdKiTpVVvt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/pIlaybflgHho2NJtRR2a7OkC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/ubbRLnCCo5oC88Xq9RAS11qc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/LM2iOJ5MXUFvdt4YfO63VXEI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/5UKQazYUbwFucTX2GmZ7BpoM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-29T14:50:34.520000Z\", \"lastPlayedDateTime\": \"2023-05-08T13:12:14.610000Z\", \"playDuration\": \"PT4H17M9S\"}, {\"titleId\": \"PPSA13944_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T11:40:28.860000Z\", \"lastPlayedDateTime\": \"2023-05-08T13:09:50.430000Z\", \"playDuration\": \"PT1H28M59S\"}, {\"titleId\": \"PPSA13945_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T10:11:44.000000Z\", \"lastPlayedDateTime\": \"2023-05-08T11:34:11.820000Z\", \"playDuration\": \"PT1H22M22S\"}, {\"titleId\": \"CUSA40913_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T07:22:08.890000Z\", \"lastPlayedDateTime\": \"2023-05-08T08:53:21.320000Z\", \"playDuration\": \"PT1H31M8S\"}, {\"titleId\": \"CUSA40911_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T14:53:52.650000Z\", \"lastPlayedDateTime\": \"2023-05-07T16:27:49.190000Z\", \"playDuration\": \"PT1H32M42S\"}, {\"titleId\": \"PPSA08689_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T13:34:47.580000Z\", \"lastPlayedDateTime\": \"2023-05-07T14:51:52.350000Z\", \"playDuration\": \"PT1H17M\"}, {\"titleId\": \"CUSA34703_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T12:37:09.450000Z\", \"lastPlayedDateTime\": \"2023-05-07T13:28:12.730000Z\", \"playDuration\": \"PT50M4S\"}, {\"titleId\": \"CUSA34701_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T10:34:31.060000Z\", \"lastPlayedDateTime\": \"2023-05-07T12:27:55.810000Z\", \"playDuration\": \"PT55M41S\"}, {\"titleId\": \"CUSA34702_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T10:34:58.840000Z\", \"lastPlayedDateTime\": \"2023-05-07T11:32:05.410000Z\", \"playDuration\": \"PT56M59S\"}, {\"titleId\": \"CUSA34700_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T07:38:18.100000Z\", \"lastPlayedDateTime\": \"2023-05-07T10:34:28.860000Z\", \"playDuration\": \"PT1H31M56S\"}, {\"titleId\": \"PPSA07329_00\", \"name\": \"Bloodwash\", \"localizedName\": \"Bloodwash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004758, \"titleIds\": [\"CUSA32881_00\", \"PPSA07327_00\", \"CUSA32882_00\", \"CUSA32880_00\", \"PPSA07325_00\", \"CUSA32879_00\", \"PPSA07328_00\", \"PPSA07329_00\"], \"name\": \"Bloodwash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/Bbexs6zXpppg7Qun4cNttCTm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/IA2DOoBFtxQbAr1NXziyDVRy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/lfxxF3JasbD7bOlWTlECfJSP.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/V24GqMg4rJr8Cfb70tssnML3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nVdm0sIzB67mDqPqkR489NH4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nA1CDF1sNC41xM85a18lwYp1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/BN2o9qCu0luPSSo6gduIgobx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/ZXOeFimxL0tWSDr1dRMxi22e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/cTY1It55m9enyfRVDYMLfpsX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/2YyPswXUOMEG1PImqW7zASrW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/SKV6aLVrrXIBns8ITLRFyQbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bloodwash\", \"uk-UA\": \"Bloodwash\", \"de-DE\": \"Bloodwash\", \"en-US\": \"Bloodwash\", \"ko-KR\": \"Bloodwash\", \"pt-BR\": \"Bloodwash\", \"es-ES\": \"Bloodwash\", \"ar-AE\": \"Bloodwash\", \"no-NO\": \"Bloodwash\", \"fr-CA\": \"Bloodwash\", \"it-IT\": \"Bloodwash\", \"pl-PL\": \"Bloodwash\", \"ru-RU\": \"\\u0411\\u041b\\u0410\\u0414\\u0412\\u041e\\u0428\", \"zh-Hans\": \"Bloodwash\", \"nl-NL\": \"Bloodwash\", \"pt-PT\": \"Bloodwash\", \"zh-Hant\": \"Bloodwash\", \"sv-SE\": \"Bloodwash\", \"da-DK\": \"Bloodwash\", \"tr-TR\": \"Bloodwash\", \"fr-FR\": \"Bloodwash\", \"en-GB\": \"Bloodwash\", \"es-419\": \"Bloodwash\", \"ja-JP\": \"Bloodwash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/Bbexs6zXpppg7Qun4cNttCTm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/IA2DOoBFtxQbAr1NXziyDVRy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/lfxxF3JasbD7bOlWTlECfJSP.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/V24GqMg4rJr8Cfb70tssnML3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nVdm0sIzB67mDqPqkR489NH4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nA1CDF1sNC41xM85a18lwYp1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/BN2o9qCu0luPSSo6gduIgobx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/ZXOeFimxL0tWSDr1dRMxi22e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/cTY1It55m9enyfRVDYMLfpsX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/2YyPswXUOMEG1PImqW7zASrW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/SKV6aLVrrXIBns8ITLRFyQbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T06:53:18.260000Z\", \"lastPlayedDateTime\": \"2023-05-07T07:33:08.230000Z\", \"playDuration\": \"PT39M46S\"}, {\"titleId\": \"PPSA07328_00\", \"name\": \"Bloodwash\", \"localizedName\": \"Bloodwash\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10004758, \"titleIds\": [\"CUSA32881_00\", \"PPSA07327_00\", \"CUSA32882_00\", \"CUSA32880_00\", \"PPSA07325_00\", \"CUSA32879_00\", \"PPSA07328_00\", \"PPSA07329_00\"], \"name\": \"Bloodwash\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/Bbexs6zXpppg7Qun4cNttCTm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/IA2DOoBFtxQbAr1NXziyDVRy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/lfxxF3JasbD7bOlWTlECfJSP.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/V24GqMg4rJr8Cfb70tssnML3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nVdm0sIzB67mDqPqkR489NH4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nA1CDF1sNC41xM85a18lwYp1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/BN2o9qCu0luPSSo6gduIgobx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/ZXOeFimxL0tWSDr1dRMxi22e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/cTY1It55m9enyfRVDYMLfpsX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/2YyPswXUOMEG1PImqW7zASrW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/SKV6aLVrrXIBns8ITLRFyQbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"HORROR\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Bloodwash\", \"uk-UA\": \"Bloodwash\", \"de-DE\": \"Bloodwash\", \"en-US\": \"Bloodwash\", \"ko-KR\": \"Bloodwash\", \"pt-BR\": \"Bloodwash\", \"es-ES\": \"Bloodwash\", \"ar-AE\": \"Bloodwash\", \"no-NO\": \"Bloodwash\", \"fr-CA\": \"Bloodwash\", \"it-IT\": \"Bloodwash\", \"pl-PL\": \"Bloodwash\", \"ru-RU\": \"\\u0411\\u041b\\u0410\\u0414\\u0412\\u041e\\u0428\", \"zh-Hans\": \"Bloodwash\", \"nl-NL\": \"Bloodwash\", \"pt-PT\": \"Bloodwash\", \"zh-Hant\": \"Bloodwash\", \"sv-SE\": \"Bloodwash\", \"da-DK\": \"Bloodwash\", \"tr-TR\": \"Bloodwash\", \"fr-FR\": \"Bloodwash\", \"en-GB\": \"Bloodwash\", \"es-419\": \"Bloodwash\", \"ja-JP\": \"Bloodwash\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/Bbexs6zXpppg7Qun4cNttCTm.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/IA2DOoBFtxQbAr1NXziyDVRy.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/lfxxF3JasbD7bOlWTlECfJSP.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/V24GqMg4rJr8Cfb70tssnML3.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nVdm0sIzB67mDqPqkR489NH4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1416/nA1CDF1sNC41xM85a18lwYp1.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/BN2o9qCu0luPSSo6gduIgobx.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/ZXOeFimxL0tWSDr1dRMxi22e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/cTY1It55m9enyfRVDYMLfpsX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/2YyPswXUOMEG1PImqW7zASrW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202206/1417/SKV6aLVrrXIBns8ITLRFyQbg.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202210/0716/m5i3cducKIyNEpL7mAtzFtsT.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T06:14:11.230000Z\", \"lastPlayedDateTime\": \"2023-05-07T06:53:15.830000Z\", \"playDuration\": \"PT38M54S\"}], \"nextOffset\": 1050, \"previousOffset\": 999, \"totalItemCount\": 13588}" + "string": "{\"titles\": [{\"titleId\": \"PPSA15509_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T16:05:40.350000Z\", \"lastPlayedDateTime\": \"2023-05-11T16:12:22.960000Z\", \"playDuration\": \"PT6M22S\"}, {\"titleId\": \"CUSA42514_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:58:00.760000Z\", \"lastPlayedDateTime\": \"2023-05-11T16:05:38.110000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA42513_00\", \"name\": \"Egglien\", \"localizedName\": \"Egglien\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008028, \"titleIds\": [\"PPSA15510_00\", \"CUSA42513_00\", \"CUSA42514_00\", \"PPSA15509_00\"], \"name\": \"Egglien\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Egglien\", \"uk-UA\": \"Egglien\", \"de-DE\": \"Egglien\", \"en-US\": \"Egglien\", \"ko-KR\": \"Egglien\", \"pt-BR\": \"Egglien\", \"es-ES\": \"Egglien\", \"ar-AE\": \"Egglien\", \"no-NO\": \"Egglien\", \"fr-CA\": \"Egglien\", \"it-IT\": \"Egglien\", \"pl-PL\": \"Egglien\", \"ru-RU\": \"Egglien\", \"nl-NL\": \"Egglien\", \"pt-PT\": \"Egglien\", \"sv-SE\": \"Egglien\", \"da-DK\": \"Egglien\", \"tr-TR\": \"Egglien\", \"fr-FR\": \"Egglien\", \"en-GB\": \"Egglien\", \"es-419\": \"Egglien\", \"ja-JP\": \"Egglien\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2300/47331691cf9366dddf7fd609db2ca5adfededa979d27fb90.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/40cc9b4311cf447b3a1172a3a6fc409aebcb3fcdec93228f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7268bad11c67aff8fd85eb46835c1d3d484d41399731f297.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/bd22fa1d0d1c30b76a009d86f6e2875941864012e92ace7a.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/9e86f455b4d691a2b67593e8a23a05a7020c427d489af3b4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/3123/630b684cd00545e85008c35d00e68e53a88bf7493d7acfbd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/f533ac78f9346e279ecc64833ba5309abafb29fa54497609.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/2a6ee08c3481220d28fad6940737d2aa695fc50896f731c3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/dbbf1c1351c5a5092acb2b21335acf2608bbfefc8014c767.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/fbdc62f103de9f142fe59a7e768513b8a163312ee4466e0c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/17010446ecbab6aea66c7411838f09562b8a57509b79367c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/d2514ef93ce9375c51ad23c1224b67518437e0b0b974b023.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/0b7bbe5364ee13738b09e1da4e71447b4fec70169cba141b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/37a57ba186d7381b24678185905c94e6cbce30647d3f2e2e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/4266a5d33512ba4e7858d39e9865ea5b48c8d1376b815f98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/7e25a7cd56c62e6c2bc52c00be2e0d30e968da762faa06d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2223/640a4c5ebbaa8bcf795159e78c63647258e3182105821cf1.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:45:53.140000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:57:49.390000Z\", \"playDuration\": \"PT11M11S\"}, {\"titleId\": \"PPSA15848_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:34:22.000000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:43:16.860000Z\", \"playDuration\": \"PT8M49S\"}, {\"titleId\": \"PPSA15847_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:26:29.910000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:34:20.500000Z\", \"playDuration\": \"PT7M6S\"}, {\"titleId\": \"CUSA42794_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:19:40.480000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:26:27.670000Z\", \"playDuration\": \"PT6M29S\"}, {\"titleId\": \"CUSA42795_00\", \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"localizedName\": \"Sable's Grimoire: A Dragon's Treasure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008156, \"titleIds\": [\"CUSA42794_00\", \"CUSA42795_00\", \"PPSA15847_00\", \"PPSA15848_00\"], \"name\": \"Sable's Grimoire: A Dragon's Treasure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADULT\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Sable's Grimoire: A Dragon's Treasure\", \"uk-UA\": \"Sable's Grimoire: A Dragon's Treasure\", \"de-DE\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-US\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-BR\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-ES\": \"Sable's Grimoire: A Dragon's Treasure\", \"ar-AE\": \"Sable's Grimoire: A Dragon's Treasure\", \"no-NO\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-CA\": \"Sable's Grimoire: A Dragon's Treasure\", \"it-IT\": \"Sable's Grimoire: A Dragon's Treasure\", \"pl-PL\": \"Sable's Grimoire: A Dragon's Treasure\", \"ru-RU\": \"Sable's Grimoire: A Dragon's Treasure\", \"nl-NL\": \"Sable's Grimoire: A Dragon's Treasure\", \"pt-PT\": \"Sable's Grimoire: A Dragon's Treasure\", \"sv-SE\": \"Sable's Grimoire: A Dragon's Treasure\", \"da-DK\": \"Sable's Grimoire: A Dragon's Treasure\", \"tr-TR\": \"Sable's Grimoire: A Dragon's Treasure\", \"fr-FR\": \"Sable's Grimoire: A Dragon's Treasure\", \"en-GB\": \"Sable's Grimoire: A Dragon's Treasure\", \"es-419\": \"Sable's Grimoire: A Dragon's Treasure\", \"ja-JP\": \"Sable's Grimoire: A Dragon's Treasure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/8c2fb5c6e672b511903dc068aa325e4c5ea526664207889d.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/22eabb021f66282a79a03a55757cbbb200dbfa0785ee553e.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ab0e3e2fc3705c3c291698d2994632ee3bbd2a1f5796eaae.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/ee6e473d4fac607b4b8351cd5a253bcec525928d257e69b9.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/4a35d0de95bd95945c3a81c154496e26202e5160fc34e24c.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/afdd76bf701dee7d7534e9e38c24513807d195d2ff1eccf2.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/1251b5b409593ed8e2bae6d431fad735155c2c46e3b93c8d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0ae1f05481e292bb3febd13be3cc9a577e4e49003eb45bc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/350ba65a0887492d02c26b5e66d08da9b9f02f8c182d86cc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/cd373ba8caa461aa66471d831bff02c32226aefdb39991eb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/e4cbd5f9db8e6aa5798071dfb867e1e74b1053288f9eb50b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2811/0227f301faeacf2811cbae80999e75c13f771949ac45cbd5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2419/315f25b54de06da24fb8ebffb157a84b936dd0a2ced7e9f7.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:13:24.190000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:19:38.620000Z\", \"playDuration\": \"PT5M55S\"}, {\"titleId\": \"PPSA11246_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T15:01:16.360000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:09:00.620000Z\", \"playDuration\": \"PT7M30S\"}, {\"titleId\": \"PPSA11243_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T14:54:10.520000Z\", \"lastPlayedDateTime\": \"2023-05-11T15:01:14.100000Z\", \"playDuration\": \"PT6M51S\"}, {\"titleId\": \"CUSA37987_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T14:46:18.410000Z\", \"lastPlayedDateTime\": \"2023-05-11T14:54:08.390000Z\", \"playDuration\": \"PT7M23S\"}, {\"titleId\": \"CUSA37989_00\", \"name\": \"DoraKone\", \"localizedName\": \"DoraKone\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006518, \"titleIds\": [\"PPSA11243_00\", \"PPSA11246_00\", \"CUSA37987_00\", \"CUSA37989_00\"], \"name\": \"DoraKone\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"DoraKone\", \"uk-UA\": \"DoraKone\", \"de-DE\": \"DoraKone\", \"en-US\": \"DoraKone\", \"pt-BR\": \"DoraKone\", \"es-ES\": \"DoraKone\", \"ar-AE\": \"DoraKone\", \"no-NO\": \"DoraKone\", \"fr-CA\": \"DoraKone\", \"it-IT\": \"DoraKone\", \"pl-PL\": \"DoraKone\", \"ru-RU\": \"DoraKone\", \"nl-NL\": \"DoraKone\", \"pt-PT\": \"DoraKone\", \"sv-SE\": \"DoraKone\", \"da-DK\": \"DoraKone\", \"tr-TR\": \"DoraKone\", \"fr-FR\": \"DoraKone\", \"en-GB\": \"DoraKone\", \"es-419\": \"DoraKone\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bb07095e8ff622a5b8b8550fee6248bbbc3127876b21ca9f.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/6f068a0de4cb4a1ddb7ab58a7f1a14160dfda6d36aa7529f.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/a7d5d6d2205d747d62cbf09e415a91c451dc1214053a8b3e.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/452ebe113cc77cea5defaae122d88c4add206d448aa80e91.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/bef4879e210a8fae21ef00347e3c7a2d6ba28f35f6286296.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/4d6212411f36fe32e9c5117f7f7dea8f17a1eefd4d0e65dd.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/b341e1ec798dc3bccd9925a515099dca1dc62f3b6b336e64.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/7d7d72449242f72cb38b6f4bdaf257643619f212647d7082.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/1fa2fd2dc29a745eec10893453981d4171a604d57c09a56a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/ce3809cbea431da3f3b7868f69feac50488bd394abd8edbe.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/9528e8fd788cb8b1cdea7a1bc2f395b3115610609c77a356.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/3007f0b067b5c18a401b1cacbd072cf8eaae4d4e283445e5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/0616/088a68be3055553b961437c563171c6b372a6408d92f245d.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T12:07:02.620000Z\", \"lastPlayedDateTime\": \"2023-05-11T14:46:11.160000Z\", \"playDuration\": \"PT10M54S\"}, {\"titleId\": \"CUSA40363_00\", \"name\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"localizedName\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 2, \"concept\": {\"id\": 10007193, \"titleIds\": [\"CUSA40363_00\"], \"name\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/24ff77de372af0f088d968b7a2fd586dfe75bd3a682c61e6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/c39bd6a8183e9f05d566cb8dd46b37c8acf12f1e4f7af2d1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/487067f4ea3fc7e1382e041c795438c0692d2cf59d084372.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e301cb37714323cdd9df4f7b4c667d8dade2f3107d28f4ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e684f2f16318d16cbe2148a6b0e1389854e71d685320843e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/aabe72b25ea0d075dfa005a47c9e2d724847ca5f723b1abb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6fc155ae395a48b77588dad78021fe153f9b207b502f72d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6e034c657bb951d574c84937b6e4b7ef700f9508d7183f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/0f8229529189058d28c3141d78d9566a96bc2fb35cf2e284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1054ece5636d369d11a2ea0bb4f92ea618ac5f40b4ceafc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1cfe83fc9aa15ad3f475ef8b8c5aa456c5566782875db4ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/503b0c56ecffcfc403f307a553b9c30c46c173481db9d5ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"en-GB\": \"My Youth Romantic Comedy Is Wrong As I Expected. 3\", \"ja-JP\": \"\\u3084\\u306f\\u308a\\u30b2\\u30fc\\u30e0\\u3067\\u3082\\u4ffa\\u306e\\u9752\\u6625\\u30e9\\u30d6\\u30b3\\u30e1\\u306f\\u307e\\u3061\\u304c\\u3063\\u3066\\u3044\\u308b\\u3002\\u5b8c\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/24ff77de372af0f088d968b7a2fd586dfe75bd3a682c61e6.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/c39bd6a8183e9f05d566cb8dd46b37c8acf12f1e4f7af2d1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/487067f4ea3fc7e1382e041c795438c0692d2cf59d084372.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e301cb37714323cdd9df4f7b4c667d8dade2f3107d28f4ee.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/e684f2f16318d16cbe2148a6b0e1389854e71d685320843e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/aabe72b25ea0d075dfa005a47c9e2d724847ca5f723b1abb.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6fc155ae395a48b77588dad78021fe153f9b207b502f72d1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/6e034c657bb951d574c84937b6e4b7ef700f9508d7183f30.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/0f8229529189058d28c3141d78d9566a96bc2fb35cf2e284.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1054ece5636d369d11a2ea0bb4f92ea618ac5f40b4ceafc8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1cfe83fc9aa15ad3f475ef8b8c5aa456c5566782875db4ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/503b0c56ecffcfc403f307a553b9c30c46c173481db9d5ae.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1707/1e45094fcef04589ac2fd69f343734bad8e7c5c5d97eaa57.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T10:05:20.950000Z\", \"lastPlayedDateTime\": \"2023-05-11T11:48:38.760000Z\", \"playDuration\": \"PT1H42M2S\"}, {\"titleId\": \"PPSA15567_00\", \"name\": \"Tales from Toyotoki: Arrival of the Witch\", \"localizedName\": \"Tales from Toyotoki: Arrival of the Witch\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007955, \"titleIds\": [\"CUSA48914_00\", \"PPSA21908_00\", \"CUSA48915_00\", \"PPSA21907_00\", \"CUSA42334_00\", \"PPSA15567_00\"], \"name\": \"Tales from Toyotoki: Arrival of the Witch\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/93a4361090f9cc404dd2f6d06d95eef08ff18f629de6b8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f53a6668c59c038a1cc805074f895514052fd72078bf1481.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/547aa544370a1949f41e67458e0bb9bb17901eb1d8a7af68.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/4b72694c84ce7e3a4825757cbf0990698772d70532985b46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/f5818de316818083bf4129a6d3ecdaf50819100448b8ad3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/70c210f01bfccb51b3277d3708a651a014febce63d8e32ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/4238cbb218257f1bc0b1a59ef229f4d6573d2178cbb14c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/6ed820141cdb1ac94c6bf0da576e4debb4d8c057b64077b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tales from Toyotoki: Arrival of the Witch\", \"uk-UA\": \"Tales from Toyotoki: Arrival of the Witch\", \"de-DE\": \"Tales from Toyotoki: Arrival of the Witch\", \"en-US\": \"Tales from Toyotoki: Arrival of the Witch\", \"ko-KR\": \"\\uc774\\ud558\\ub098\\uc2dc\\uc758 \\ub9c8\\ub140\", \"pt-BR\": \"Tales from Toyotoki: Arrival of the Witch\", \"es-ES\": \"Tales from Toyotoki: Arrival of the Witch\", \"ar-AE\": \"Tales from Toyotoki: Arrival of the Witch\", \"no-NO\": \"Tales from Toyotoki: Arrival of the Witch\", \"fr-CA\": \"Tales from Toyotoki: Arrival of the Witch\", \"it-IT\": \"Tales from Toyotoki: Arrival of the Witch\", \"pl-PL\": \"Tales from Toyotoki: Arrival of the Witch\", \"ru-RU\": \"Tales from Toyotoki: Arrival of the Witch\", \"nl-NL\": \"Tales from Toyotoki: Arrival of the Witch\", \"pt-PT\": \"Tales from Toyotoki: Arrival of the Witch\", \"sv-SE\": \"Tales from Toyotoki: Arrival of the Witch\", \"da-DK\": \"Tales from Toyotoki: Arrival of the Witch\", \"tr-TR\": \"Tales from Toyotoki: Arrival of the Witch\", \"fr-FR\": \"Tales from Toyotoki: Arrival of the Witch\", \"en-GB\": \"Tales from Toyotoki: Arrival of the Witch\", \"es-419\": \"Tales from Toyotoki: Arrival of the Witch\", \"ja-JP\": \"\\u30a4\\u30cf\\u30ca\\u30b7\\u306e\\u9b54\\u5973\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/93a4361090f9cc404dd2f6d06d95eef08ff18f629de6b8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f53a6668c59c038a1cc805074f895514052fd72078bf1481.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/547aa544370a1949f41e67458e0bb9bb17901eb1d8a7af68.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/4b72694c84ce7e3a4825757cbf0990698772d70532985b46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/f5818de316818083bf4129a6d3ecdaf50819100448b8ad3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/70c210f01bfccb51b3277d3708a651a014febce63d8e32ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/4238cbb218257f1bc0b1a59ef229f4d6573d2178cbb14c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/6ed820141cdb1ac94c6bf0da576e4debb4d8c057b64077b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T08:52:30.680000Z\", \"lastPlayedDateTime\": \"2023-05-11T09:05:06.070000Z\", \"playDuration\": \"PT12M31S\"}, {\"titleId\": \"CUSA41215_00\", \"name\": \"Celebrity Slot Machine\", \"localizedName\": \"Celebrity Slot Machine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"category\": \"unknown\", \"service\": \"none_purchased\", \"playCount\": 1, \"concept\": {\"id\": 10007576, \"titleIds\": [\"CUSA41215_00\", \"CUSA41214_00\"], \"name\": \"Celebrity Slot Machine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/8583940087673b698a01112002950acbefb1c0f204ab4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/828842698b79432af29d1d16c1085a9968845a706191743c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/4a2e3e894773796a118af1ff491322bb97a03546276554c1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/edb3b106914385eeb0df68bfada947230810e5f2654e295e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/cf5696d01d320f3ac34830eb61cd48e8c2c5f6d48016ae47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/029a3222ca73c55a94efb61fdfd5d5a9218baa0b66ae9193.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/659ad45f1865695d3fc1c1b0eaae462bdd0b166996ff0c04.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/8eea3ba178b3fcd42cb80319abced55031f94b64acda9934.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/af1eb76534b02ecbf81eb338aa09b4780c27e4e8260e3909.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Celebrity Slot Machine\", \"uk-UA\": \"Celebrity Slot Machine\", \"de-DE\": \"Celebrity Slot Machine\", \"en-US\": \"Celebrity Slot Machine\", \"pt-BR\": \"Celebrity Slot Machine\", \"es-ES\": \"Celebrity Slot Machine\", \"ar-AE\": \"Celebrity Slot Machine\", \"no-NO\": \"Celebrity Slot Machine\", \"fr-CA\": \"Celebrity Slot Machine\", \"it-IT\": \"Celebrity Slot Machine\", \"pl-PL\": \"Celebrity Slot Machine\", \"ru-RU\": \"Celebrity Slot Machine\", \"nl-NL\": \"Celebrity Slot Machine\", \"pt-PT\": \"Celebrity Slot Machine\", \"sv-SE\": \"Celebrity Slot Machine\", \"da-DK\": \"Celebrity Slot Machine\", \"tr-TR\": \"Celebrity Slot Machine\", \"fr-FR\": \"Celebrity Slot Machine\", \"en-GB\": \"Celebrity Slot Machine\", \"es-419\": \"Celebrity Slot Machine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/8583940087673b698a01112002950acbefb1c0f204ab4634.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/828842698b79432af29d1d16c1085a9968845a706191743c.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/4a2e3e894773796a118af1ff491322bb97a03546276554c1.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/edb3b106914385eeb0df68bfada947230810e5f2654e295e.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/cf5696d01d320f3ac34830eb61cd48e8c2c5f6d48016ae47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/029a3222ca73c55a94efb61fdfd5d5a9218baa0b66ae9193.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/659ad45f1865695d3fc1c1b0eaae462bdd0b166996ff0c04.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/8eea3ba178b3fcd42cb80319abced55031f94b64acda9934.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0512/af1eb76534b02ecbf81eb338aa09b4780c27e4e8260e3909.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0510/adc8bf809d34e57fd7b7b268680658459a1c4d2298c0c022.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T08:52:52.810000Z\", \"lastPlayedDateTime\": \"2023-05-11T08:52:52.810000Z\", \"playDuration\": \"PT2H32M42S\"}, {\"titleId\": \"CUSA42334_00\", \"name\": \"Tales from Toyotoki: Arrival of the Witch\", \"localizedName\": \"Tales from Toyotoki: Arrival of the Witch\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007955, \"titleIds\": [\"CUSA48914_00\", \"PPSA21908_00\", \"CUSA48915_00\", \"PPSA21907_00\", \"CUSA42334_00\", \"PPSA15567_00\"], \"name\": \"Tales from Toyotoki: Arrival of the Witch\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/93a4361090f9cc404dd2f6d06d95eef08ff18f629de6b8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f53a6668c59c038a1cc805074f895514052fd72078bf1481.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/547aa544370a1949f41e67458e0bb9bb17901eb1d8a7af68.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/4b72694c84ce7e3a4825757cbf0990698772d70532985b46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/f5818de316818083bf4129a6d3ecdaf50819100448b8ad3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/70c210f01bfccb51b3277d3708a651a014febce63d8e32ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/4238cbb218257f1bc0b1a59ef229f4d6573d2178cbb14c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/6ed820141cdb1ac94c6bf0da576e4debb4d8c057b64077b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tales from Toyotoki: Arrival of the Witch\", \"uk-UA\": \"Tales from Toyotoki: Arrival of the Witch\", \"de-DE\": \"Tales from Toyotoki: Arrival of the Witch\", \"en-US\": \"Tales from Toyotoki: Arrival of the Witch\", \"ko-KR\": \"\\uc774\\ud558\\ub098\\uc2dc\\uc758 \\ub9c8\\ub140\", \"pt-BR\": \"Tales from Toyotoki: Arrival of the Witch\", \"es-ES\": \"Tales from Toyotoki: Arrival of the Witch\", \"ar-AE\": \"Tales from Toyotoki: Arrival of the Witch\", \"no-NO\": \"Tales from Toyotoki: Arrival of the Witch\", \"fr-CA\": \"Tales from Toyotoki: Arrival of the Witch\", \"it-IT\": \"Tales from Toyotoki: Arrival of the Witch\", \"pl-PL\": \"Tales from Toyotoki: Arrival of the Witch\", \"ru-RU\": \"Tales from Toyotoki: Arrival of the Witch\", \"nl-NL\": \"Tales from Toyotoki: Arrival of the Witch\", \"pt-PT\": \"Tales from Toyotoki: Arrival of the Witch\", \"sv-SE\": \"Tales from Toyotoki: Arrival of the Witch\", \"da-DK\": \"Tales from Toyotoki: Arrival of the Witch\", \"tr-TR\": \"Tales from Toyotoki: Arrival of the Witch\", \"fr-FR\": \"Tales from Toyotoki: Arrival of the Witch\", \"en-GB\": \"Tales from Toyotoki: Arrival of the Witch\", \"es-419\": \"Tales from Toyotoki: Arrival of the Witch\", \"ja-JP\": \"\\u30a4\\u30cf\\u30ca\\u30b7\\u306e\\u9b54\\u5973\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/3f770f550408a2de5fc6c17793b0e5f263e16020851655ac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/93a4361090f9cc404dd2f6d06d95eef08ff18f629de6b8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f53a6668c59c038a1cc805074f895514052fd72078bf1481.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1409/8cf3af46cdce6f00f3896465f33da79180ee438fa52fe4a1.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/547aa544370a1949f41e67458e0bb9bb17901eb1d8a7af68.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/4b72694c84ce7e3a4825757cbf0990698772d70532985b46.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/f5818de316818083bf4129a6d3ecdaf50819100448b8ad3d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/70c210f01bfccb51b3277d3708a651a014febce63d8e32ab.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/4238cbb218257f1bc0b1a59ef229f4d6573d2178cbb14c00.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202408/0917/6ed820141cdb1ac94c6bf0da576e4debb4d8c057b64077b3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202407/0822/f0f0a8ae9a2f107dc262098c1df83a82f2a5251d35a89041.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T07:59:16.110000Z\", \"lastPlayedDateTime\": \"2023-05-11T08:52:13.350000Z\", \"playDuration\": \"PT42M42S\"}, {\"titleId\": \"CUSA40801_00\", \"name\": \"Lucky Slots\", \"localizedName\": \"Lucky Slots\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007366, \"titleIds\": [\"CUSA40802_00\", \"CUSA40801_00\"], \"name\": \"Lucky Slots\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lucky Slots\", \"uk-UA\": \"Lucky Slots\", \"de-DE\": \"Lucky Slots\", \"en-US\": \"Lucky Slots\", \"pt-BR\": \"Lucky Slots\", \"es-ES\": \"Lucky Slots\", \"ar-AE\": \"Lucky Slots\", \"no-NO\": \"Lucky Slots\", \"fr-CA\": \"Lucky Slots\", \"it-IT\": \"Lucky Slots\", \"pl-PL\": \"Lucky Slots\", \"ru-RU\": \"Lucky Slots\", \"nl-NL\": \"Lucky Slots\", \"pt-PT\": \"Lucky Slots\", \"sv-SE\": \"Lucky Slots\", \"da-DK\": \"Lucky Slots\", \"tr-TR\": \"Lucky Slots\", \"fr-FR\": \"Lucky Slots\", \"en-GB\": \"Lucky Slots\", \"es-419\": \"Lucky Slots\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T06:14:45.320000Z\", \"lastPlayedDateTime\": \"2023-05-11T07:56:07.810000Z\", \"playDuration\": \"PT1H41M9S\"}, {\"titleId\": \"CUSA40802_00\", \"name\": \"Lucky Slots\", \"localizedName\": \"Lucky Slots\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007366, \"titleIds\": [\"CUSA40802_00\", \"CUSA40801_00\"], \"name\": \"Lucky Slots\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Lucky Slots\", \"uk-UA\": \"Lucky Slots\", \"de-DE\": \"Lucky Slots\", \"en-US\": \"Lucky Slots\", \"pt-BR\": \"Lucky Slots\", \"es-ES\": \"Lucky Slots\", \"ar-AE\": \"Lucky Slots\", \"no-NO\": \"Lucky Slots\", \"fr-CA\": \"Lucky Slots\", \"it-IT\": \"Lucky Slots\", \"pl-PL\": \"Lucky Slots\", \"ru-RU\": \"Lucky Slots\", \"nl-NL\": \"Lucky Slots\", \"pt-PT\": \"Lucky Slots\", \"sv-SE\": \"Lucky Slots\", \"da-DK\": \"Lucky Slots\", \"tr-TR\": \"Lucky Slots\", \"fr-FR\": \"Lucky Slots\", \"en-GB\": \"Lucky Slots\", \"es-419\": \"Lucky Slots\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/bbf30257217f90978ff54c9715615c3e021199ccf6d58f88.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/78b73fe8523ee0036f397aea1791fd23b65e857450d51c47.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3ecc8bfe522c055ab8db94e15733f5ca78ec507638efc35f.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/950d609050f94aadbe76fe16287d71e24cc5ecf0abf271bf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/ddc83b0eb5f1b56b3c0bbf3d29121d31967a512f432414e4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/91fe6afc822a2994c9e15e996fad95c2e0857ea757b5b742.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/42d79a49ce14d44aaeb6652284857e62fae5aa2815933366.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/9e7f8aedc5d2af90aab9e11c0ab97af255ea0588953f09f7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/3a0e7de98f60225ac8b47247890e12ee79a1bef92f12ea3b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/de96944b4e3a109ae99490d22b062ceac9b29cb65803c843.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0912/01691ae7c5c0f66a131bac7080bf89ad818df5dc388d2842.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T03:59:05.010000Z\", \"lastPlayedDateTime\": \"2023-05-11T06:14:14.360000Z\", \"playDuration\": \"PT2H14M58S\"}, {\"titleId\": \"CUSA39374_00\", \"name\": \"Tasty Slot Machine\", \"localizedName\": \"Tasty Slot Machine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10006874, \"titleIds\": [\"CUSA39373_00\", \"CUSA39374_00\"], \"name\": \"Tasty Slot Machine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tasty Slot Machine\", \"uk-UA\": \"Tasty Slot Machine\", \"de-DE\": \"Tasty Slot Machine\", \"en-US\": \"Tasty Slot Machine\", \"pt-BR\": \"Tasty Slot Machine\", \"es-ES\": \"Tasty Slot Machine\", \"ar-AE\": \"Tasty Slot Machine\", \"no-NO\": \"Tasty Slot Machine\", \"fr-CA\": \"Tasty Slot Machine\", \"it-IT\": \"Tasty Slot Machine\", \"pl-PL\": \"Tasty Slot Machine\", \"ru-RU\": \"Tasty Slot Machine\", \"nl-NL\": \"Tasty Slot Machine\", \"pt-PT\": \"Tasty Slot Machine\", \"sv-SE\": \"Tasty Slot Machine\", \"da-DK\": \"Tasty Slot Machine\", \"tr-TR\": \"Tasty Slot Machine\", \"fr-FR\": \"Tasty Slot Machine\", \"en-GB\": \"Tasty Slot Machine\", \"es-419\": \"Tasty Slot Machine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-11T01:48:43.400000Z\", \"lastPlayedDateTime\": \"2023-05-11T03:59:01.140000Z\", \"playDuration\": \"PT2H9M35S\"}, {\"titleId\": \"CUSA39373_00\", \"name\": \"Tasty Slot Machine\", \"localizedName\": \"Tasty Slot Machine\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10006874, \"titleIds\": [\"CUSA39373_00\", \"CUSA39374_00\"], \"name\": \"Tasty Slot Machine\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"CASUAL\", \"PARTY\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Tasty Slot Machine\", \"uk-UA\": \"Tasty Slot Machine\", \"de-DE\": \"Tasty Slot Machine\", \"en-US\": \"Tasty Slot Machine\", \"pt-BR\": \"Tasty Slot Machine\", \"es-ES\": \"Tasty Slot Machine\", \"ar-AE\": \"Tasty Slot Machine\", \"no-NO\": \"Tasty Slot Machine\", \"fr-CA\": \"Tasty Slot Machine\", \"it-IT\": \"Tasty Slot Machine\", \"pl-PL\": \"Tasty Slot Machine\", \"ru-RU\": \"Tasty Slot Machine\", \"nl-NL\": \"Tasty Slot Machine\", \"pt-PT\": \"Tasty Slot Machine\", \"sv-SE\": \"Tasty Slot Machine\", \"da-DK\": \"Tasty Slot Machine\", \"tr-TR\": \"Tasty Slot Machine\", \"fr-FR\": \"Tasty Slot Machine\", \"en-GB\": \"Tasty Slot Machine\", \"es-419\": \"Tasty Slot Machine\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b10e45819577dbb3389e34baad69a9747b208d334965947d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1d607cc954190361d51c6cf5746d5c1115a516d4f3c3ee02.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/9af93411d65098a101893ff0941f19ea691402fd658af5d2.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/127ef795ce35cd36a05d09e937a7ef619ed39e0fc1eda5d8.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/85056084884b8de0678419c0b1682968ae531006ac72b5ff.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/266b189c7b6b2e939d5425e9ec7b4e2c62943cf546a9f75d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/ced188754963ff3c25dce53e7f1b2d8cfe8e94f303aa5ab3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/1fa2a0863497cfddbb02b3e8335fb75cf2923f8cbb24e624.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/2a0c3b6fa5b330102f9ef7a79b40d436fc36564677284432.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/b015b58e70286e2e6f508ea71771fae17be14870eba91b42.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/05d478f7c5895e3e1ba2dec9931e07f4a1de5c0f492c9b23.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0411/f7588537d13baf615d7eab312b41dcb5720e8c9e9c2f68b2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T16:06:04.030000Z\", \"lastPlayedDateTime\": \"2023-05-11T01:48:37.980000Z\", \"playDuration\": \"PT9H41M45S\"}, {\"titleId\": \"CUSA33697_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T14:03:28.950000Z\", \"lastPlayedDateTime\": \"2023-05-10T15:25:23.360000Z\", \"playDuration\": \"PT1H19M48S\"}, {\"titleId\": \"CUSA33698_00\", \"name\": \"Zeus Quest - The Rebirth of Earth\", \"localizedName\": \"Zeus Quest - The Rebirth of Earth\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005078, \"titleIds\": [\"CUSA33697_00\", \"CUSA33698_00\", \"PPSA07649_00\", \"PPSA07650_00\"], \"name\": \"Zeus Quest - The Rebirth of Earth\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Zeus Quest - The Rebirth of Earth\", \"uk-UA\": \"Zeus Quest - The Rebirth of Earth\", \"de-DE\": \"Zeus Quest - The Rebirth of Earth\", \"en-US\": \"Zeus Quest - The Rebirth of Earth\", \"pt-BR\": \"Zeus Quest - The Rebirth of Earth\", \"es-ES\": \"Zeus Quest - The Rebirth of Earth\", \"ar-AE\": \"Zeus Quest - The Rebirth of Earth\", \"no-NO\": \"Zeus Quest - The Rebirth of Earth\", \"fr-CA\": \"Zeus Quest - The Rebirth of Earth\", \"it-IT\": \"Zeus Quest - The Rebirth of Earth\", \"pl-PL\": \"Zeus Quest - The Rebirth of Earth\", \"ru-RU\": \"Zeus Quest - The Rebirth of Earth\", \"nl-NL\": \"Zeus Quest - The Rebirth of Earth\", \"pt-PT\": \"Zeus Quest - The Rebirth of Earth\", \"sv-SE\": \"Zeus Quest - The Rebirth of Earth\", \"da-DK\": \"Zeus Quest - The Rebirth of Earth\", \"tr-TR\": \"Zeus Quest - The Rebirth of Earth\", \"fr-FR\": \"Zeus Quest - The Rebirth of Earth\", \"en-GB\": \"Zeus Quest - The Rebirth of Earth\", \"es-419\": \"Zeus Quest - The Rebirth of Earth\", \"ja-JP\": \"Zeus Quest - The Rebirth of Earth\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ShHyJ1L3VWWbGZFQ8QHcK7M7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dt1D7VQcTc2t7AFcCODFxT3v.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/sVTq14oDbXsDp9awMnqynrxf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/6lurRqGci3ydJy5T3UbHnrWy.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/N9KJ3chAxDv82AFLG2Y3H0AW.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ouYIaLFWimvfCwRj9ROw1ZOW.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/GYpuxvN7yikpuhcAhbd6q9er.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/QwO3e0749lJP8tR7Kjb5T4gm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/ktm6qhFLHJmBjSbsFgH63UNh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LNH9LwaI0d0ZKrpIUZrYYdzL.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/LTosQ0T7ZiUcccYUBgnLiwoz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/PIPEmkmBxEUQDRvNRH6l9gMR.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/lRtpO140f9Ymx8eMKiaPlIEX.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/EFafsN8bmlg9k8x5aOa6PEZ5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/dRTM6b46X2cAGngWaHyXWMrI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/2XjS9Ovrzx6LCwuedJBPubCf.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2912/vuRN2epQ24OP3271szN7Zb29.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T12:10:21.230000Z\", \"lastPlayedDateTime\": \"2023-05-10T14:03:26.590000Z\", \"playDuration\": \"PT1H48M4S\"}, {\"titleId\": \"CUSA40160_00\", \"name\": \"Evermaiden\", \"localizedName\": \"Evermaiden\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"category\": \"ps4_game\", \"service\": \"other\", \"playCount\": 1, \"concept\": {\"id\": 10007102, \"titleIds\": [\"CUSA40160_00\", \"CUSA40161_00\"], \"name\": \"Evermaiden\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/482666265bdf96e3186ad83f5d31bf235e6d72a2a394a8dd.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/f8d65ed1bdd3ff734229cb9cee2963ac2271ff98592b3d58.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/eba46292b15319ff4972a5f538e320e9b255117853aee481.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/2076b4c87e80fdae7236500ec6c87a9ef8a0720de42991a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/055671114b8b0ff9a9023bf405d179fe4fb872987fe11cc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/785fc56096acd03fe5806dc5535033aa9b3fdd9e067a3b9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/235e4c88b3e8cb6370f68c18607b65786476a662aee3a3e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/6dba6a848fa6f56cc911c01d4aa919c8e14b3bf95053cf73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/3b4da8dcd983debcb8e4db3802b63cc75a7a3a31deb7e504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"en-US\": \"Evermaiden\", \"en-GB\": \"Evermaiden\", \"ja-JP\": \"\\u30a8\\u30f4\\u30a1\\u30fc\\u30e1\\u30a4\\u30c7\\u30f3 \\uff5e\\u5815\\u843d\\u306e\\u5712\\u306e\\u4e59\\u5973\\u305f\\u3061\\uff5e\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/482666265bdf96e3186ad83f5d31bf235e6d72a2a394a8dd.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/f8d65ed1bdd3ff734229cb9cee2963ac2271ff98592b3d58.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/eba46292b15319ff4972a5f538e320e9b255117853aee481.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/2076b4c87e80fdae7236500ec6c87a9ef8a0720de42991a6.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/055671114b8b0ff9a9023bf405d179fe4fb872987fe11cc4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/785fc56096acd03fe5806dc5535033aa9b3fdd9e067a3b9d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/235e4c88b3e8cb6370f68c18607b65786476a662aee3a3e0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/6dba6a848fa6f56cc911c01d4aa919c8e14b3bf95053cf73.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/3b4da8dcd983debcb8e4db3802b63cc75a7a3a31deb7e504.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/1507/1d9c09cd6958684a3d03eb61ac09376cfa69b3de07ab3ccf.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T11:15:40.420000Z\", \"lastPlayedDateTime\": \"2023-05-10T11:39:36.580000Z\", \"playDuration\": \"PT23M49S\"}, {\"titleId\": \"PPSA13870_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T05:11:42.430000Z\", \"lastPlayedDateTime\": \"2023-05-10T06:22:05.660000Z\", \"playDuration\": \"PT1H5M54S\"}, {\"titleId\": \"PPSA13871_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T04:01:44.740000Z\", \"lastPlayedDateTime\": \"2023-05-10T05:06:20.170000Z\", \"playDuration\": \"PT1H4M8S\"}, {\"titleId\": \"CUSA40859_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-10T00:47:06.150000Z\", \"lastPlayedDateTime\": \"2023-05-10T02:18:27.740000Z\", \"playDuration\": \"PT1H31M10S\"}, {\"titleId\": \"CUSA40858_00\", \"name\": \"Neko Rescue Tale\", \"localizedName\": \"Neko Rescue Tale\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10007389, \"titleIds\": [\"CUSA40859_00\", \"CUSA40858_00\", \"PPSA13871_00\", \"PPSA13870_00\"], \"name\": \"Neko Rescue Tale\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Neko Rescue Tale\", \"uk-UA\": \"Neko Rescue Tale\", \"de-DE\": \"Neko Rescue Tale\", \"en-US\": \"Neko Rescue Tale\", \"ko-KR\": \"Neko Rescue Tale\", \"pt-BR\": \"Neko Rescue Tale\", \"es-ES\": \"Neko Rescue Tale\", \"ar-AE\": \"Neko Rescue Tale\", \"no-NO\": \"Neko Rescue Tale\", \"fr-CA\": \"Neko Rescue Tale\", \"it-IT\": \"Neko Rescue Tale\", \"pl-PL\": \"Neko Rescue Tale\", \"ru-RU\": \"Neko Rescue Tale\", \"zh-Hans\": \"Neko Rescue Tale\", \"nl-NL\": \"Neko Rescue Tale\", \"pt-PT\": \"Neko Rescue Tale\", \"zh-Hant\": \"Neko Rescue Tale\", \"sv-SE\": \"Neko Rescue Tale\", \"da-DK\": \"Neko Rescue Tale\", \"tr-TR\": \"Neko Rescue Tale\", \"fr-FR\": \"Neko Rescue Tale\", \"en-GB\": \"Neko Rescue Tale\", \"es-419\": \"Neko Rescue Tale\", \"ja-JP\": \"Neko Rescue Tale\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/7ee9c0d4a46e331546d1f9630ea44ef4aa9da5c60d3eed50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/92cff6886596246bd394ed756ca9c5bc217bb9128323f921.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/abead4019baf12013cad5efab3ec5bf24a1f1ff704440510.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/11e247d5203aaee52765b84f7d6334d9f39b77409f9ad66d.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e811029617a51857776d84b7464db8b10510caf5f31e23f5.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/dd5d8c71e826e93ce9a0085b8293f5738186011f365ed8be.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/534e7b17fa1c759190ce742bd159bb94afd302ac396aa67b.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/2499e290531e103be87633e1e269de61bc1a48bcfa508bb5.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/31beb4598c6873881dbbc4c5339a121387adf02aacc0db17.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/490a72d4734913fa1075eac7c801e0c7fd5ad34d3e0c3528.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/e08c27af3dcabbf345018f3d87eb8af2b9c3d9891ebcef98.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/37f7e3f50ef199bdff3d21a7faad943b4dfac47dec6fb1af.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/ece32fdbf9f05a50ec44f918037ac3c0c59da354b2647103.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/14d8e6c6ebbfdf8c935f9f60338f24d201ff87118b75473d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/419c567de7834cd81b6a800115b00af34e369845978d0cd2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/0509/36f50ca9f967cf53d66c2215b0a3f1c1e5454b341bdfb93d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0806/3b28aab0ebe5bb503bef69bef9b3230a209415c514aacb22.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T10:44:47.470000Z\", \"lastPlayedDateTime\": \"2023-05-09T16:12:17.440000Z\", \"playDuration\": \"PT2H29S\"}, {\"titleId\": \"PPSA15741_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T14:52:10.870000Z\", \"lastPlayedDateTime\": \"2023-05-09T15:33:35.840000Z\", \"playDuration\": \"PT41M2S\"}, {\"titleId\": \"PPSA15742_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T14:27:29.430000Z\", \"lastPlayedDateTime\": \"2023-05-09T14:50:38.810000Z\", \"playDuration\": \"PT23M4S\"}, {\"titleId\": \"CUSA42727_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 3, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T12:49:05.510000Z\", \"lastPlayedDateTime\": \"2023-05-09T14:27:27.370000Z\", \"playDuration\": \"PT1H35M50S\"}, {\"titleId\": \"CUSA42728_00\", \"name\": \"Gruta\", \"localizedName\": \"Gruta\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10008125, \"titleIds\": [\"PPSA15742_00\", \"PPSA15741_00\", \"CUSA42727_00\", \"CUSA42728_00\"], \"name\": \"Gruta\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ADVENTURE\", \"CASUAL\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Gruta\", \"uk-UA\": \"Gruta\", \"de-DE\": \"Gruta\", \"en-US\": \"Gruta\", \"pt-BR\": \"Gruta\", \"es-ES\": \"Gruta\", \"ar-AE\": \"Gruta\", \"no-NO\": \"Gruta\", \"fr-CA\": \"Gruta\", \"it-IT\": \"Gruta\", \"pl-PL\": \"Gruta\", \"ru-RU\": \"Gruta\", \"nl-NL\": \"Gruta\", \"pt-PT\": \"Gruta\", \"sv-SE\": \"Gruta\", \"da-DK\": \"Gruta\", \"tr-TR\": \"Gruta\", \"fr-FR\": \"Gruta\", \"en-GB\": \"Gruta\", \"es-419\": \"Gruta\", \"ja-JP\": \"Gruta\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/7e15fd1d56de28bc1396b376de011c7ccfe2a911e9421dde.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/8a288cc5f8cec6d562960288591711e6a23d5f3cac934573.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/1eeb6a539ef0e8994bf4dc78d189a0e631fce8da03a878bc.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1417/6f75c8c7658b2ea29c11a4eb1050f16e329f4f1a6ee67c12.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/3f8354bbef5f804a51aaba93c86790901c18c2b47d71d524.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a12a0e27fc46bf348b7fccddee262e02e4e69db223cf3d45.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/bf23725ac9d93d147c55316a4097163aa9a98c4dd28d3521.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/828f6afb274f78c69391dcdc9a1e99bdb1ce7867860ea499.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/24108890008207d06dad14c901cb5d68ae89c31a788d693d.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/fa549ed96c567368c5454e6b05cfaf68e84470861e7cc8a1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/0f511ef6bf347c373c1fad17b137f7f763a2dc21ff98db71.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/a225ee64070ee802098d75b0339ba00522e3740d04658aac.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202304/1410/ef2f13df668f0ebfd443edd4d6ac154042c2ef48134d049e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T12:08:59.240000Z\", \"lastPlayedDateTime\": \"2023-05-09T12:49:03.580000Z\", \"playDuration\": \"PT38M58S\"}, {\"titleId\": \"PPSA15460_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T10:03:30.000000Z\", \"lastPlayedDateTime\": \"2023-05-09T10:44:13.960000Z\", \"playDuration\": \"PT31M3S\"}, {\"titleId\": \"PPSA15461_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T08:16:10.000000Z\", \"lastPlayedDateTime\": \"2023-05-09T08:47:04.410000Z\", \"playDuration\": \"PT30M44S\"}, {\"titleId\": \"CUSA42459_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T07:43:54.860000Z\", \"lastPlayedDateTime\": \"2023-05-09T08:15:58.250000Z\", \"playDuration\": \"PT31M56S\"}, {\"titleId\": \"CUSA42458_00\", \"name\": \"Ultra Pixel Survive\", \"localizedName\": \"Ultra Pixel Survive\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007998, \"titleIds\": [\"CUSA42459_00\", \"CUSA42458_00\", \"PPSA15460_00\", \"PPSA15461_00\"], \"name\": \"Ultra Pixel Survive\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ROLE_PLAYING_GAMES\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Ultra Pixel Survive\", \"uk-UA\": \"Ultra Pixel Survive\", \"de-DE\": \"Ultra Pixel Survive\", \"en-US\": \"Ultra Pixel Survive\", \"pt-BR\": \"Ultra Pixel Survive\", \"es-ES\": \"Ultra Pixel Survive\", \"ar-AE\": \"Ultra Pixel Survive\", \"no-NO\": \"Ultra Pixel Survive\", \"fr-CA\": \"Ultra Pixel Survive\", \"it-IT\": \"Ultra Pixel Survive\", \"pl-PL\": \"Ultra Pixel Survive\", \"ru-RU\": \"Ultra Pixel Survive\", \"nl-NL\": \"Ultra Pixel Survive\", \"pt-PT\": \"Ultra Pixel Survive\", \"sv-SE\": \"Ultra Pixel Survive\", \"da-DK\": \"Ultra Pixel Survive\", \"tr-TR\": \"Ultra Pixel Survive\", \"fr-FR\": \"Ultra Pixel Survive\", \"en-GB\": \"Ultra Pixel Survive\", \"es-419\": \"Ultra Pixel Survive\", \"ja-JP\": \"Ultra Pixel Survive\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/b7dab484bc6a6f8eb7c2e8a3ac90ca0f5723856a2f618520.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/b0dc94a444bb79e0367f18b7db8a180956b797b2ac01d409.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e1680d81fc8f0812ca3875e098e141fb7f919fc2f1566459.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2316/ebf1abfcadc105c38937af42b9f26c3a34818cfb6bd5a96f.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/4d149ad9c7d918e5059a8f1cc1c8bd9537ca7bf335aeebb4.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/e28e835330a459e1bddeb507c01dcdc336f51cd773fdd693.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/fe5a61437f24cdb78acb7cbaf72a7a3e531052239817d8e3.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/3bccf46f4d90104f3e440894512db39d5ef63e0edead57df.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/36aa9f38d42ae8907a473a3d86ff434d54a83365254cddd7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c1336b0cc30e1c7012c4acba438513b97892733b745405f1.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/14ee9d91f666554d829408aae8165758de0dcb6efdbc8b99.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/c99bc62329004eb2c75fef508cb092277334d7689a32d86a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202303/2315/a830a181eeaec74e520d3956f19a96e94cc1a8c3683dc31e.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T07:00:33.080000Z\", \"lastPlayedDateTime\": \"2023-05-09T07:33:57.550000Z\", \"playDuration\": \"PT33M8S\"}, {\"titleId\": \"PPSA09028_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T06:09:46.480000Z\", \"lastPlayedDateTime\": \"2023-05-09T06:53:01.420000Z\", \"playDuration\": \"PT43M8S\"}, {\"titleId\": \"PPSA09027_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T05:21:28.650000Z\", \"lastPlayedDateTime\": \"2023-05-09T06:09:44.340000Z\", \"playDuration\": \"PT41M58S\"}, {\"titleId\": \"CUSA35295_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T04:29:17.080000Z\", \"lastPlayedDateTime\": \"2023-05-09T05:21:26.410000Z\", \"playDuration\": \"PT51M22S\"}, {\"titleId\": \"CUSA35296_00\", \"name\": \"Rise of Fox Hero\", \"localizedName\": \"Rise of Fox Hero\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005671, \"titleIds\": [\"CUSA35295_00\", \"CUSA35296_00\", \"PPSA09027_00\", \"PPSA09028_00\"], \"name\": \"Rise of Fox Hero\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Rise of Fox Hero\", \"de-DE\": \"Rise of Fox Hero\", \"en-US\": \"Rise of Fox Hero\", \"pt-BR\": \"Rise of Fox Hero\", \"es-ES\": \"Rise of Fox Hero\", \"no-NO\": \"Rise of Fox Hero\", \"fr-CA\": \"Rise of Fox Hero\", \"it-IT\": \"Rise of Fox Hero\", \"pl-PL\": \"Rise of Fox Hero\", \"ru-RU\": \"Rise of Fox Hero\", \"nl-NL\": \"Rise of Fox Hero\", \"pt-PT\": \"Rise of Fox Hero\", \"sv-SE\": \"Rise of Fox Hero\", \"da-DK\": \"Rise of Fox Hero\", \"fr-FR\": \"Rise of Fox Hero\", \"en-GB\": \"Rise of Fox Hero\", \"es-419\": \"Rise of Fox Hero\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/kC5mJYNOz2zIzVzmJ9GHMmqh.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/GM4MIENojdbNEqF4EHE4Ng32.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/1415/9b7b9cd5514ba2a3e6d6919d99a7fb1c32abea427ed80eab.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/ZAiFEb2XAcGl4v4wfBW4GjUz.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/yX3fN2BpThP6DhEk4jvb3J6b.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/zKTDZffIX1jEOABHCwwFqT4p.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/vSQZMtDJBpN8T0KimFBbZ4JQ.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/qfaFX00125X6QRSCr0H2PDii.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/DmfmBpTFGs6wZvU4RG0SfHwt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202211/2211/Jo1rmA2Ly0iZ0UDqhorUfNCV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/0511/CY3uhpzeWPeO1MEkc4VbkUx2.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T13:35:27.820000Z\", \"lastPlayedDateTime\": \"2023-05-09T04:29:15.070000Z\", \"playDuration\": \"PT1H9M50S\"}, {\"titleId\": \"CUSA24409_00\", \"name\": \"The Procession to Calvary\", \"localizedName\": \"The Procession to Calvary\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001385, \"titleIds\": [\"CUSA24408_00\", \"CUSA24409_00\", \"CUSA35854_00\"], \"name\": \"The Procession to Calvary\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Procession to Calvary\", \"uk-UA\": \"The Procession to Calvary\", \"de-DE\": \"The Procession to Calvary\", \"en-US\": \"The Procession to Calvary\", \"ko-KR\": \"The Procession to Calvary\", \"pt-BR\": \"The Procession to Calvary\", \"es-ES\": \"The Procession to Calvary\", \"ar-AE\": \"The Procession to Calvary\", \"no-NO\": \"The Procession to Calvary\", \"fr-CA\": \"The Procession to Calvary\", \"it-IT\": \"The Procession to Calvary\", \"pl-PL\": \"The Procession to Calvary\", \"ru-RU\": \"The Procession to Calvary\", \"zh-Hans\": \"The Procession to Calvary\", \"nl-NL\": \"The Procession to Calvary\", \"pt-PT\": \"The Procession to Calvary\", \"zh-Hant\": \"The Procession to Calvary\", \"sv-SE\": \"The Procession to Calvary\", \"da-DK\": \"The Procession to Calvary\", \"tr-TR\": \"The Procession to Calvary\", \"fr-FR\": \"The Procession to Calvary\", \"en-GB\": \"The Procession to Calvary\", \"es-419\": \"The Procession to Calvary\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-09T00:44:27.180000Z\", \"lastPlayedDateTime\": \"2023-05-09T02:13:27.200000Z\", \"playDuration\": \"PT55M23S\"}, {\"titleId\": \"CUSA24408_00\", \"name\": \"The Procession to Calvary\", \"localizedName\": \"The Procession to Calvary\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10001385, \"titleIds\": [\"CUSA24408_00\", \"CUSA24409_00\", \"CUSA35854_00\"], \"name\": \"The Procession to Calvary\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ADVENTURE\", \"ADVENTURE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"The Procession to Calvary\", \"uk-UA\": \"The Procession to Calvary\", \"de-DE\": \"The Procession to Calvary\", \"en-US\": \"The Procession to Calvary\", \"ko-KR\": \"The Procession to Calvary\", \"pt-BR\": \"The Procession to Calvary\", \"es-ES\": \"The Procession to Calvary\", \"ar-AE\": \"The Procession to Calvary\", \"no-NO\": \"The Procession to Calvary\", \"fr-CA\": \"The Procession to Calvary\", \"it-IT\": \"The Procession to Calvary\", \"pl-PL\": \"The Procession to Calvary\", \"ru-RU\": \"The Procession to Calvary\", \"zh-Hans\": \"The Procession to Calvary\", \"nl-NL\": \"The Procession to Calvary\", \"pt-PT\": \"The Procession to Calvary\", \"zh-Hant\": \"The Procession to Calvary\", \"sv-SE\": \"The Procession to Calvary\", \"da-DK\": \"The Procession to Calvary\", \"tr-TR\": \"The Procession to Calvary\", \"fr-FR\": \"The Procession to Calvary\", \"en-GB\": \"The Procession to Calvary\", \"es-419\": \"The Procession to Calvary\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/4Jd3I7ZJfJJdwnaHGmWQlRQu.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/k04w7UMJ60InsQ3OFp2Ojykq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/nVnINVozBR22w8N7DpXmUqgl.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/iBw6mU3FYNfkOAg1PuoGfJv5.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/K7MV64ydfElj6XRYcr6JDAdE.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0dIX58Kh8GGtwDMzUEChzOLG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/Mx3IR2XXDgnYC3qfGOiY3WVn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/0TooozSIt5bpbagIeGAgF6KH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/SsJzlBKmj4bTb7Pv2KmuKSTU.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/jGbw2C1L2LMEmDgfrKOEbInm.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/b7BBBF5MM1GfgWLFVhmeRcSV.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/5zkGKhJN3D3bxJ1u4WF224oG.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/8ZOdsYDh7p7BIlL8oJdM6NR2.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202106/2513/T2ryrsGiPspPdxXIAnntTPfm.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T13:54:07.720000Z\", \"lastPlayedDateTime\": \"2023-05-08T15:40:20.030000Z\", \"playDuration\": \"PT1H45M10S\"}, {\"titleId\": \"CUSA33444_00\", \"name\": \"PictoQuest\", \"localizedName\": \"PictoQuest\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 5, \"concept\": {\"id\": 10004146, \"titleIds\": [\"CUSA33444_00\", \"CUSA31366_00\", \"CUSA31365_00\"], \"name\": \"PictoQuest\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Pia98MRtz5o832JsG3Ul9JYH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/qkFelgeE8UfyAZxXOG2t5pZq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/XnMqoPT8kL7yYJpj7djbSxBz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/GPy7wcSr4CshpLedR9JNX3GR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/SstJ55qAzjdWTTI5GhAC3HbU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/WO9JdlMJWnms1Qy9Wr5FH71R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/MrarBlz9tVexgoSBjf12clch.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/53MwVU6hM6sw54FdKiTpVVvt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/pIlaybflgHho2NJtRR2a7OkC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/ubbRLnCCo5oC88Xq9RAS11qc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/LM2iOJ5MXUFvdt4YfO63VXEI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/5UKQazYUbwFucTX2GmZ7BpoM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\", \"ROLE_PLAYING_GAMES\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"PictoQuest\", \"uk-UA\": \"PictoQuest\", \"de-DE\": \"PictoQuest\", \"en-US\": \"PictoQuest\", \"ko-KR\": \"PictoQuest\", \"pt-BR\": \"PictoQuest\", \"es-ES\": \"PictoQuest\", \"ar-AE\": \"PictoQuest\", \"no-NO\": \"PictoQuest\", \"fr-CA\": \"PictoQuest\", \"it-IT\": \"PictoQuest\", \"pl-PL\": \"PictoQuest\", \"ru-RU\": \"PictoQuest\", \"zh-Hans\": \"PictoQuest\", \"nl-NL\": \"PictoQuest\", \"pt-PT\": \"PictoQuest\", \"zh-Hant\": \"PictoQuest\", \"sv-SE\": \"PictoQuest\", \"da-DK\": \"PictoQuest\", \"tr-TR\": \"PictoQuest\", \"fr-FR\": \"PictoQuest\", \"en-GB\": \"PictoQuest\", \"es-419\": \"PictoQuest\", \"ja-JP\": \"PictoQuest\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Pia98MRtz5o832JsG3Ul9JYH.jpg\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/qkFelgeE8UfyAZxXOG2t5pZq.jpg\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/XnMqoPT8kL7yYJpj7djbSxBz.jpg\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/GPy7wcSr4CshpLedR9JNX3GR.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/SstJ55qAzjdWTTI5GhAC3HbU.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/WO9JdlMJWnms1Qy9Wr5FH71R.jpg\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/MrarBlz9tVexgoSBjf12clch.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/53MwVU6hM6sw54FdKiTpVVvt.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/pIlaybflgHho2NJtRR2a7OkC.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/ubbRLnCCo5oC88Xq9RAS11qc.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/LM2iOJ5MXUFvdt4YfO63VXEI.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/5UKQazYUbwFucTX2GmZ7BpoM.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202203/2411/Aky64aDHzbA6znWkG3jxL7bH.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-04-29T14:50:34.520000Z\", \"lastPlayedDateTime\": \"2023-05-08T13:12:14.610000Z\", \"playDuration\": \"PT4H17M9S\"}, {\"titleId\": \"PPSA13944_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T11:40:28.860000Z\", \"lastPlayedDateTime\": \"2023-05-08T13:09:50.430000Z\", \"playDuration\": \"PT1H28M59S\"}, {\"titleId\": \"PPSA13945_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T10:11:44.000000Z\", \"lastPlayedDateTime\": \"2023-05-08T11:34:11.820000Z\", \"playDuration\": \"PT1H22M22S\"}, {\"titleId\": \"CUSA40913_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-08T07:22:08.890000Z\", \"lastPlayedDateTime\": \"2023-05-08T08:53:21.320000Z\", \"playDuration\": \"PT1H31M8S\"}, {\"titleId\": \"CUSA40911_00\", \"name\": \"Moe Waifu H\", \"localizedName\": \"Moe Waifu H\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10007422, \"titleIds\": [\"CUSA40913_00\", \"CUSA40911_00\", \"PPSA13945_00\", \"PPSA13944_00\"], \"name\": \"Moe Waifu H\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"PUZZLE\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Moe Waifu H\", \"uk-UA\": \"Moe Waifu H\", \"de-DE\": \"Moe Waifu H\", \"en-US\": \"Moe Waifu H\", \"ko-KR\": \"Moe Waifu H\", \"pt-BR\": \"Moe Waifu H\", \"es-ES\": \"Moe Waifu H\", \"ar-AE\": \"Moe Waifu H\", \"no-NO\": \"Moe Waifu H\", \"fr-CA\": \"Moe Waifu H\", \"it-IT\": \"Moe Waifu H\", \"pl-PL\": \"Moe Waifu H\", \"ru-RU\": \"Moe Waifu H\", \"zh-Hans\": \"Moe Waifu H\", \"nl-NL\": \"Moe Waifu H\", \"pt-PT\": \"Moe Waifu H\", \"zh-Hant\": \"Moe Waifu H\", \"sv-SE\": \"Moe Waifu H\", \"da-DK\": \"Moe Waifu H\", \"tr-TR\": \"Moe Waifu H\", \"fr-FR\": \"Moe Waifu H\", \"en-GB\": \"Moe Waifu H\", \"es-419\": \"Moe Waifu H\", \"ja-JP\": \"Moe Waifu H\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/5a97ff0ef882a7a228ba2ca689d363dbc5acc0fd66915c4e.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/1a5eb7e10896efb2d913bd98deacdeebd2c8f6adf465c54c.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/ee9816ce8bad5e860d5b65f9a66001be01f227af974d1c17.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/2a505d4e489dee01ec81b8d81269588bb6e2acd0c32eeeae.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/c1ee768a669a26f44cf7767743ebbc2a7c290aa8ed3a3727.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/f942568c86e4a8168b22a359849c8a3ef87b6d82a8096461.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/bcc3fa5ef2c4c75f3dc17f5faddf698b5a6c0e528baf7a45.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/75b071d1b51abeb2d27cf28350005892d9a78565b4a85c16.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/0473f3da9a77817dea5501807a454997537ca3dee49b10d6.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/cb2eb8e5cadb55aed1d3b313297f473d282cab40eea16830.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8d5eb8212c69988ac2bd1a698d919754d319af404b9b6df0.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/41869a1b97ff4cc361321864b8ca9e19bf1065ebbda34530.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/9d6212e631ea8597246fabb2f85d34eca87ca76e52c028d9.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/8b6da4e9d4ca0fa4f803db445d5ada35d2f83d3567f05c65.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/b7384f25fc72b94fc8baf9b69f9a9efe2b33b74161bda01a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/2006/20b4233a6a34fc6c24662fc6e117b6f9b4485758124d7ba7.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202302/0611/93c518c120b66ec017289ad543ff526a40b767415f9b37fe.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T14:53:52.650000Z\", \"lastPlayedDateTime\": \"2023-05-07T16:27:49.190000Z\", \"playDuration\": \"PT1H32M42S\"}, {\"titleId\": \"PPSA08689_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps5_native_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T13:34:47.580000Z\", \"lastPlayedDateTime\": \"2023-05-07T14:51:52.350000Z\", \"playDuration\": \"PT1H17M\"}, {\"titleId\": \"CUSA34703_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T12:37:09.450000Z\", \"lastPlayedDateTime\": \"2023-05-07T13:28:12.730000Z\", \"playDuration\": \"PT50M4S\"}, {\"titleId\": \"CUSA34701_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 2, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T10:34:31.060000Z\", \"lastPlayedDateTime\": \"2023-05-07T12:27:55.810000Z\", \"playDuration\": \"PT55M41S\"}, {\"titleId\": \"CUSA34702_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T10:34:58.840000Z\", \"lastPlayedDateTime\": \"2023-05-07T11:32:05.410000Z\", \"playDuration\": \"PT56M59S\"}, {\"titleId\": \"CUSA34700_00\", \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"localizedName\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"imageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"localizedImageUrl\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"category\": \"ps4_game\", \"service\": \"none(purchased)\", \"playCount\": 1, \"concept\": {\"id\": 10005461, \"titleIds\": [\"CUSA34702_00\", \"CUSA34703_00\", \"PPSA08691_00\", \"PPSA08692_00\", \"PPSA08689_00\", \"PPSA08690_00\", \"CUSA34700_00\", \"CUSA34701_00\"], \"name\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"genres\": [\"ACTION\", \"ACTION\"], \"localizedName\": {\"defaultLanguage\": \"en-US\", \"metadata\": {\"fi-FI\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"uk-UA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"de-DE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-US\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ko-KR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-BR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-ES\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ar-AE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"no-NO\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-CA\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"it-IT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pl-PL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ru-RU\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hans\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"nl-NL\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"pt-PT\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"zh-Hant\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"sv-SE\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"da-DK\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"tr-TR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"fr-FR\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"en-GB\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"es-419\": \"Unichrome: A 1-Bit Unicorn Adventure\", \"ja-JP\": \"Unichrome: A 1-Bit Unicorn Adventure\"}}, \"country\": \"US\", \"language\": \"en\"}, \"media\": {\"audios\": [], \"videos\": [], \"images\": [{\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/lSq5RiNlJOWoYvt2to6E8i50.png\", \"format\": \"UNKNOWN\", \"type\": \"BACKGROUND_LAYER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/RejyG5Hn8HaccMMLJ9sEbaTO.png\", \"format\": \"UNKNOWN\", \"type\": \"FOUR_BY_THREE_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/CM9jjKx5DJPZfgGu6oB1ichh.png\", \"format\": \"UNKNOWN\", \"type\": \"GAMEHUB_COVER_ART\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1622/bCXUB33F0POhHmJ2hwXJGz8o.png\", \"format\": \"UNKNOWN\", \"type\": \"HERO_CHARACTER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/UodxBFI3ehmYghFWqvacNUbc.png\", \"format\": \"UNKNOWN\", \"type\": \"LOGO\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/koMt4TX7xUByDyon6DxAb7kf.png\", \"format\": \"UNKNOWN\", \"type\": \"PORTRAIT_BANNER\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/X4ql5u418rkTHQJYCZbv7WY4.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/dmjVemLS5Ph8lbpm0NctIvBr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0xkDUnM5iP1NxoRs5oEl4r1a.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/0s6IK5RrSZ9Y97bicB4pzICN.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/uKlnbrUzPpDn5crQnklPMMWO.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/tJtUCFuGeNKolCXOdqZyf8cr.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/5wNG4K0bxOAA5VhER1eLosUn.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/SDZAcBQ7ErpKDHgL8PCzNpKE.jpg\", \"format\": \"UNKNOWN\", \"type\": \"SCREENSHOT\"}, {\"url\": \"https://image.api.playstation.com/vulcan/ap/rnd/202208/1621/JeYG1izc0n7lQWkvUS1Nomsa.png\", \"format\": \"UNKNOWN\", \"type\": \"MASTER\"}]}, \"firstPlayedDateTime\": \"2023-05-07T07:38:18.100000Z\", \"lastPlayedDateTime\": \"2023-05-07T10:34:28.860000Z\", \"playDuration\": \"PT1H31M56S\"}], \"nextOffset\": 1050, \"previousOffset\": 999, \"totalItemCount\": 13572}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies.json index 7001c38..23441f4 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "70" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:06 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:55 GMT" + "Content-Length": [ + "70" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,33 +102,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:06 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "3355" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:55 GMT" ] }, "body": { @@ -171,33 +168,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:06 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "3355" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:55 GMT" ] }, "body": { @@ -237,34 +234,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:06 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ "1848" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:56 GMT" ] }, "body": { - "string": "{\"trophySetVersion\": \"01.07\", \"hasTrophyGroups\": true, \"lastUpdatedDateTime\": \"2020-11-28T22:55:19Z\", \"trophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2020-11-22T17:51:30Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.0\"}, {\"trophyId\": 1, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-14T06:13:04Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"83.9\"}, {\"trophyId\": 2, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-14T06:44:08Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"48.7\"}, {\"trophyId\": 3, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-15T11:12:08Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"35.1\"}, {\"trophyId\": 4, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-15T02:30:34Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"42.8\"}, {\"trophyId\": 5, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-12-17T17:18:13Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"22.7\"}, {\"trophyId\": 6, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-05-28T22:46:16Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"10.8\"}, {\"trophyId\": 7, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-06-02T13:05:58Z\", \"trophyType\": \"silver\", \"trophyRare\": 0, \"trophyEarnedRate\": \"4.5\"}, {\"trophyId\": 8, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-02-16T16:05:42Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.5\"}, {\"trophyId\": 9, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-05-19T18:01:53Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.0\"}], \"rarestTrophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2020-11-22T17:51:30Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.0\"}], \"nextOffset\": 10, \"totalItemCount\": 51}" + "string": "{\"trophySetVersion\": \"01.07\", \"hasTrophyGroups\": true, \"lastUpdatedDateTime\": \"2020-11-28T22:55:19Z\", \"trophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2020-11-22T17:51:30Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.0\"}, {\"trophyId\": 1, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-14T06:13:04Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"83.5\"}, {\"trophyId\": 2, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-14T06:44:08Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"47.6\"}, {\"trophyId\": 3, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-15T11:12:08Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"34.3\"}, {\"trophyId\": 4, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-11-15T02:30:34Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"41.8\"}, {\"trophyId\": 5, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2018-12-17T17:18:13Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"22.2\"}, {\"trophyId\": 6, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-05-28T22:46:16Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"10.7\"}, {\"trophyId\": 7, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-06-02T13:05:58Z\", \"trophyType\": \"silver\", \"trophyRare\": 0, \"trophyEarnedRate\": \"4.6\"}, {\"trophyId\": 8, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-02-16T16:05:42Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.4\"}, {\"trophyId\": 9, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2019-05-19T18:01:53Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.0\"}], \"rarestTrophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2020-11-22T17:51:30Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.0\"}], \"nextOffset\": 10, \"totalItemCount\": 51}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_pagination_test.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_pagination_test.json index 320dd08..37476da 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_pagination_test.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_pagination_test.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "69" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:07 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:56 GMT" + "Content-Length": [ + "69" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,33 +102,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:07 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "11002" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:57 GMT" ] }, "body": { @@ -171,33 +168,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:08 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "11002" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:57 GMT" ] }, "body": { @@ -237,34 +234,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:08 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ "5363" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:58 GMT" ] }, "body": { - "string": "{\"trophySetVersion\": \"01.02\", \"hasTrophyGroups\": true, \"lastUpdatedDateTime\": \"2017-12-19T09:15:37Z\", \"trophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:28:44Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.5\"}, {\"trophyId\": 1, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2016-04-27T11:41:11Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"76.7\"}, {\"trophyId\": 2, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-03T01:36:40Z\", \"trophyType\": \"gold\", \"trophyRare\": 1, \"trophyEarnedRate\": \"6.8\"}, {\"trophyId\": 3, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T16:55:04Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"69.2\"}, {\"trophyId\": 4, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T17:11:48Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"62.2\"}, {\"trophyId\": 5, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T17:37:41Z\", \"trophyType\": \"silver\", \"trophyRare\": 3, \"trophyEarnedRate\": \"55.3\"}, {\"trophyId\": 6, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T17:48:48Z\", \"trophyType\": \"silver\", \"trophyRare\": 3, \"trophyEarnedRate\": \"53.2\"}, {\"trophyId\": 7, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T18:03:13Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"45.8\"}, {\"trophyId\": 8, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T11:51:43Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"23.2\"}, {\"trophyId\": 9, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:19:28Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.6\"}, {\"trophyId\": 10, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T12:28:20Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"14.4\"}, {\"trophyId\": 11, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:37:15Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"20.5\"}, {\"trophyId\": 12, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:43:06Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"20.3\"}, {\"trophyId\": 13, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:54:45Z\", \"trophyType\": \"gold\", \"trophyRare\": 2, \"trophyEarnedRate\": \"19.6\"}, {\"trophyId\": 14, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T14:19:12Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"18.9\"}, {\"trophyId\": 15, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T14:28:29Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"18.5\"}, {\"trophyId\": 16, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T10:19:43Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"17.5\"}, {\"trophyId\": 17, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T10:39:33Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.8\"}, {\"trophyId\": 18, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T10:56:53Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.5\"}, {\"trophyId\": 19, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T11:11:17Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.1\"}, {\"trophyId\": 20, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T11:18:04Z\", \"trophyType\": \"gold\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.6\"}, {\"trophyId\": 21, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-07T14:16:58Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"17.2\"}, {\"trophyId\": 22, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-07T14:40:42Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.0\"}, {\"trophyId\": 23, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-07T14:49:14Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"15.8\"}, {\"trophyId\": 24, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T12:59:41Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.2\"}, {\"trophyId\": 25, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T13:07:46Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.1\"}, {\"trophyId\": 26, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T13:22:40Z\", \"trophyType\": \"gold\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.9\"}, {\"trophyId\": 27, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T13:50:40Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.7\"}, {\"trophyId\": 28, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T14:10:14Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.3\"}, {\"trophyId\": 29, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T14:35:18Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.9\"}, {\"trophyId\": 30, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T14:44:26Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.8\"}, {\"trophyId\": 31, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:03:32Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.5\"}, {\"trophyId\": 32, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:28:44Z\", \"trophyType\": \"gold\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.2\"}], \"rarestTrophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:28:44Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.5\"}], \"totalItemCount\": 33}" + "string": "{\"trophySetVersion\": \"01.02\", \"hasTrophyGroups\": true, \"lastUpdatedDateTime\": \"2017-12-19T09:15:37Z\", \"trophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:28:44Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.6\"}, {\"trophyId\": 1, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2016-04-27T11:41:11Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"76.6\"}, {\"trophyId\": 2, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-03T01:36:40Z\", \"trophyType\": \"gold\", \"trophyRare\": 1, \"trophyEarnedRate\": \"6.9\"}, {\"trophyId\": 3, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T16:55:04Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"69.1\"}, {\"trophyId\": 4, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T17:11:48Z\", \"trophyType\": \"bronze\", \"trophyRare\": 3, \"trophyEarnedRate\": \"62.2\"}, {\"trophyId\": 5, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T17:37:41Z\", \"trophyType\": \"silver\", \"trophyRare\": 3, \"trophyEarnedRate\": \"55.2\"}, {\"trophyId\": 6, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T17:48:48Z\", \"trophyType\": \"silver\", \"trophyRare\": 3, \"trophyEarnedRate\": \"53.1\"}, {\"trophyId\": 7, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-02T18:03:13Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"45.8\"}, {\"trophyId\": 8, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T11:51:43Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"23.3\"}, {\"trophyId\": 9, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:19:28Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.7\"}, {\"trophyId\": 10, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T12:28:20Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"14.5\"}, {\"trophyId\": 11, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:37:15Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"20.6\"}, {\"trophyId\": 12, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:43:06Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"20.4\"}, {\"trophyId\": 13, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T13:54:45Z\", \"trophyType\": \"gold\", \"trophyRare\": 2, \"trophyEarnedRate\": \"19.6\"}, {\"trophyId\": 14, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T14:19:12Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"18.9\"}, {\"trophyId\": 15, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-05T14:28:29Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"18.6\"}, {\"trophyId\": 16, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T10:19:43Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"17.6\"}, {\"trophyId\": 17, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T10:39:33Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.9\"}, {\"trophyId\": 18, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T10:56:53Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.5\"}, {\"trophyId\": 19, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T11:11:17Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.2\"}, {\"trophyId\": 20, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-06T11:18:04Z\", \"trophyType\": \"gold\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.7\"}, {\"trophyId\": 21, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-07T14:16:58Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"17.2\"}, {\"trophyId\": 22, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-07T14:40:42Z\", \"trophyType\": \"bronze\", \"trophyRare\": 2, \"trophyEarnedRate\": \"16.1\"}, {\"trophyId\": 23, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-07T14:49:14Z\", \"trophyType\": \"silver\", \"trophyRare\": 2, \"trophyEarnedRate\": \"15.9\"}, {\"trophyId\": 24, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T12:59:41Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.3\"}, {\"trophyId\": 25, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T13:07:46Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.2\"}, {\"trophyId\": 26, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T13:22:40Z\", \"trophyType\": \"gold\", \"trophyRare\": 1, \"trophyEarnedRate\": \"13.0\"}, {\"trophyId\": 27, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T13:50:40Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.8\"}, {\"trophyId\": 28, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T14:10:14Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.3\"}, {\"trophyId\": 29, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T14:35:18Z\", \"trophyType\": \"bronze\", \"trophyRare\": 1, \"trophyEarnedRate\": \"12.0\"}, {\"trophyId\": 30, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T14:44:26Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.8\"}, {\"trophyId\": 31, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:03:32Z\", \"trophyType\": \"silver\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.5\"}, {\"trophyId\": 32, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:28:44Z\", \"trophyType\": \"gold\", \"trophyRare\": 1, \"trophyEarnedRate\": \"11.3\"}], \"rarestTrophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"earned\": true, \"earnedDateTime\": \"2017-12-08T15:28:44Z\", \"trophyType\": \"platinum\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.6\"}], \"totalItemCount\": 33}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_with_progress_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_with_progress_forbidden.json index 4583783..a011abf 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_with_progress_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophies_with_progress_forbidden.json @@ -33,33 +33,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:07 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "3355" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:56 GMT" ] }, "body": { @@ -99,31 +99,31 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:07 GMT" ], "Server": [ "Apache" ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", "Content-Length": [ "123" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:56 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"266d8de1-2c34-11ef-8767-6d664564e453\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"fbac2f57-d093-11ef-af98-a109f87b08e1\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary.json index 2aea804..455dd5f 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "70" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:08 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:58 GMT" + "Content-Length": [ + "70" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,33 +102,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:08 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "2045" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:58 GMT" ] }, "body": { @@ -171,33 +168,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:08 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "2045" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:58 GMT" ] }, "body": { @@ -237,30 +234,30 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:09 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ "787" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:59 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary_forbidden.json index 314a48f..d97601c 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_groups_summary_forbidden.json @@ -33,33 +33,33 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Cache-Control": [ + "max-age=300" + ], + "Date": [ + "Sun, 12 Jan 2025 03:19:09 GMT" ], "Server": [ "Apache" ], - "Cache-Control": [ - "max-age=300" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Vary": [ + "Accept-Language" ], "Content-Length": [ "2045" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Vary": [ - "Accept-Language" - ], - "Date": [ - "Sun, 16 Jun 2024 22:59:59 GMT" ] }, "body": { @@ -99,31 +99,31 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:09 GMT" ], "Server": [ "Apache" ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", "Content-Length": [ "123" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:59 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"28477de4-2c34-11ef-a10f-2bd3ac1ff466\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"fd013811-d093-11ef-a91e-59da3e9a57b9\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary.json index e6bb406..b408f3d 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "77" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:18:43 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:32 GMT" + "Content-Length": [ + "77" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,30 +102,30 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:43 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ "203" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:32 GMT" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary_forbidden.json index 30d4fba..889db97 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_summary_forbidden.json @@ -33,31 +33,31 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:43 GMT" ], "Server": [ "Apache" ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", "Content-Length": [ "123" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:32 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"180b7465-2c34-11ef-b81e-4d56257de05b\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"ed93effa-d093-11ef-8af1-f30789d66ef7\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles.json index 59df892..b907463 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "69" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:18:43 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:32 GMT" + "Content-Length": [ + "69" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,34 +102,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:46 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27904" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28865" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:34 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30068_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Moving Out 2\", \"trophyTitleDetail\": \"Moving Out 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30068_00_0091887B2FEF885559085A64D7378ABEFDE5E8C119/B03B81760460633DF1450920EB7CBF9716D52156.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 11, \"gold\": 6, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-31T12:31:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30067_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moving Out 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30067_00/89085106-3159-4d46-95cb-2dabdcae5bec.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 11, \"gold\": 6, \"platinum\": 1}, \"progress\": 17, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-30T14:22:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23378_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel's Spider-Man 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23378_00/2ef8f325-47bd-4e1d-b731-cb8647b06a70.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 22, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-22T02:20:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34032_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"SONIC SUPERSTARS\", \"trophyTitleDetail\": \"Trophy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34032_00_006648813555B1A62832FFC4E4F29B6D4ADA690D79/DD498B5B4C4283468802A23C2538FFA55B93411E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 22, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 5, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-17T04:52:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23200_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Crew Motorfest\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23200_00/b22cc4a4-3cca-4215-adf4-9853a4599546.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-16T12:37:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39978_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39978_00_001D43E396EFA160F85E4E3B559436E012ED1F97D5/E80D4CDCF638291714EDA28C69E2F6A817276041.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:58:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39979_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39979_00_003FC072250EABA1695D37293C41686E91C90576E5/A1D99DAB9D4EAE6CEADA87C1C2C2D1897F06C966.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:54:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39976_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39976_00_003CDB72A5B6242F5860DB9B38F896A42886439CCA/CAB7672037C102E6DDCC143EF1A538B37AB0097B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:48:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39977_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39977_00_00FDFC6C0D1B8D66810F27DECB38B74CA00E85B6F1/F1C480DF9AC36012E3F25B35C3CA9D5397C65FEC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:41:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38384_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"BlackJack\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38384_00/7e0fc77c-03af-45b6-ab46-d2e2897c0094.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:22:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38383_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"BlackJack\\n\", \"trophyTitleDetail\": \"BlackJack trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38383_00_00753D559820DF0FBD3CC6C295553CA26D958EC4DB/30271F58A60F904F355A44AD5B491A7EE9283E34.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:07:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37604_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37604_00/f7a5a849-89da-4286-b1af-e83639ba74c6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T12:14:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37605_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37605_00/3456b670-ef0c-4cd8-afc5-28af8dca3843.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T11:55:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37603_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleDetail\": \"Garlic\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37603_00_00C7926C7293538A85B6D175ED43E0031B69169F6C/1DB497544C475E8319D750357D400A66DA85E967.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T11:22:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37606_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleDetail\": \"Garlic\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37606_00_0063FA2A7B9543785EE18FDF52B499D39B56A60E06/DE2346176EAF20AA9120127F81FB6B57D32989C8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T10:59:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36484_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36484_00/4e493a59-f42e-4d42-9daf-12c30af64d1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:41:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36485_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36485_00/e2563cfa-c71b-4e15-966d-8f67247c621c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:40:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36483_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleDetail\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36483_00_00E5A87AA553AADC950F1F3819577D1CD2DBDC9C0D/70340BE99677615B4FE431E841F7E5D8966D7C19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:39:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36486_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleDetail\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36486_00_00487662501E39E8943976D972E1FF47091FC5DBCF/83929921A2B0AD37FFFC068C4DE16145DA332AF5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:38:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Light in the Darkness\", \"trophyTitleDetail\": \"The Light in the Darkness trophy set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40245_00_00C6797BB3BE1842616DAF664CAE9EDEB93281E62F/F943C1DB1FA5B5E8B172C2EB4EC1F846A0F9C7B4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T07:09:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37885_00/875ee300-d52f-48e5-b18b-2a96ac97466d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T05:07:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39052_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39052_00/9d0ffec0-f323-4881-9c97-e7e1547b4bea.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T04:49:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39051_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39051_00/4f38945c-f547-46a0-9923-50118d282366.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T02:44:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39049_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39049_00/da20143a-7608-4f8a-8c44-d8326aa5c338.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T02:26:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37884_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37884_00_00FF173E9DEEF5C0273885EEF4052E062AC95A41C6/DA1F93DDFD94CE8FF72650FE74D05008B7E1C776.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T02:06:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39042_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39042_00_00263C1CB13231E72D81B1241143EA8D1174D5A7D0/51884BB4E22D10A6C5D119DF0F4FE49E5AE8EBFB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T01:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39041_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39041_00_008EFAAF99F3D761D5DBD3F37B558B809727D6EE4E/494E1CC78290F6E834F2D1EE0E16A47FDD26CF48.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T01:18:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39043_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39043_00_00595C609C73BF01A777B200A0B8462FE255568D75/F5C47BE8CDA78B1DE4204A4C7208B869BD584B7F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-04T07:14:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40074_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wire Lips\", \"trophyTitleDetail\": \"Trophy set for Wire Lips\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40074_00_00A994D06BFC90A921428506C0168B26C37A528984/31E2F843BA3F3E6D5CE820798525833C53C79482.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-04T06:24:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40073_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wire Lips\", \"trophyTitleDetail\": \"Trophy set for Wire Lips\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40073_00_0031715B7F66F0AC1CA8726EB1D7317AA371B24077/338085D1865EA5BF19D5112CC8E56CBA7B09B34E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-04T05:39:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40393_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Age of Sokoban\", \"trophyTitleDetail\": \"Achievements\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40393_00_00B209146DF7DF7FFEBFBCD5CF41232558213428C2/A311C61004355D17331322F850B69DC4851A1D4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-03T10:43:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40392_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Age of Sokoban\", \"trophyTitleDetail\": \"Achievements\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40392_00_00C11D19EFD890493F5DFECC77DC01315BBEC75DE4/79FBE66910E7A4D5DFD4E46F85BBC17A9A7E91E5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-03T10:30:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40055_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40055_00/a61ebec2-050c-41a8-9b86-6667e04a4d41.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T23:29:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40054_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40054_00/66a42f2e-8881-4a93-be32-a5f178c64377.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T23:00:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40053_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleDetail\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40053_00_0025DA17AE97EC937FCA438054CB1BE5E8B2855751/C9E254971E4C9A2391ACE1B342CA88657D3A3EE9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T11:44:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40056_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleDetail\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40056_00_00682D080F9B3AD73B431A755A4CC45C0629785FC6/DFCB351AE226ED5025F24F9660F5DBFEE5B60AB9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T11:13:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37547_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37547_00/c561e5c6-daf0-42bb-a3cd-a9fc642ced4a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:40:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37549_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37549_00/598ffd97-4fe8-49ba-9338-b5145d1688f0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:36:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleDetail\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37546_00_001CECC8123FD2B26422868634C9F9C596A9F6BEF5/E778614A6AB1DC8FE893BB0D5A464D3708B2334A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:31:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37548_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleDetail\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37548_00_00C165E4CABF6C82DB5BC979CBAE1055EBBC816F8D/527ED56C8A8828EEA3A022C8BE180F23AD5CFD17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:28:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40134_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40134_00/dc9ddd17-3026-4e46-8b1e-427a7d8d29ff.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:35:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40132_00/f0895ff8-44fc-4fb3-a48c-5de2213f0ffb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:32:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40133_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40133_00/c57e9f2d-b81d-40ae-aae7-d1694974bce4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:28:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40131_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleDetail\": \"Trophy set of Zombiezz.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40131_00_006875F4DA3E72FAFA8EB0283578EBF3F939A93252/4AF915F0F7652D1E082127F4A560CB0BB72FD6C8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:25:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40496_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleDetail\": \"Trophy set of Zombiezz.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40496_00_00AE399F6759D97D24728B4BEBDBDC55C9F587C9CB/C382D1377A9FFED5EB193186837D3E0E11957198.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:21:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40130_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleDetail\": \"Trophy set of Zombiezz.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40130_00_00FD24F0BE1F46180290EB020A1A0A834801B5381B/550C9D3D33DDF2F14CA4FF56B583ED542BF8FEA0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:15:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35618_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35618_00/1063e154-d9d2-4b92-990d-43136b4a2efd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:05:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35617_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35617_00/49b9e3f1-fa4f-4a23-a167-03396fa72c9c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:01:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35619_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35619_00_00FCF5071D63392EEB9015DF4B1E43A8845408AC7F/1C60D00BCDD3D91DC835CEA6B57BB07530D1CB78.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T11:57:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35616_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35616_00_0095C679DC273A9108E52E6BC1F2E888019F92CCF3/162C55228015C7212DCF6C0F6F7D0982BCA4942C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T11:53:55Z\"}], \"nextOffset\": 50, \"totalItemCount\": 18514}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR42368_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"VALORANT\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR42368_00/cc0ddad1-25a2-433e-9c65-2903b268ac4e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 7, \"gold\": 6, \"platinum\": 0}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-09-10T10:01:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30068_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Moving Out 2\", \"trophyTitleDetail\": \"Moving Out 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30068_00_0091887B2FEF885559085A64D7378ABEFDE5E8C119/B03B81760460633DF1450920EB7CBF9716D52156.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 11, \"gold\": 6, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-31T12:31:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30067_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moving Out 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30067_00/89085106-3159-4d46-95cb-2dabdcae5bec.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 11, \"gold\": 6, \"platinum\": 1}, \"progress\": 17, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-30T14:22:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23378_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel's Spider-Man 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23378_00/2ef8f325-47bd-4e1d-b731-cb8647b06a70.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 22, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-22T02:20:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34032_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"SONIC SUPERSTARS\", \"trophyTitleDetail\": \"Trophy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34032_00_006648813555B1A62832FFC4E4F29B6D4ADA690D79/DD498B5B4C4283468802A23C2538FFA55B93411E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 22, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 5, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-17T04:52:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23200_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Crew Motorfest\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23200_00/b22cc4a4-3cca-4215-adf4-9853a4599546.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-16T12:37:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39978_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39978_00_001D43E396EFA160F85E4E3B559436E012ED1F97D5/E80D4CDCF638291714EDA28C69E2F6A817276041.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:58:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39979_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39979_00_003FC072250EABA1695D37293C41686E91C90576E5/A1D99DAB9D4EAE6CEADA87C1C2C2D1897F06C966.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:54:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39976_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39976_00_003CDB72A5B6242F5860DB9B38F896A42886439CCA/CAB7672037C102E6DDCC143EF1A538B37AB0097B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:48:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39977_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rally Racing: Cars & Drift Mania\", \"trophyTitleDetail\": \"Trophy set for Rally Racing: Cars & Drift Mania\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39977_00_00FDFC6C0D1B8D66810F27DECB38B74CA00E85B6F1/F1C480DF9AC36012E3F25B35C3CA9D5397C65FEC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:41:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38384_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"BlackJack\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38384_00/7e0fc77c-03af-45b6-ab46-d2e2897c0094.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:22:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38383_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"BlackJack\\n\", \"trophyTitleDetail\": \"BlackJack trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38383_00_00753D559820DF0FBD3CC6C295553CA26D958EC4DB/30271F58A60F904F355A44AD5B491A7EE9283E34.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T13:07:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37604_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37604_00/f7a5a849-89da-4286-b1af-e83639ba74c6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T12:14:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37605_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37605_00/3456b670-ef0c-4cd8-afc5-28af8dca3843.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T11:55:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37603_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleDetail\": \"Garlic\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37603_00_00C7926C7293538A85B6D175ED43E0031B69169F6C/1DB497544C475E8319D750357D400A66DA85E967.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T11:22:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37606_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Garlic\", \"trophyTitleDetail\": \"Garlic\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37606_00_0063FA2A7B9543785EE18FDF52B499D39B56A60E06/DE2346176EAF20AA9120127F81FB6B57D32989C8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T10:59:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36484_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36484_00/4e493a59-f42e-4d42-9daf-12c30af64d1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:41:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36485_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36485_00/e2563cfa-c71b-4e15-966d-8f67247c621c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:40:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36483_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleDetail\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36483_00_00E5A87AA553AADC950F1F3819577D1CD2DBDC9C0D/70340BE99677615B4FE431E841F7E5D8966D7C19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:39:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36486_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Returns\", \"trophyTitleDetail\": \"Alien Returns\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36486_00_00487662501E39E8943976D972E1FF47091FC5DBCF/83929921A2B0AD37FFFC068C4DE16145DA332AF5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T08:38:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Light in the Darkness\", \"trophyTitleDetail\": \"The Light in the Darkness trophy set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40245_00_00C6797BB3BE1842616DAF664CAE9EDEB93281E62F/F943C1DB1FA5B5E8B172C2EB4EC1F846A0F9C7B4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T07:09:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37885_00/875ee300-d52f-48e5-b18b-2a96ac97466d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T05:07:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39052_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39052_00/9d0ffec0-f323-4881-9c97-e7e1547b4bea.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T04:49:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39051_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39051_00/4f38945c-f547-46a0-9923-50118d282366.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T02:44:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39049_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39049_00/da20143a-7608-4f8a-8c44-d8326aa5c338.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T02:26:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37884_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37884_00_00FF173E9DEEF5C0273885EEF4052E062AC95A41C6/DA1F93DDFD94CE8FF72650FE74D05008B7E1C776.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T02:06:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39042_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39042_00_00263C1CB13231E72D81B1241143EA8D1174D5A7D0/51884BB4E22D10A6C5D119DF0F4FE49E5AE8EBFB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T01:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39041_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39041_00_008EFAAF99F3D761D5DBD3F37B558B809727D6EE4E/494E1CC78290F6E834F2D1EE0E16A47FDD26CF48.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-05T01:18:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39043_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sokolab\", \"trophyTitleDetail\": \"Sokolab Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39043_00_00595C609C73BF01A777B200A0B8462FE255568D75/F5C47BE8CDA78B1DE4204A4C7208B869BD584B7F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-04T07:14:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40074_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wire Lips\", \"trophyTitleDetail\": \"Trophy set for Wire Lips\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40074_00_00A994D06BFC90A921428506C0168B26C37A528984/31E2F843BA3F3E6D5CE820798525833C53C79482.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-04T06:24:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40073_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wire Lips\", \"trophyTitleDetail\": \"Trophy set for Wire Lips\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40073_00_0031715B7F66F0AC1CA8726EB1D7317AA371B24077/338085D1865EA5BF19D5112CC8E56CBA7B09B34E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-04T05:39:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40393_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Age of Sokoban\", \"trophyTitleDetail\": \"Achievements\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40393_00_00B209146DF7DF7FFEBFBCD5CF41232558213428C2/A311C61004355D17331322F850B69DC4851A1D4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-03T10:43:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40392_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Age of Sokoban\", \"trophyTitleDetail\": \"Achievements\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40392_00_00C11D19EFD890493F5DFECC77DC01315BBEC75DE4/79FBE66910E7A4D5DFD4E46F85BBC17A9A7E91E5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-03T10:30:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40055_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40055_00/a61ebec2-050c-41a8-9b86-6667e04a4d41.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T23:29:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40054_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40054_00/66a42f2e-8881-4a93-be32-a5f178c64377.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T23:00:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40053_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleDetail\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40053_00_0025DA17AE97EC937FCA438054CB1BE5E8B2855751/C9E254971E4C9A2391ACE1B342CA88657D3A3EE9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T11:44:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40056_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Love Kuesuto\", \"trophyTitleDetail\": \"Love Kuesuto\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40056_00_00682D080F9B3AD73B431A755A4CC45C0629785FC6/DFCB351AE226ED5025F24F9660F5DBFEE5B60AB9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T11:13:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37547_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37547_00/c561e5c6-daf0-42bb-a3cd-a9fc642ced4a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:40:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37549_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37549_00/598ffd97-4fe8-49ba-9338-b5145d1688f0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:36:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleDetail\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37546_00_001CECC8123FD2B26422868634C9F9C596A9F6BEF5/E778614A6AB1DC8FE893BB0D5A464D3708B2334A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:31:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37548_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura MMO Extra\", \"trophyTitleDetail\": \"Sakura MMO Extra\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37548_00_00C165E4CABF6C82DB5BC979CBAE1055EBBC816F8D/527ED56C8A8828EEA3A022C8BE180F23AD5CFD17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-02T10:28:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40134_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40134_00/dc9ddd17-3026-4e46-8b1e-427a7d8d29ff.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:35:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40132_00/f0895ff8-44fc-4fb3-a48c-5de2213f0ffb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:32:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40133_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40133_00/c57e9f2d-b81d-40ae-aae7-d1694974bce4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:28:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40131_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleDetail\": \"Trophy set of Zombiezz.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40131_00_006875F4DA3E72FAFA8EB0283578EBF3F939A93252/4AF915F0F7652D1E082127F4A560CB0BB72FD6C8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:25:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40496_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleDetail\": \"Trophy set of Zombiezz.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40496_00_00AE399F6759D97D24728B4BEBDBDC55C9F587C9CB/C382D1377A9FFED5EB193186837D3E0E11957198.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:21:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40130_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Zombiezz\", \"trophyTitleDetail\": \"Trophy set of Zombiezz.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40130_00_00FD24F0BE1F46180290EB020A1A0A834801B5381B/550C9D3D33DDF2F14CA4FF56B583ED542BF8FEA0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:15:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35618_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35618_00/1063e154-d9d2-4b92-990d-43136b4a2efd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:05:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35617_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35617_00/49b9e3f1-fa4f-4a23-a167-03396fa72c9c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T12:01:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35619_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35619_00_00FCF5071D63392EEB9015DF4B1E43A8845408AC7F/1C60D00BCDD3D91DC835CEA6B57BB07530D1CB78.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T11:57:42Z\"}], \"nextOffset\": 50, \"totalItemCount\": 18515}" } } }, @@ -168,34 +165,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:47 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27971" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29104" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:36 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21354_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"We Were Here Together\", \"trophyTitleDetail\": \"We Were Here Together\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21354_00_00928B3B51E70730B11169A8F085EC8F2F8838D852/478F62E396AB3640F31911C68CA0D3F855B03E5F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T11:41:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40250_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40250_00/83866a16-8d4f-4c41-b552-68a369f680c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T13:12:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40249_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40249_00/373c9cc9-8031-4235-9473-6a5f29fdc67d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T12:56:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40251_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40251_00/3a147b84-b7cf-4f4d-8356-ccaafde1eee4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T12:40:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40252_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40252_00/9862f89b-b16d-434e-8dd4-9dfec0a2e69c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T12:23:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38342_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38342_00/64a2453e-9173-448f-97fc-d134dfca9806.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:59:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39044_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39044_00/7d447200-0a1a-4b24-8060-2224ddc6d4e8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:50:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39045_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39045_00/c6997122-5f93-4c4a-b1c9-3eeb8f3cfea5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:42:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39046_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39046_00/4ca02a72-71ea-4639-9b88-64c5a2a2fb29.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:34:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39271_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39271_00_00D04C7012BC3A1E07AFCB8857FBAFA4345F662779/F2672747D542D22931425A162DF69288CD58142F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:25:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39273_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39273_00_00FF207F431AB2B1C4494F29AE637648530BA118EC/C0646F77F80E1694C7D24FC49B1C0B865095D801.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:16:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39272_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39272_00_00698251F26B2B459AADDCA9919C8D99F1C633A06E/477E70876FC800E23E685FA0AD0589C27FBC4B0A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:08:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38346_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38346_00_00F92B89EB73682F93D850D025AC53B83B81304FFC/E30DCFEF8EB332A3886B2B198DFBF29F669A7AA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T10:58:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38434_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38434_00/e4d5f9c7-bf67-480d-acf0-5222ce71b6f7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 13, \"gold\": 4, \"platinum\": 1}, \"progress\": 25, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T10:30:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38433_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai\", \"trophyTitleDetail\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38433_00_00793AAFFE9631147AD482350FDC77812425571A9D/2E40C1F79B286F9855D6DAD2B97E3F759B9C41BF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 13, \"gold\": 4, \"platinum\": 1}, \"progress\": 26, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T10:26:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37276_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37276_00/96051196-a977-48ac-b39f-e685a4ff89ad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:30:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37275_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37275_00/ae17b2b2-5d66-42b6-8054-890930658663.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:23:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37273_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleDetail\": \"Betomis\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37273_00_0035B519BBF64B0C106936ADC5F450741DDCEE3DF0/2D0614BCDEA0215BC5CC100E5E3B555D5284DD40.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:15:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37274_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleDetail\": \"Betomis\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37274_00_00B31494766202A43EEC3DE5DA9F886D2DD136BDEB/46D28E346FF846AD9BF8EC48C601C758DFB7F57F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:04:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39817_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39817_00_00FCB68C3819C31EA3833FC26D07B26288F631B28E/F52045D6D401494B9736DB520AC99F5B299E10C8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:48:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39819_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39819_00_001F113921D1AFF5E07692DDABA01C5F7D6FB76EFC/889216B6D8243C7A77BD189D100ACA910BCD6753.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:38:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39820_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39820_00_00B5F6C0BC9B580FD0FA3BB238EB141D3A00620E43/AD7363912174FC1A7A3F389100D0B0BD8C287D7F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:35:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39818_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39818_00_008D0FC723A9E8731F0F2E0F9D10AC00D31CA0BC0A/B514C9DCF622EE912229D92B6615B9C4B5C3BAA3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:30:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40111_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40111_00/e5d9af5c-3f6f-4d61-b5cb-f861d8500e4c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:28:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40112_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40112_00/47fa9f68-ab4d-4f79-90f0-e6a04dc80939.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:28:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40109_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40109_00/ca339f5c-db64-44ac-abb8-d1edfc4263d4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:28:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40110_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40110_00/d8dfa2d4-9b76-4952-b6af-688562fb6cd0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:27:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40107_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40107_00_006ABF12F4BE86471862E90E5665C1E1B8C3C7E99C/BD5121CA65F43CA11D3903460340B2D97107C2AD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:25:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40108_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40108_00_003C37740B726493A8050C3CFCAA3FFEC74D7D0C9B/386CC6DA164B6AD985FD74119F70A5A511C0D778.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:04:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40105_00_002C521EE97FE7194F035A6395A7B8165AE30CD823/3032EAFB4533C775FA35EF255087B2E11515DE5B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T12:44:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40106_00_001E938492B28CA8C63A3D7F36204226FBEBEDB7A8/4357511C091DCB2899D2940BF8AC6867FCD3A5BA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T12:22:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36498_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"We Were Here Expeditions: The FriendShip\", \"trophyTitleDetail\": \"We Were Here Expeditions: The FriendShip\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36498_00_0082F3164ECBA2128B7A931C6FAAC3F6AA54159FEE/7F58456D4B3965B0259825F60B06F496DD5734B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T14:05:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26399_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26399_00/102d55ce-35e7-4132-ad4a-7fc42b4c952e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T01:16:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26400_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26400_00/fecb20a7-a908-4881-9c67-92f2717a2ba7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T00:49:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26401_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26401_00/5351c132-126e-4d7c-ad4b-d4bf50a9e19a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T00:03:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26397_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleDetail\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26397_00_006BF906D443B2DC2DFE0B60A39445CEFE6478F0A5/0A5F07943C6C095D1924C263C9CC989E6AA88C2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T23:36:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26398_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleDetail\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26398_00_00E764D93D4294D2CADA752FB1653D8A384563D129/5A815EE7A8F5D32A87DF01B2E39FC421886F0999.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T23:07:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleDetail\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26396_00_0001898D6DD708606C432121564914DE8147CC9AA6/A15FC3D3BFBCEFF3E35B8D6B341AF580D1552A17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T05:10:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30856_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"EchoBlade\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30856_00/3b320522-063f-4f16-99a6-1d4791427a16.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T04:18:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30855_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"EchoBlade\", \"trophyTitleDetail\": \"EchoBlade\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30855_00_00BD2BDEA9575045A0C95F3A14F033DED73E63FC2F/441AB9FE6E8FC0C4F925151F86E98C6A245B1DAF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T04:04:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30854_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"EchoBlade\", \"trophyTitleDetail\": \"EchoBlade\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30854_00_004573149C502FE49378EE92C29480BE3220F179A7/F02FBA2E70052CAD8180751EAF52474C0C24F94B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T03:19:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40169_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40169_00/cdc3e754-8cec-47b5-b793-edc3c59a3f6a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T01:56:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40168_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40168_00/91c72e4b-b610-4541-ab6f-da4f36a0027f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T01:26:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40170_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40170_00/7a2f4979-5c07-414c-86a2-777ab5225d6f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T00:56:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40167_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40167_00/25f5d102-2677-4d39-8e4f-851ee0ab6166.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T00:14:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38580_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38580_00/741ddc7a-e7df-40be-9ef7-a3658b5f4486.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T14:05:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38579_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38579_00/59b5972f-9581-427a-a5ee-20ddb4058bde.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T13:44:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38578_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleDetail\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38578_00_000155A93DC483A751E3C325AE373BC15DD8E4699F/978EC4B14C56ECF4EDE5E0EE9BA71ACF32AF5C3A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T13:18:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38577_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleDetail\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38577_00_0041FF3E24B97B50AEB7380DE104843BBB51B38CB2/697369AFA4BA2C5066696E27E31C45803D2422DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T12:41:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39283_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Earthshine\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39283_00/2f7ce3f6-5e38-485c-a8d4-9ad668238e41.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T11:53:22Z\"}], \"nextOffset\": 100, \"previousOffset\": 49, \"totalItemCount\": 18514}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35616_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35616_00_0095C679DC273A9108E52E6BC1F2E888019F92CCF3/162C55228015C7212DCF6C0F6F7D0982BCA4942C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T11:53:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21354_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"We Were Here Together\", \"trophyTitleDetail\": \"We Were Here Together\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21354_00_00928B3B51E70730B11169A8F085EC8F2F8838D852/478F62E396AB3640F31911C68CA0D3F855B03E5F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T11:41:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40250_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40250_00/83866a16-8d4f-4c41-b552-68a369f680c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T13:12:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40249_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40249_00/373c9cc9-8031-4235-9473-6a5f29fdc67d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T12:56:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40251_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40251_00/3a147b84-b7cf-4f4d-8356-ccaafde1eee4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T12:40:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40252_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Broken Pipe\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40252_00/9862f89b-b16d-434e-8dd4-9dfec0a2e69c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T12:23:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38342_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38342_00/64a2453e-9173-448f-97fc-d134dfca9806.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:59:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39044_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39044_00/7d447200-0a1a-4b24-8060-2224ddc6d4e8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:50:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39045_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39045_00/c6997122-5f93-4c4a-b1c9-3eeb8f3cfea5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:42:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39046_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi the Cat: Mimi's Scratcher\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39046_00/4ca02a72-71ea-4639-9b88-64c5a2a2fb29.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:34:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39271_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39271_00_00D04C7012BC3A1E07AFCB8857FBAFA4345F662779/F2672747D542D22931425A162DF69288CD58142F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:25:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39273_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39273_00_00FF207F431AB2B1C4494F29AE637648530BA118EC/C0646F77F80E1694C7D24FC49B1C0B865095D801.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:16:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39272_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39272_00_00698251F26B2B459AADDCA9919C8D99F1C633A06E/477E70876FC800E23E685FA0AD0589C27FBC4B0A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T11:08:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38346_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mimi The Cat\", \"trophyTitleDetail\": \"Mimi The Cat Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38346_00_00F92B89EB73682F93D850D025AC53B83B81304FFC/E30DCFEF8EB332A3886B2B198DFBF29F669A7AA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 8, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T10:58:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38434_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38434_00/e4d5f9c7-bf67-480d-acf0-5222ce71b6f7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 13, \"gold\": 4, \"platinum\": 1}, \"progress\": 25, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T10:30:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38433_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai\", \"trophyTitleDetail\": \"Infinity Strash: DRAGON QUEST The Adventure of Dai Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38433_00_00793AAFFE9631147AD482350FDC77812425571A9D/2E40C1F79B286F9855D6DAD2B97E3F759B9C41BF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 13, \"gold\": 4, \"platinum\": 1}, \"progress\": 26, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T10:26:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37276_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37276_00/96051196-a977-48ac-b39f-e685a4ff89ad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:30:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37275_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37275_00/ae17b2b2-5d66-42b6-8054-890930658663.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:23:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37273_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleDetail\": \"Betomis\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37273_00_0035B519BBF64B0C106936ADC5F450741DDCEE3DF0/2D0614BCDEA0215BC5CC100E5E3B555D5284DD40.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:15:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37274_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Betomis\", \"trophyTitleDetail\": \"Betomis\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37274_00_00B31494766202A43EEC3DE5DA9F886D2DD136BDEB/46D28E346FF846AD9BF8EC48C601C758DFB7F57F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-28T00:04:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39817_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39817_00_00FCB68C3819C31EA3833FC26D07B26288F631B28E/F52045D6D401494B9736DB520AC99F5B299E10C8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:48:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39819_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39819_00_001F113921D1AFF5E07692DDABA01C5F7D6FB76EFC/889216B6D8243C7A77BD189D100ACA910BCD6753.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:38:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39820_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39820_00_00B5F6C0BC9B580FD0FA3BB238EB141D3A00620E43/AD7363912174FC1A7A3F389100D0B0BD8C287D7F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:35:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR39818_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleDetail\": \"Lord of the Click: Interstellar Wars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR39818_00_008D0FC723A9E8731F0F2E0F9D10AC00D31CA0BC0A/B514C9DCF622EE912229D92B6615B9C4B5C3BAA3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-27T23:30:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40111_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40111_00/e5d9af5c-3f6f-4d61-b5cb-f861d8500e4c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:28:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40112_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40112_00/47fa9f68-ab4d-4f79-90f0-e6a04dc80939.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:28:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40109_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40109_00/ca339f5c-db64-44ac-abb8-d1edfc4263d4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:28:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40110_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40110_00/d8dfa2d4-9b76-4952-b6af-688562fb6cd0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:27:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40107_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40107_00_006ABF12F4BE86471862E90E5665C1E1B8C3C7E99C/BD5121CA65F43CA11D3903460340B2D97107C2AD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:25:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40108_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40108_00_003C37740B726493A8050C3CFCAA3FFEC74D7D0C9B/386CC6DA164B6AD985FD74119F70A5A511C0D778.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T13:04:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40105_00_002C521EE97FE7194F035A6395A7B8165AE30CD823/3032EAFB4533C775FA35EF255087B2E11515DE5B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T12:44:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR40106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Food Memory\", \"trophyTitleDetail\": \"The trophy set of The Jumping Food Memory\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR40106_00_001E938492B28CA8C63A3D7F36204226FBEBEDB7A8/4357511C091DCB2899D2940BF8AC6867FCD3A5BA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 6, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-25T12:22:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36498_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"We Were Here Expeditions: The FriendShip\", \"trophyTitleDetail\": \"We Were Here Expeditions: The FriendShip\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36498_00_0082F3164ECBA2128B7A931C6FAAC3F6AA54159FEE/7F58456D4B3965B0259825F60B06F496DD5734B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T14:05:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26399_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26399_00/102d55ce-35e7-4132-ad4a-7fc42b4c952e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T01:16:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26400_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26400_00/fecb20a7-a908-4881-9c67-92f2717a2ba7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T00:49:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26401_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26401_00/5351c132-126e-4d7c-ad4b-d4bf50a9e19a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-24T00:03:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26397_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleDetail\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26397_00_006BF906D443B2DC2DFE0B60A39445CEFE6478F0A5/0A5F07943C6C095D1924C263C9CC989E6AA88C2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T23:36:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26398_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleDetail\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26398_00_00E764D93D4294D2CADA752FB1653D8A384563D129/5A815EE7A8F5D32A87DF01B2E39FC421886F0999.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T23:07:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Escape from Terror City\", \"trophyTitleDetail\": \"Escape from Terror City\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26396_00_0001898D6DD708606C432121564914DE8147CC9AA6/A15FC3D3BFBCEFF3E35B8D6B341AF580D1552A17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T05:10:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30856_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"EchoBlade\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30856_00/3b320522-063f-4f16-99a6-1d4791427a16.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T04:18:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30855_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"EchoBlade\", \"trophyTitleDetail\": \"EchoBlade\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30855_00_00BD2BDEA9575045A0C95F3A14F033DED73E63FC2F/441AB9FE6E8FC0C4F925151F86E98C6A245B1DAF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T04:04:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30854_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"EchoBlade\", \"trophyTitleDetail\": \"EchoBlade\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30854_00_004573149C502FE49378EE92C29480BE3220F179A7/F02FBA2E70052CAD8180751EAF52474C0C24F94B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T03:19:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40169_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40169_00/cdc3e754-8cec-47b5-b793-edc3c59a3f6a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T01:56:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40168_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40168_00/91c72e4b-b610-4541-ab6f-da4f36a0027f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T01:26:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40170_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40170_00/7a2f4979-5c07-414c-86a2-777ab5225d6f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T00:56:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR40167_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Postman\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR40167_00/25f5d102-2677-4d39-8e4f-851ee0ab6166.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-23T00:14:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38580_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38580_00/741ddc7a-e7df-40be-9ef7-a3658b5f4486.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T14:05:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38579_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38579_00/59b5972f-9581-427a-a5ee-20ddb4058bde.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T13:44:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38578_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleDetail\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38578_00_000155A93DC483A751E3C325AE373BC15DD8E4699F/978EC4B14C56ECF4EDE5E0EE9BA71ACF32AF5C3A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T13:18:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38577_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kalinur\", \"trophyTitleDetail\": \"Kalinur\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38577_00_0041FF3E24B97B50AEB7380DE104843BBB51B38CB2/697369AFA4BA2C5066696E27E31C45803D2422DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T12:41:33Z\"}], \"nextOffset\": 100, \"previousOffset\": 49, \"totalItemCount\": 18515}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title.json index 6e125bc..2e41528 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "70" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:19:05 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:54 GMT" + "Content-Length": [ + "70" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,34 +102,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:05 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "2878" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "2941" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:54 GMT" ] }, "body": { - "string": "{\"titles\": [{\"npTitleId\": \"CUSA12057_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15509_00\", \"trophyTitleName\": \"Fallout 76\", \"trophyTitleDetail\": \"Fallout 76\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15509_00_00FEDEFDF75690C37D4051FC8F80462BB7C362282B/A4D94FEACEEE402B1FFF2742BB5F6E5A3DA1C26C.PNG\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"trophyType\": \"platinum\", \"trophyName\": \"Platinum Trophy\", \"trophyDetail\": \"Collect all other 50 Trophies for this Trophy\", \"trophyIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15509_00_00FEDEFDF75690C37D4051FC8F80462BB7C362282B/FDEA5B4032CA08AAF3C305EDFEBAA7CA11B8FA72.PNG\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.0\", \"earned\": true, \"earnedDateTime\": \"2020-11-22T17:51:30Z\"}], \"progress\": 77, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"definedTrophies\": {\"bronze\": 53, \"silver\": 18, \"gold\": 1, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-11-28T22:55:19Z\"}]}, {\"npTitleId\": \"PPSA01506_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21237_00\", \"trophyTitleName\": \"Immortals Fenyx Rising \\u2122\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21237_00/98744844-873e-479e-83c1-5853ea2024b6.png\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 32, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Armed and Dangerous\", \"trophyDetail\": \"Fully upgrade everything at the Forge of Hephaistos.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21237_00/4684baab-bcb8-49fc-9224-deeac059ac35.png\", \"trophyRare\": 1, \"trophyEarnedRate\": \"7.7\", \"earned\": true, \"earnedDateTime\": \"2021-03-07T19:18:41Z\"}], \"progress\": 26, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 47, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-11-25T19:43:25Z\"}]}, {\"npTitleId\": \"CUSA00419_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06221_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleDetail\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06221_00_00943B71B23B3A5D98EB6CA419684E0F0A07FA8707/A3E52C438318CCEC6346EB2A31DBF31164A95A25.PNG\", \"hasTrophyGroups\": true, \"rarestTrophies\": [{\"trophyId\": 2, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A Friendship Resurrected\", \"trophyDetail\": \"With friends like this who needs enemies?\", \"trophyIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06221_00_00943B71B23B3A5D98EB6CA419684E0F0A07FA8707/EDD221A259C9C6F4C72109C133C1D0E239A22DAD.PNG\", \"trophyRare\": 2, \"trophyEarnedRate\": \"33.0\", \"earned\": true, \"earnedDateTime\": \"2020-02-02T00:34:22Z\"}], \"progress\": 4, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-02-09T17:24:52Z\"}]}]}" + "string": "{\"titles\": [{\"npTitleId\": \"CUSA12057_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15509_00\", \"trophyTitleName\": \"Fallout 76\", \"trophyTitleDetail\": \"Fallout 76\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15509_00_00FEDEFDF75690C37D4051FC8F80462BB7C362282B/A4D94FEACEEE402B1FFF2742BB5F6E5A3DA1C26C.PNG\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 5, \"rarestTrophies\": [{\"trophyId\": 0, \"trophyHidden\": false, \"trophyType\": \"platinum\", \"trophyName\": \"Platinum Trophy\", \"trophyDetail\": \"Collect all other 50 Trophies for this Trophy\", \"trophyIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15509_00_00FEDEFDF75690C37D4051FC8F80462BB7C362282B/FDEA5B4032CA08AAF3C305EDFEBAA7CA11B8FA72.PNG\", \"trophyRare\": 0, \"trophyEarnedRate\": \"1.0\", \"earned\": true, \"earnedDateTime\": \"2020-11-22T17:51:30Z\"}], \"progress\": 77, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"definedTrophies\": {\"bronze\": 53, \"silver\": 18, \"gold\": 1, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-11-28T22:55:19Z\"}]}, {\"npTitleId\": \"PPSA01506_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21237_00\", \"trophyTitleName\": \"Immortals Fenyx Rising \\u2122\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21237_00/98744844-873e-479e-83c1-5853ea2024b6.png\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 32, \"trophyHidden\": false, \"trophyType\": \"gold\", \"trophyName\": \"Armed and Dangerous\", \"trophyDetail\": \"Fully upgrade everything at the Forge of Hephaistos.\", \"trophyIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21237_00/4684baab-bcb8-49fc-9224-deeac059ac35.png\", \"trophyRare\": 1, \"trophyEarnedRate\": \"7.5\", \"earned\": true, \"earnedDateTime\": \"2021-03-07T19:18:41Z\"}], \"progress\": 26, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 47, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2022-11-25T19:43:25Z\"}]}, {\"npTitleId\": \"CUSA00419_00\", \"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06221_00\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleDetail\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06221_00_00943B71B23B3A5D98EB6CA419684E0F0A07FA8707/A3E52C438318CCEC6346EB2A31DBF31164A95A25.PNG\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"rarestTrophies\": [{\"trophyId\": 2, \"trophyHidden\": true, \"trophyType\": \"bronze\", \"trophyName\": \"A Friendship Resurrected\", \"trophyDetail\": \"With friends like this who needs enemies?\", \"trophyIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06221_00_00943B71B23B3A5D98EB6CA419684E0F0A07FA8707/EDD221A259C9C6F4C72109C133C1D0E239A22DAD.PNG\", \"trophyRare\": 2, \"trophyEarnedRate\": \"32.9\", \"earned\": true, \"earnedDateTime\": \"2020-02-02T00:34:22Z\"}], \"progress\": 4, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"lastUpdatedDateTime\": \"2020-02-09T17:24:52Z\"}]}]}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title_forbidden.json index 36ac41c..3ef47fe 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_for_title_forbidden.json @@ -33,31 +33,31 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:05 GMT" ], "Server": [ "Apache" ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", "Content-Length": [ "123" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:55 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"2572b32b-2c34-11ef-9d31-b16dfad30ee7\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"facfb1dc-d093-11ef-af29-47286d1014b8\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_forbidden.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_forbidden.json index d2790ad..c889625 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_forbidden.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_forbidden.json @@ -33,31 +33,31 @@ "message": "Forbidden" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:48 GMT" ], "Server": [ "Apache" ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", "Content-Length": [ "123" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:36 GMT" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"1a801e47-2c34-11ef-899b-b7aa9f098dee\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" + "string": "{\"error\": {\"referenceId\": \"f02c75c3-d093-11ef-9c7b-b99dadfe7f37\", \"code\": 2240526, \"message\": \"Not permitted by access control\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_pagination_test.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_pagination_test.json index 9b4accf..5a1895f 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_pagination_test.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__trophy_titles_pagination_test.json @@ -33,39 +33,36 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "no-store" ], - "content-length": [ - "72" - ], - "X-Content-Type-Options": [ - "nosniff" + "Date": [ + "Sun, 12 Jan 2025 03:18:48 GMT" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:36 GMT" + "Content-Length": [ + "72" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { @@ -105,34 +102,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:49 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27925" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "30201" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:37 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39971_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alan Wake II\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39971_00/145b639c-0063-43ed-8dce-83be47c5a846.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 76, \"silver\": 2, \"gold\": 0, \"platinum\": 1}, \"progress\": 37, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-15T22:16:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lies of P\", \"trophyTitleDetail\": \"Lies of P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36569_00_00CE99CA32E0CAD3D1711ACF195741BB08CBF641A3/254370D76C521C69FB2BFDF4DBB54AD727F02228.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-13T21:35:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR00951_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"God of War\\u00ae II Trophies\", \"trophyTitleDetail\": \"Trophies for God of War\\u00ae II\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR00951_00_009E3D77C68F6962010CA5BC3F7F03654D5AE0A23E/AFB1C251B6DFE461CB4989557C1C1FDB183C6EB5.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-04T10:15:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Color Slayer\\n\", \"trophyTitleDetail\": \"Color Slayer\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18569_00_000C14B16F09DB5E831657F1C1271B347F4247D5C9/53400F204C57C486F4B6107385A271A55FC80C72.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-02T12:07:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR01182_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Ben 10 Ultimate Alien: Cosmic Destruction\", \"trophyTitleDetail\": \"Ben 10 Ultimate Alien: Cosmic Destruction\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR01182_00_000A38EAD84816B0B4573A838F2B732E7B7F240406/1D6918D59FEAD1A633EECEADF7D741843E48A23F.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 36, \"silver\": 5, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 36, \"silver\": 5, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-29T20:38:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16713_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Far Cry\\u00ae New Dawn\", \"trophyTitleDetail\": \"Far Cry\\u00ae New Dawn Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16713_00_00DB634DBCD53785D86AEE988ADBBD2C381124EF17/B2375A614753D87B811C7D6B1F6C95EA8034A655.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 58, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-23T23:43:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16639_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The LEGO\\u00ae Movie 2 - Videogame\", \"trophyTitleDetail\": \"The LEGO\\u00ae Movie 2 - Videogame\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16639_00_009F250098D9FD79707365364545C5370B2B033BB2/B7283BBD5BD20FBBFE9ABC7E4231AACD4571117B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 37, \"silver\": 12, \"gold\": 1, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-21T20:53:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35039_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Prince of Persia\\u2122: The Lost Crown\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35039_00/6187a2c9-2ba5-41dc-a291-c0a8f5554219.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-20T21:32:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32584_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Fun\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32584_00/c4de1865-4019-443a-aaa1-d1d4e1e444ac.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-20T21:22:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34048_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34048_00/05857b48-0b74-433b-93ea-a8c9462667bb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:38:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34044_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34044_00_007F9A8D22CAC6B7C8E98747912C082CD163B8688D/6772F055BB7D37F425F29C7AA68F7536823CA49C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:37:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34047_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34047_00/0df1e6a1-03fb-4b57-a73a-092d6e21161d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:35:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34043_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34043_00_00B8CAB0CAC0D54B0563A4D6E990EC688558B3FB6E/BD6319D38CF530CD1E0D2186FDCA3B97306135E2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:34:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34050_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34050_00/7fef5cdb-357c-4b33-8f1c-124751b2cc12.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:32:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34046_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34046_00_00B2377A19A267902154767AC2F48D149609021C58/90268EC33163A9BC1595836C4F3B44C9502B05A5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:31:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34049_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34049_00/a738d894-a15d-40fe-898e-36b4cce2250c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:29:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34045_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34045_00_0028B3A142423C9D0CB7CC9103EE7C9EF66B2CEFFB/2571B3A1704DFF5A1EB8173B495A0894B467B65E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:27:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR44026_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn to Play Vol. 2 - A Simple Shooter\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR44026_00/896daa11-8921-4ba9-a981-efb7cb6a37a4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-17T15:40:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR44024_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn to Play Vol. 2 - A Simple Shooter\", \"trophyTitleDetail\": \"Learn to Play Vol. 2 - A Simple Shooter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR44024_00_00D922BE9B52E7109CCFD9FAA05E4111979721CAE2/EFB7AC8AC69AA9FC9AF8F046332C1640C7C738EA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-17T13:05:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10793_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Batman: Return to Arkham - Arkham Asylum\", \"trophyTitleDetail\": \"Batman: Return to Arkham - Arkham Asylum\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10793_00_001C51C206F64F7E24DC45425E265840126C5B420C/1B863E6C4394F3C084915F80BFF34D3A20711ED0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 18, \"gold\": 1, \"platinum\": 1}, \"progress\": 5, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-17T09:55:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38376_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle 2\", \"trophyTitleDetail\": \"Trophy set for Road Bustle 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38376_00_00448E88008A85E33EE5BFF3EDF4A9D32FA915DD33/A67E69B94D30009E27A167BA9D2E186854C72971.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-15T23:15:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR41529_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle Online\", \"trophyTitleDetail\": \"Trophy set for Road Bustle Online\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR41529_00_0023C0C5CEE3C6B3A56E4927CEFF5977A329D83494/0269E218A58A93B795E68AD686570DFFD4B59839.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-15T21:58:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35342_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alone in the Dark\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35342_00/a9efe463-7e5d-40c4-bad0-65ab914deab8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 21, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 26, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T20:31:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33633_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33633_00/4f4a5b6c-1c3e-483c-a6b3-dcd2e27cce7a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:53:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33637_00/3b176885-c706-45e0-bfd7-c4d9cd751232.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:53:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33638_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33638_00_00BF1642F20B89F9D06500B43FEEA786E726597052/487CA230061ED05842CDA75C6433A6E4829DB809.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:51:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33636_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33636_00/b39f3477-fec3-4b59-84fd-11000034d674.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:50:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33635_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33635_00_006536B99FD4B071A9A2F61240911945D7F32C58F9/E60181BD7B80EA0E43705CFBEA021486CBAD7A6B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:49:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33634_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33634_00_005C5301C367070549629B782E87EFD4E8155BEF8B/585D0835CF36D2B40325EFF024CE04D0BA3500F3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:48:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33632_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33632_00_0060C816D45803A19D397CC5B83D917344203C18B0/96B848B816B05AD45942E7EA576068EC3747A667.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:47:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33631_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33631_00/544bea18-d6fe-4649-8b5b-0d7dc48a4904.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:43:34Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32141_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32141_00/1058e40b-b5c3-4b11-87a9-89a8cd6d9af6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:07:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32140_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32140_00_00B31DA22E7B47D3AB51E081DAF4FD56344E3E2DCE/91763D5046D2ADAAD79052225ABD1795A35ED6F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:06:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32137_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32137_00/8e50e95b-1311-4834-8618-c9c9902cb2c8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:05:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32136_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32136_00_00EB30C4602DADF3F8EBDB5B60888B09598512B2D8/4BD3FF71C91DBB0FC3B1D75FCEF5B1EC54BEC8F0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:04:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32134_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32134_00_00C68CA776AB69113E9651CA549A5C37A1421F7E2B/6D21774D0B685D5FA674011E1658F18C441D97FA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:03:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32135_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32135_00/0db6c103-c731-4990-9a55-0686b0abb338.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:01:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37356_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stellar Blade\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37356_00/d1f990db-1929-4092-84dc-4b1c64af872d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 29, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"progress\": 42, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 0, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-08T20:33:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32139_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32139_00/b0c3cacf-531a-4cd3-917a-18d7b00b5951.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:44:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32138_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32138_00_00529711590381C3FB9525EA2AAD7650A95A6767F7/AD325142FFE47C23FBB71AB211006EB376F459B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:43:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32881_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32881_00/1a074ae0-8f35-4a0a-a85b-39c1bb6ec06e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:41:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32878_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32878_00_008AC8E2DCFC7CF93326AEF90CD0E40AF64D563243/1E41242259D48817D96B264D1D319CD65ED9BB99.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:40:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32879_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32879_00/b6061483-f914-468c-b1d1-27efeebda8c6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:39:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32880_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32880_00_00123A20D9CEDA10DEB550878566D02D5DA5B6800F/DB3A24AF41EE3C021F2DD025AE36D5CA431A5BF6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:38:34Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32884_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32884_00/1f385593-c4be-4d20-ba62-b9ae8d67bc5a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:37:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32882_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32882_00_00DFC671FDCC6C4D66A8E2C704D467F01262DCDEEA/EDECA73BF85704310068F1DD39DDEBB534322839.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:36:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32883_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32883_00_0056548A54D4791D01FCA310BA024566AE1BC89E04/EEB9AEFD4A0AFD7DFB5DBA6AFF5D32099811118E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:35:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32885_00/d8cbc218-76fe-4237-8056-0c0464881de1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:34:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30975_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30975_00/39636c49-a35e-400b-9d96-e5a5eea092c3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:37:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30976_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30976_00_00A4E7831B5CCAB26DE155564013D5615DB564B42F/F377A5B98151FEA70613F8825171B2F891451AB6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:32:59Z\"}], \"nextOffset\": 50, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15179_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"RESIDENT EVIL 2\", \"trophyTitleDetail\": \"RESIDENT EVIL 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15179_00_004E1F39C12A2C6264BA2A0546D9234F56889DCC5F/BAFEDE2151A73E1FAFE59B8575EC1CF99F6A75F6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 30, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 97, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2025-01-11T20:46:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24748_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"RESIDENT EVIL 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24748_00/cfd08ce0-f3b3-4b65-aa2c-f5b2153b82a0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-12-21T18:36:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18248_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"RESIDENT EVIL 3\", \"trophyTitleDetail\": \"RESIDENT EVIL 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18248_00_009A0106FD4DF638239D5BB0C3AA208FEEFA624963/2E4BB81396B3272EC614FA0EA1FE58CE6B29353D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-12-21T16:13:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10751_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"Resident Evil 7: Biohazard\", \"trophyTitleDetail\": \"Resident Evil 7: Biohazard\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10751_00_0067A75086AF6955957B0F14790DB6DEDF01270DD1/0F061D22C9840D6AF8BF72E1520F986C13376604.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 5, \"definedTrophies\": {\"bronze\": 34, \"silver\": 19, \"gold\": 5, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-12-14T20:45:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07028_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Uncharted 4: A Thief\\u2019s End\\u2122\", \"trophyTitleDetail\": \"Uncharted 4: A Thief\\u2019s End\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07028_00_00328912165EFFF45B65627D1975AB169F7A096025/0CAA52366C0F14C85A71FACB36BDD29122DF85D6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 56, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 95, \"earnedTrophies\": {\"bronze\": 54, \"silver\": 9, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-12-07T19:37:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27782_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Teenage Mutant Ninja Turtles: Shredder's Revenge\", \"trophyTitleDetail\": \"Teenage Mutant Ninja Turtles: Shredder's Revenge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27782_00_00B0F39AD5455AA8AC1320865EEDE01D5FB8989BF4/093957C9B41714B4965A531009A07E7D575F7BC8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 14, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-12-05T16:11:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18663_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"AO Tennis 2\", \"trophyTitleDetail\": \"Trophies for AO Tennis 2.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18663_00_0012D1DEBE157230B80D2378D1EBD02886B1287B15/B1754D4C00BFDC3014304E4AC3D1536F80ADFA63.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 8, \"gold\": 6, \"platinum\": 1}, \"progress\": 90, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 8, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-29T22:55:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17130_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"DAYS GONE\", \"trophyTitleDetail\": \"DAYS GONE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17130_00_002D14DB28AA079AB444D1AA3527D40F8F780DBAEE/81687E4B5151D16193E5EC2A558719BBCB6BD363.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 37, \"silver\": 19, \"gold\": 4, \"platinum\": 1}, \"progress\": 86, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-28T16:24:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14002_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"AO International Tennis\", \"trophyTitleDetail\": \"Trophies for AO International Tennis.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14002_00_00F054B65DF8F85FF4557AD731EC9B0419BE80A0E1/EBDA94513233B883F499F5501BDA89DC9E70F134.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 13, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-26T03:20:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11338_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Injustice 2 Trophies\", \"trophyTitleDetail\": \"Injustice 2 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11338_00_00A7F97446EBD6A26682047666076BA8173FA899BE/8FCCCD2ACE5F0AC5E0C8B0C82E27CD84EA354E33.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 71, \"silver\": 2, \"gold\": 1, \"platinum\": 1}, \"progress\": 98, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 2, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-25T12:31:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16566_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Darksiders III\", \"trophyTitleDetail\": \"Darksiders III\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16566_00_0017175A8558DDA522802B2968454DB124FD827385/88DA2799B0B379B0A4C2BBDEDF0855DEF75B4BFE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 36, \"silver\": 24, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 36, \"silver\": 24, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-25T11:51:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18604_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Nioh 2\", \"trophyTitleDetail\": \"Nioh 2 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18604_00_00021C52A0BF7E02D40E6854B5595C6302F4C2D3FC/AA961BD080AD81CA3E84A12CD6DF4B8BBCA8BA18.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 87, \"silver\": 5, \"gold\": 2, \"platinum\": 1}, \"progress\": 64, \"earnedTrophies\": {\"bronze\": 48, \"silver\": 5, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-20T17:18:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34731_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34731_00/42c7da43-8d61-48f1-977e-6ca7b9960562.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:38:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34727_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34727_00_0077C2EF1F87F6CCACF7DA5E759A6B08E745588F38/0B0BE66AE09805A49E83FCE719C3F14465055785.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:33:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35162_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35162_00/b8afcfd5-7b1a-4ebe-a4ba-f81d3455db52.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:23:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35158_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35158_00_003F4A69664818C24354EB2F101F801D58110DED40/584D4AA9FECB96600A2DDC6F8C1EC5FB29270868.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:22:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35159_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35159_00_00091F153900CAE19E6822AB219C3197A0789E46EE/121DEED18CAB7CE2B7415D3792CEACD0B03B739A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:20:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35163_00/291f65f4-5c20-4e3e-8178-36ff4f9dc098.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:19:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35156_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35156_00_00F10981B69126C25E7ECF10CF38CF4C3FB941701B/8C9EF0E3096238A3F9A95CFE724FF63CC2E1C44B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:18:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35160_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35160_00/b555d1ba-6599-452b-86b1-266cec1fe110.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:17:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35157_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35157_00_005242E2FF91B1BBD8B12A92D39338DA6B1F895072/B2468A40E97A29C4EC8E68F5E0639EDFA1D6836D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:16:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35161_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35161_00/4c1bdd6a-b5d4-46e4-bef7-dba4a8a8db61.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T11:15:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35170_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35170_00/28557afa-67d7-4c9d-986c-91311ff9a61e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:45:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35166_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35166_00_00EB26FC3E1811B7353CCC9840B3EA2A65F4392A5C/B42C48528B5DBFC8C94B39DF13A5881DB5E3E54E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:44:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35167_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35167_00_00F20130CE278AF9B90AD2E598C42276A6229F5583/2401A58FBB5A9DA6C85249A50590F1549063882F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:43:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35171_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35171_00/3d37c7be-b7fe-4e28-8e9c-8c85b9a1538f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:42:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35164_00_008BB197A6DDDFD4210A9D3D67F8CFD0140EC38A6F/3AC43872538F4D1812D721F7F3260FC308852550.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:40:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35168_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35168_00/913f3b48-8356-4f59-968f-17864159c5d0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:39:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35165_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35165_00_00D7C04A2DCCE0330FEB5275FB2B1C8BFB13BFEE03/7DD2E25F2F34F84877E70F2284F8DE3A9A2B1043.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:38:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35169_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35169_00/78fd4554-23f5-4bb2-8ad5-de1935f2e5b4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-15T10:26:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35154_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35154_00/a7bc8dda-6233-4824-934a-97e7d4dd377b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:32:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35150_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35150_00_0033632082CDF61F332AEA4DF0575A6CE5B8361443/714E9458611EA0FA616BBD21B4224E177BB332D3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:31:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35151_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35151_00_006CB6C0A2F706C6E064C53D006F7DF302E169DCD5/F5E888FE3987154ED698698809C4D5DCE6C23953.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:28:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35155_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35155_00/e0373f44-93fd-4b21-8a3c-8542d3ff0afd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:27:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35148_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35148_00_00D3064C0673682EB33FA0F541E9F6302835FCCBB2/4807EA60439BE53951FC91A7DBBE4E97C92F4268.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:26:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35152_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35152_00/7974a0cf-780f-4cc3-86af-f593bead88fd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:24:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35149_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35149_00_0028B86D3A139C9729328BFD6CA0C3D1669C581E85/DEF34E1A84D918A01CAECB8FD3C65B4F8C3E306B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:22:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35153_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35153_00/d63b2ba7-962a-4d50-97a6-b261fcb91cc4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T22:08:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35146_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35146_00/2be7fb09-aede-49ad-aff7-26880f2236af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:45:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35142_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35142_00_00BFB07E2CB24307C67ABBFA862C7DAF91DF9B9577/D46A339C597418BB3A7F0F3D4F3EBC3420E14EEA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:44:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35143_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35143_00_008C3E4CECBA8672955FE454549BF4FD41DF10990C/4C2A1AA38E73CE94B9D27A5778D1518ACFA61F8F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:42:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35147_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35147_00/7131e18e-0385-428a-90b8-ca5faaa84cc9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:41:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35140_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35140_00_003688ABDC7BAC0EC702FDA7FAE8E5B6E87C9AB5C0/190AA43FCC941F45E47CA5998939C11AA39D7EA9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:39:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35144_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35144_00/cc99265f-978c-444b-ad2b-96d451f170e2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:38:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35141_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35141_00_003CA603DE2DD7CFCDBF9A2A827E04687B8B802F2D/1B515C80D62328187A3D877B70D05EED1DBE3240.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:37:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35145_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Spain\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35145_00/2ee00c4a-cea7-4834-b107-b2fc53895a1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T15:33:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34757_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34757_00/837de75e-a0f0-45ee-9675-cb8774da5fcd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:38:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34753_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34753_00_00680818AEBCD9BDA1F7114ED24B3116469AAC6DD6/E5190EC630DCF70280899856C105C4946CDC95B5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:37:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34754_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34754_00_00C6BF6BDF3E4B5AA7F5E90BAA7DDA9A0E67640B85/0F9066F170D2B94D9AD3A0909B47A6B4C913A6CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:35:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34758_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34758_00/788f36fb-c220-4090-8659-5a0d5a5f5899.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:34:33Z\"}], \"nextOffset\": 50, \"totalItemCount\": 1446}" } } }, @@ -168,34 +165,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:49 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27640" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29966" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:38 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30978_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30978_00_00A34919AD2EBFC68F033FFF6A6FD0257C677EB93C/DCE1A1F93C27BC9EA67CAEDD5C479AB4F5DF3C63.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:23:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30977_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30977_00/5655cb34-630b-438d-9b92-0daa053834dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:16:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31574_00/194ab528-6e8b-469a-bd2e-5a513d209a9f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:12:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31579_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31579_00/9f40dee7-e95e-4307-be67-1d3816d53204.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:12:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31575_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31575_00_00ED0F513A71C9FDFC1D4B945F18E40A2FA5397479/1C922E045F2494F145E37773C09A8390EAF6B19D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:10:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31578_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31578_00_006BE967307CE3BF46C30BE8944F18844CF3CACFC1/1C4159AF731BB7A3CDB9729B13278A41830A152E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:09:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31580_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31580_00_00F78FD01A45030F61A580A33E13D8058F91B04234/BD460F40204C2325DFF59734E1A8318E9C4F70C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:08:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31581_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31581_00/18650834-c238-4d6b-b5a4-79c9d2d135c0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:07:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31308_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31308_00/c8bfd6ad-83f9-4e8f-b817-a2fe5852443c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:43:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31307_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31307_00_00FBA7708EBE7DC72409F7DFED2647132A3EF9CAC0/6512763A44B038C0FD46D812B8BB50DF612456C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:41:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31309_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31309_00_00727BB8B0756C75C4592C1CD63403A9951A15D325/E0EEC11EEA4846693E726DD9E3452362600B16FA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:40:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31310_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31310_00/04e7a7b0-6533-4dfd-82e8-2cfe6e7e78d7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:38:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31306_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31306_00/15d8daea-6187-4252-87bb-e0d0e83cac67.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T20:18:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31305_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31305_00_006365ADA4C7D716DDAFECCBD90FDA79D0EE3ED19E/8017E959160D84FC5D70A059E7C8F42567CB3028.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T20:15:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31586_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31586_00/d950b0aa-e0ce-4c60-b3e0-33a092534e4a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:50:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31585_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31585_00_00EE333E2215FEB481221A42CF8277448FD1859201/0279AE88EF2D91CF6937E6321EB58B4A3461EF29.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:49:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31584_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31584_00_00AC5536973EFE533A49200DE0D38BA92819151C20/FA07ABE430B8578F91CC86CE31F36342711D8605.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:48:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31588_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31588_00/3be333b7-55e0-458e-a7b1-fc01bd965605.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:46:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31587_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31587_00_008829B1905B1DFFA83698C27440723256A939D9EA/4AE399E9876AE99C3DAA59537E53B96D9D59658F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:42:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31589_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31589_00/6ddd1bd7-3d76-48ba-8ac8-66c9ba9c1019.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:41:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32862_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32862_00/ded1a948-6891-45f7-93c8-179dab133190.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:38:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32863_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32863_00_00E8260E45CFD04F8AA8099A2342C06BDC3CD0A587/CBE05C40AFA1F092543E338031929E9B4A62D2BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:37:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32864_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32864_00/e7ae7787-9c54-47a8-8ecb-2f25ceb38230.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32866_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32866_00_00D1A22A89942826F557F0B346E2E339A615D0912F/C6DEE307448F5CC2052BE888FAD553A1DC7D362F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:35:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32865_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32865_00_004139A5B5DA5F77C6079DC2CFBC3B476B12A5A5E9/CED0CD58A83397F354291CFA711726A2B43CD009.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:35:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32867_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32867_00/bf1a8711-e56e-4bb8-a63b-3218df9271ce.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:33:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32868_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32868_00_00904CC4BAAA5D7EBC5F390D2DE0415B101162803F/D261D394ED51E44A0596E9BAFFA7765914FF3858.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:32:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32869_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32869_00/650699eb-8e5c-461a-a441-03a6f9d0914d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:32:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32179_00/aa67e383-6b96-4a36-aa32-b9ff90232c72.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:03:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32176_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32176_00_000E4C0AE9A4750E20505D8E7752CB8EB4C153B829/66A132AE1C4FE5D8D5B189E48F5B7134E7578F9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:00:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32175_00_00F260F4A09EBD85CE3C443833720ACF03EB968766/5B697CE3DB48A7AC9E2D723D59D7262FE351901D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:56:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32177_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32177_00/18e3dce7-7d53-492d-9f09-d0486d63cee4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:53:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32174_00_00326F50902BC145FC2A17321D7E79F7236647C62F/CEFABE979BE975F071D7C473B4661A1238489763.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:49:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32173_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32173_00/f5d099e3-9515-4c01-b171-d829e3532312.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:42:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17501_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Rogue Company\", \"trophyTitleDetail\": \"Rogue Company - Base Game Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17501_00_0046500E7E6DA4B43207C198A1D0FFD94C0D6DB5C5/4A3317A4DDD61B2C4689438D1F07894A923D0BE7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-22T20:38:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34981_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bilmo\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34981_00/86dedfc7-6a81-42a1-8563-494e0671a057.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T15:26:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34985_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bilmo\", \"trophyTitleDetail\": \"Bilmo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34985_00_00E7D59FB95EAB14160681592998BCA1D98106D600/1E85435899373C05A107BA29CF4262A03915C61E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T01:54:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31303_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31303_00/025d7915-055c-44ba-a4c0-215e71704c97.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:54:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31304_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31304_00_00B529E37FEF8EA65C12936610AD73DCBF93AD234B/11C47E592DD4B153386BDD85083D79EBB57906B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:52:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31583_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31583_00/24445e2d-ebeb-42f6-8c7a-e69850d6e7a9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:51:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31582_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31582_00_009201C73F8D241346508DC9FE69B721AB7783B65E/130867F9590A904F04EBBFCE2B79BEEE8F29C516.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:50:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31576_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31576_00_0077D03DE1114930BA1BD647C45A5F9911A33B9D09/4AD0A20EE7EB750A15EDE9D6B8170AAAF748FAFC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:49:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31577_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31577_00/b4ce6ae7-68ae-442f-b568-368b03a96dc8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:48:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32877_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32877_00/353ca1cb-0fe2-47b6-875b-cea7747b8306.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:46:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32876_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32876_00_00379DA502529C1313C1C12D8D67BAE1746653D00F/8D426D138932F3EB58024BE42FF5A2C26A9AF173.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:45:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32875_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32875_00/964f22a8-92d0-44a8-a3c6-15e9c5c8957e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:45:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32874_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32874_00_005678BA70D47C8FAF079EACF8076FBBD2ADAF45F3/B7990E6AB973DB6B2DAF19F7950B1B36B9E2FD02.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:44:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32870_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32870_00/25e08fec-6830-402f-a3af-1b76e7f766ef.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:43:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32871_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32871_00_001A16B8AC18F1C963418E5A47B24CC5235CC695F2/57F7718F90AF7BACED66908088931C6F7B7763D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:42:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32873_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32873_00_0084ADF7FB52999F4900A9DC4B757C96C66C3D0D12/9E574A6B9291B10E2E753B1947D4445FD14CE6C4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:41:25Z\"}], \"nextOffset\": 100, \"previousOffset\": 49, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34751_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34751_00_00A4D8487AB1A02C3A23113720D10F47D53E19A690/6B00AD5E17F6209D54C9CF1996185BBB382D2B00.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:33:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34755_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34755_00/d74ae06f-481e-49a0-9f31-b838f87bf422.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:32:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34752_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34752_00_00C8E1531D914325F985486D2F32E967D144CE2C4F/28E7AB8AC9A792BCBA86D4CA885D576BC470E5F5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:31:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34756_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34756_00/cbbd2441-6a21-4d27-8aba-5843c51d05b8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-14T12:30:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34748_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34748_00/273ca47d-0c3b-4752-af91-7f8179d25362.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:29:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34744_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34744_00_001F6D4D95375E21B344BFF0AE1B171E0EA5E89E7E/5E1C20F6BB3599610CA73A33B9A955D520FE0C74.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:28:17Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34747_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34747_00/63307208-3e88-43f5-afe7-5d6a0df1b422.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:26:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34743_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34743_00_00964DEEF22E60E137390F7B090A5103379B170AE0/21D2EB4F389A0F262657B227900547E99DA475F8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:25:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34750_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34750_00/f06b8980-1978-4ccd-8a99-e1f3bcc5941b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:22:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34746_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34746_00_001BD1E42B5374BEB2D563AFB55790EA15D3523629/302D484EC7D7992509509B70AA9396AE3E357AF6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:21:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34749_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34749_00/b88f33c9-d590-47d0-b44b-ac3b10f27f40.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:05:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34745_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Silver Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34745_00_00026F91CDC16E1A833E9C1B35D1D4009E68D581AF/3AEE26AA4891C895666D72CB83F284C93D71CCD7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T18:02:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34739_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34739_00/2446b1ab-103b-4da7-b835-7be0b0dd8f8b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:14:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34736_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34736_00_006D9ED97263E7C595BDE9E8F39510902319716CAC/01541765DC0F39331EA597E91D76607917409243.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:14:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34735_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34735_00_0075B2475AE4288D2654E4DD68497EBF8A2ABDCBB7/7EFC24513E9456CF1807940B27079C219E988655.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:11:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34740_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34740_00/2b2062bf-58f1-44ef-b370-3126d03a63fb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:09:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34742_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34742_00/9c6640ee-2b0f-4869-a590-4b3f59a5fe2b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:09:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34738_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34738_00_00C859D1CE903632CF2387C7D0A6E9E2B686BA644F/101864095455863B469E12B95930FB9D7BC46C54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:08:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34741_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34741_00/92bf6ddb-7246-48aa-9218-a42fdd234a98.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:06:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34737_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34737_00_00EBCD49B6265ACDF0A105A09E521987BD9D2ADA2F/D1B00032C753DBE1E8903E61A29F1A82A73E4FA1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T14:05:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34728_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34728_00_00D6CF828D06C914C8EDA24C83DEF8B0717E086ADD/8B53D9BB8E770B6984F89CEB2A556B442C01F852.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T10:18:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34734_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34734_00/1d4518a4-865f-4f9e-9605-24df9e782f92.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T10:17:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34730_00_00EB894689E716AEBAF73DC64176709422C81D409A/C8E9BC4FDDD84464B1224A2697A29027549DDD7B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T10:16:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34733_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34733_00/88cad0af-a107-47c6-8c69-fa3261442a55.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T10:15:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34729_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34729_00_002BCCC6A565841834229C7CB4E3B0A90F6573210D/98086B9AEE6557FD5C9A9C218CFEE462870747FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T10:14:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34732_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz United Kingdom\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34732_00/e3493a66-e97c-43d5-b9ec-7ebbc99c284e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T10:12:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33000_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Cat\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33000_00/673e7b06-b8e6-4b6f-be22-920dc8b87e25.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:46:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32660_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Cat\", \"trophyTitleDetail\": \"Stroke The Cat\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32660_00_005CAE1267FC34B256900CFE6B0F78B7B252EF01FC/BC5420914D000797FC303E6418B0C72E61E2B01E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:43:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33122_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleDetail\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33122_00_0058D3426DE5751D427294D463FF07DB96AA7295E8/280142CB1CC016E22D05F71648FEDE2893C193A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:40:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33123_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleDetail\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33123_00_00DEABDD666570D7A44F85C78C7863544DF537C99D/EE7F02A684297DD6490E49D93433DF916B3F5055.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:37:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33127_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33127_00/86e8253d-c358-49cd-8651-2f3964a8eaf2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:34:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33126_00/0f2f9687-7685-4faf-9fd0-f8b7f8694c81.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:29:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleDetail\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33125_00_00D10F48960D7567CC9BA9C958BB454529D66E16CD/19BDB37815A31FD404683DF30894B9CCE62E7B18.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:15:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33129_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33129_00/437fdf07-5010-405d-9d1d-77b1a00327cf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:11:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33124_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleDetail\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33124_00_0013CA773FBAFE9E3E90A9D06EEE4B0694A5C4EFF4/FFE3C39A7C4FC71013630914BDAEE4A6FCAEC1A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:08:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33128_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Tortoise\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33128_00/3fc95f11-d32c-4332-9541-702e9bedfc10.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-13T06:05:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07942_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Ratchet & Clank\\u2122\", \"trophyTitleDetail\": \"Trophy set for Ratchet & Clank\\u2122.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07942_00_006F781DB9EE3B1A96EB9472B006DA21899A916D8F/0A529D9F4EA9446B6946C0CDC64C5DD853DC79D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 30, \"silver\": 14, \"gold\": 2, \"platinum\": 1}, \"progress\": 38, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-11T23:28:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mafia II: Definitive Edition\", \"trophyTitleDetail\": \"Mafia II: Definitive Edition Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19105_00_00C23C1C953B85779AD89D6B936DD787CE160BD959/4E45E5503B06F04EA533D8DD4A9733DABF01EE38.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 51, \"silver\": 14, \"gold\": 2, \"platinum\": 1}, \"progress\": 65, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 10, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-10T19:20:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05740_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"inFAMOUS Second Son\\u2122\", \"trophyTitleDetail\": \"Trophy set for inFAMOUS Second Son\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05740_00_0017967C4188CE8097C9F90449BD2673428F2F5C4E/084BD02D892260735318CE1DE2BB2FB1D42F22BD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 11, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 11, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-11-08T12:41:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36923_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"DRAGON BALL: Sparking! ZERO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36923_00/357797d8-c16d-4903-93f2-8f24410dc689.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 36, \"silver\": 11, \"gold\": 2, \"platinum\": 1}, \"progress\": 48, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 8, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-10-25T17:31:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR44508_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snooker Blitz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR44508_00/2e937291-3af1-4fe8-9513-8e88e9c2133b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-10-25T10:50:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR41483_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Disney Epic Mickey: Rebrushed\", \"trophyTitleDetail\": \"Epic Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR41483_00_004AF0AF3C10387857EFB6F08E45F736970E32B3A6/06204810E2FB4E59E08E9D3654D89D82ED3067B4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 17, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-10-05T16:09:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05326_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Injustice: Gods Among Us Ultimate Edition\", \"trophyTitleDetail\": \"Trophy set for Injustice\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05326_00_00A75883B9747C770037612EA4D1590CF85E999869/47719D67971CDF2825F8069BDEF868656E45B331.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 94, \"earnedTrophies\": {\"bronze\": 36, \"silver\": 9, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-09-30T15:02:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24170_00\", \"trophySetVersion\": \"01.20\", \"trophyTitleName\": \"ASTRO BOT\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24170_00/98d93fe3-44bb-49bf-8e88-9b7c3e6570d4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 32, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 87, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 17, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-09-16T21:29:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophySetVersion\": \"01.40\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-09-04T11:35:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Myth: Wukong\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34992_00/61830ea4-0722-4ad5-95cc-f313135de0b4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 31, \"earnedTrophies\": {\"bronze\": 12, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-09-01T09:03:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21115_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Resident Evil Village\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21115_00/a61ffefb-5d49-4183-bf55-4a834551b499.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 45, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 85, \"earnedTrophies\": {\"bronze\": 41, \"silver\": 6, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-08-09T05:14:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19904_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Resident Evil Village\", \"trophyTitleDetail\": \"Resident Evil Village\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19904_00_00500ADADD2AA388911E637EE6A1B66B6F259FA3CA/608E2951C65C8140F5C709D6471D8B8820FE6C29.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 45, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 85, \"earnedTrophies\": {\"bronze\": 41, \"silver\": 6, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-08-05T14:47:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25264_00\", \"trophySetVersion\": \"01.09\", \"trophyTitleName\": \"ELDEN RING\\u2122\", \"trophyTitleDetail\": \"ELDEN RING\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25264_00_0016A3314AA603308997B9D8AF70F614271E5497AD/64DEB2C822A98E40E781F532802810638901068F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 12, \"earnedTrophies\": {\"bronze\": 7, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-07-25T19:48:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR00874_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Bakugan Battle Brawlers\\u2122\", \"trophyTitleDetail\": \"Bakugan Battle Brawlers\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR00874_00_0006B1D6F8F6BBBC021F2009215357B9BD662F07CD/8488D5C3043FF0C08876518D1978BE1C74EED170.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 52, \"silver\": 2, \"gold\": 2, \"platinum\": 1}, \"progress\": 57, \"earnedTrophies\": {\"bronze\": 29, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-07-14T12:26:37Z\"}], \"nextOffset\": 100, \"previousOffset\": 49, \"totalItemCount\": 1446}" } } }, @@ -231,34 +228,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:50 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27737" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29152" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:39 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32872_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32872_00/630cb534-96d2-4286-a8b4-370640ea84bd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:39:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32180_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32180_00/bd2d8ac0-7a2e-46c1-901b-d779b85a55f5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:42:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32178_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32178_00_00CB3CBBE87A0F677400A6EB23404E887EB73FFF56/818B55226ACAA9A50285DC5B2032CCF11FE475A8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:38:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33200_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleDetail\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33200_00_00FFE54DD7CA8FCE43CB0A2C16900086C6DA9A91B0/684F727D8A7507554577422F7276AF600A97B558.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:24:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33196_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33196_00/735b74cf-98e6-48d2-a359-a0fefc18d869.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:01:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33198_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleDetail\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33198_00_00D08574222A2DCDD1A9B59A2269879F2F5511D0E5/CB3322B7A8435BB27744A76204774AE80F93DE32.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:59:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33194_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33194_00/20f2e9d8-dac4-466c-ade3-6077259024d6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:58:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33197_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleDetail\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33197_00_00016931D63054C3D9F983295D7E17AB9190C614F1/CC8AA885BBF56A303C63ADC1F81365A361EDA436.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:55:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33193_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33193_00/191313fc-07f7-4f0d-9ec4-97cf184fbd48.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:53:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33132_00/74596468-c7e3-4662-8e5f-4947ec98e0a0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:35:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33120_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleDetail\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33120_00_00D2993D98B37CC809AFCD4A0B288E568C2239F34A/0F2E0D7DD00D32AC4332317888BAB95AA6B9950B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:33:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33121_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleDetail\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33121_00_00849C227557FE5DA2D6A2D6F3E7EDC7FE6081901D/5D20D0B8284F3259FC13F309F1A522136DBADF14.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:10:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33133_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33133_00/9aff43a5-b698-4192-9f51-237d57242cad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:05:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10261_00\", \"trophySetVersion\": \"01.07\", \"trophyTitleName\": \"Nioh\", \"trophyTitleDetail\": \"Nioh trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10261_00_00CAA2186FFF8ED4ABC8FA441A9B72DB43BFD322F8/B4C5186F0DC63A3704590DCEAC632E16BB3B249F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 73, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 57, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-16T14:39:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25668_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rise of the Ronin\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25668_00/f1926e14-1f44-4f24-810f-354981d9a185.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 39, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"progress\": 43, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-15T19:26:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05326_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Injustice: Gods Among Us Ultimate Edition\", \"trophyTitleDetail\": \"Trophy set for Injustice\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05326_00_00A75883B9747C770037612EA4D1590CF85E999869/47719D67971CDF2825F8069BDEF868656E45B331.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 52, \"earnedTrophies\": {\"bronze\": 29, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-07T02:07:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07810_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Mortal Kombat X Trophies\", \"trophyTitleDetail\": \"Mortal Kombat X Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07810_00_0054969164A03E16BAADD6EB211B468C189A8ED02D/1C92481E3F14B72FE8ECBC4706B36FABA921AB5E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 67, \"silver\": 5, \"gold\": 1, \"platinum\": 1}, \"progress\": 6, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-06T12:37:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11338_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Injustice 2 Trophies\", \"trophyTitleDetail\": \"Injustice 2 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11338_00_00A7F97446EBD6A26682047666076BA8173FA899BE/8FCCCD2ACE5F0AC5E0C8B0C82E27CD84EA354E33.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 71, \"silver\": 2, \"gold\": 1, \"platinum\": 1}, \"progress\": 97, \"earnedTrophies\": {\"bronze\": 69, \"silver\": 2, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-02T01:42:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18676_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"RESIDENT EVIL RESISTANCE\", \"trophyTitleDetail\": \"RESIDENT EVIL RESISTANCE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18676_00_00EB85B86B30205AE32F3E431B5C1CB7086ED5F8BB/C32F2594979DA9EC44C46CC15E39EAA99CBDD85D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 43, \"silver\": 6, \"gold\": 2, \"platinum\": 1}, \"progress\": 37, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-31T19:33:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mortal Kombat 1 Trophies\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29323_00/9f6da658-9c09-4a11-8897-8b453ce0fc37.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-30T02:59:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33408_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Last of Us\\u2122 Part II Remastered\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33408_00/e66332c2-c7c3-48d4-8e31-51fa2b8c98b7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 23, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 83, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 9, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-29T14:58:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05170_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"KNACK\\u2122\", \"trophyTitleDetail\": \"KNACK\\u2122 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05170_00_00E93DC715741E698213E181A2FA09080EF704526A/822C92C922A51855BA52E8A411B74532B91AE73D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 24, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-29T00:30:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13348_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Last of Us\\u2122 Part II\", \"trophyTitleDetail\": \"The Last of Us\\u2122 Part II\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13348_00_00B23E79CB15709D3B459815B6DE97B0885530CFC3/4F0195E8FBCEF12F5410716F3E4C409DB6A098CF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 11, \"silver\": 9, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 9, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-23T23:52:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36103_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Robocop: Rogue City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36103_00/dad1c103-0ca3-4e2d-b318-c0449140d0e3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 13, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-21T20:12:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23172_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STREET FIGHTER 6\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23172_00/3e4b43b8-a877-4fff-a306-6cd877480d1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-17T16:41:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Brothers: A Tale of Two Sons Remake\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39164_00/a639740e-260d-4171-ac7b-4dca9a2c46af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-16T22:51:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23200_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Crew Motorfest\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23200_00/b22cc4a4-3cca-4215-adf4-9853a4599546.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-22T22:02:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28253_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Crash Team Rumble\\u2122\", \"trophyTitleDetail\": \"Crash Team Rumble\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28253_00_0018705534E42AB6AB9C6B695308D574CC2BA7DCEE/323D05DB60283FE2AEA9420A5AADD58E1F3E759D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 6, \"gold\": 4, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-18T21:12:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34665_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"TEKKEN 8\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34665_00/84b5dde4-858b-422f-9b0c-9ad5d856b3da.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-17T22:31:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28680_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28680_00/a372f37a-dc7e-4f4c-9f97-9d43c71507e8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-12T22:11:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29343_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS\", \"trophyTitleDetail\": \"Trophies for NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29343_00_003C2BA89A3DDD02EFDDAFF44FFBED346A88310710/EB009A3F4420613A0C21C665B69DD60E9E4E1961.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-12T20:41:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25488_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Suicide Squad: Kill The Justice League\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25488_00/fc8af52a-b9f9-4984-a719-07eecb4cc108.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-09T21:28:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22392_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"God of War Ragnar\\u00f6k\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22392_00/e7fdc8c6-d6ee-4345-b174-3ccb46f617b0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 27, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"progress\": 85, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 15, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-04T13:17:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR02153_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ben 10\\u2122 Galactic Racing\", \"trophyTitleDetail\": \"Ben 10\\u2122 Galactic Racing Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR02153_00_0085C5EEB64C82765DE39D606650334F3291F8DBA3/B5645E20B8666EC799D61A114DD872487F9D96A5.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 39, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-21T23:07:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32558_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\\n\", \"trophyTitleDetail\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32558_00_00D648CA53E893D9630BB4C94D4271CA95CB956AAB/AB6CFDED73632EBC4F56AFFD6500C24B19D03B6F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:34:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32575_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32575_00/7621d5e4-5fbf-4c94-85d9-18f2c3caede8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:32:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32559_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\\n\", \"trophyTitleDetail\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32559_00_009FA9D14A4CFAB3D15DB2B6CBDEC90A427AA8E453/46EE9650405CA7DDE9D1E4384D40BCBECCCD0F7E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:24:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32574_00/2ea4bb65-b461-49db-a46a-f0a12e2551c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:21:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32557_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleDetail\": \"Platty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32557_00_006B6710B16EC8FA0DD4F355E47EA507DF96D766AD/035239406492223BE1A0CB33EC564DBB54EFF1C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:14:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32573_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32573_00/b6e0be7d-ab6b-4b28-b732-40f640a55cb3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:12:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32556_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleDetail\": \"Platty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32556_00_00F050B78E0806CB82D86FAF189984EB0A1C81DE87/D5D13FA21272D0EB4EEB81229AC50948618F5AA1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:11:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32572_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32572_00/b84ab4dd-64c3-4e6b-93e0-6585643139cf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:03:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32552_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleDetail\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32552_00_00DE988112585D789043077C39EFFEE9C69A23A266/820F65D76DAF151AED61D4B740BDE9C4885F84BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T12:48:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32568_00/a53a98ba-812e-4d19-b3e1-df9b8c28b570.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T12:44:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32553_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleDetail\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32553_00_007A9F7A29FFF327A825F6D149DDC185ED02FE03B5/324E692970A312F6E36F591472413624CD2CAA2A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:57:17Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32569_00/9c7e85c8-8432-4124-862a-025b1bc131d7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:52:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32571_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32571_00/fbc2c9bc-dc71-43b1-b3cc-f7d84d568aa0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:47:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32555_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleDetail\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32555_00_0097B8477294AFDBF245ADC9193D370207A29A53BD/45D2E2507BD74D30454E66AEEAF4F529125C7338.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:45:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32570_00/59db39f6-4aad-416a-b68d-8aabf339358b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:41:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32554_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleDetail\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32554_00_0075CB33C8D34233B92FACE48F4A2E973BACC205DD/031B865612C985E831B018F0A0E8E3054C8875B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:38:04Z\"}], \"nextOffset\": 150, \"previousOffset\": 99, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15587_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Sekiro\\u2122: Shadows Die Twice\", \"trophyTitleDetail\": \"Sekiro\\u2122: Shadows Die Twice\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15587_00_00B683E5453204A612C38DC218AEF0317CD5E8E9CC/85B017F39EA939B035F2C5A6B7198E87DAC9B610.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-07-12T12:51:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22392_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"God of War Ragnar\\u00f6k\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22392_00/e7fdc8c6-d6ee-4345-b174-3ccb46f617b0.png\", \"trophyTitlePlatform\": \"PS5,PSPC\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 27, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-26T12:36:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21219_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Tennis World Tour 2\", \"trophyTitleDetail\": \"Trophies for Tennis World Tour 2.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21219_00_005345A435DE4D4C0D3BAECD929D22C0BB804F89BB/03291C62B4997B4811C6977208CEFB305C66AE54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 8, \"gold\": 6, \"platinum\": 1}, \"progress\": 33, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-19T22:11:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lies of P\", \"trophyTitleDetail\": \"Lies of P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36569_00_00CE99CA32E0CAD3D1711ACF195741BB08CBF641A3/254370D76C521C69FB2BFDF4DBB54AD727F02228.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-18T22:37:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39971_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alan Wake II\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39971_00/145b639c-0063-43ed-8dce-83be47c5a846.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 85, \"silver\": 3, \"gold\": 0, \"platinum\": 1}, \"progress\": 32, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-15T22:16:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR00951_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"God of War\\u00ae II Trophies\", \"trophyTitleDetail\": \"Trophies for God of War\\u00ae II\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR00951_00_009E3D77C68F6962010CA5BC3F7F03654D5AE0A23E/AFB1C251B6DFE461CB4989557C1C1FDB183C6EB5.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-04T10:15:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Color Slayer\\n\", \"trophyTitleDetail\": \"Color Slayer\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18569_00_000C14B16F09DB5E831657F1C1271B347F4247D5C9/53400F204C57C486F4B6107385A271A55FC80C72.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-06-02T12:07:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR01182_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Ben 10 Ultimate Alien: Cosmic Destruction\", \"trophyTitleDetail\": \"Ben 10 Ultimate Alien: Cosmic Destruction\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR01182_00_000A38EAD84816B0B4573A838F2B732E7B7F240406/1D6918D59FEAD1A633EECEADF7D741843E48A23F.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 36, \"silver\": 5, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 36, \"silver\": 5, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-29T20:38:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16713_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Far Cry\\u00ae New Dawn\", \"trophyTitleDetail\": \"Far Cry\\u00ae New Dawn Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16713_00_00DB634DBCD53785D86AEE988ADBBD2C381124EF17/B2375A614753D87B811C7D6B1F6C95EA8034A655.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 58, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-23T23:43:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16639_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The LEGO\\u00ae Movie 2 - Videogame\", \"trophyTitleDetail\": \"The LEGO\\u00ae Movie 2 - Videogame\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16639_00_009F250098D9FD79707365364545C5370B2B033BB2/B7283BBD5BD20FBBFE9ABC7E4231AACD4571117B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 37, \"silver\": 12, \"gold\": 1, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-21T20:53:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35039_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Prince of Persia\\u2122: The Lost Crown\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35039_00/6187a2c9-2ba5-41dc-a291-c0a8f5554219.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 20, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-20T21:32:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32584_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Fun\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32584_00/c4de1865-4019-443a-aaa1-d1d4e1e444ac.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-20T21:22:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34048_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34048_00/05857b48-0b74-433b-93ea-a8c9462667bb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:38:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34044_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34044_00_007F9A8D22CAC6B7C8E98747912C082CD163B8688D/6772F055BB7D37F425F29C7AA68F7536823CA49C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:37:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34047_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34047_00/0df1e6a1-03fb-4b57-a73a-092d6e21161d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:35:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34043_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34043_00_00B8CAB0CAC0D54B0563A4D6E990EC688558B3FB6E/BD6319D38CF530CD1E0D2186FDCA3B97306135E2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:34:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34050_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34050_00/7fef5cdb-357c-4b33-8f1c-124751b2cc12.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:32:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34046_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34046_00_00B2377A19A267902154767AC2F48D149609021C58/90268EC33163A9BC1595836C4F3B44C9502B05A5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:31:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34049_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34049_00/a738d894-a15d-40fe-898e-36b4cce2250c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:29:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34045_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Germany\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Germany\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34045_00_0028B3A142423C9D0CB7CC9103EE7C9EF66B2CEFFB/2571B3A1704DFF5A1EB8173B495A0894B467B65E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-19T12:27:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR44026_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn to Play Vol. 2 - A Simple Shooter\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR44026_00/896daa11-8921-4ba9-a981-efb7cb6a37a4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-17T15:40:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR44024_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn to Play Vol. 2 - A Simple Shooter\", \"trophyTitleDetail\": \"Learn to Play Vol. 2 - A Simple Shooter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR44024_00_00D922BE9B52E7109CCFD9FAA05E4111979721CAE2/EFB7AC8AC69AA9FC9AF8F046332C1640C7C738EA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-17T13:05:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10793_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Batman: Return to Arkham - Arkham Asylum\", \"trophyTitleDetail\": \"Batman: Return to Arkham - Arkham Asylum\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10793_00_001C51C206F64F7E24DC45425E265840126C5B420C/1B863E6C4394F3C084915F80BFF34D3A20711ED0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 18, \"gold\": 1, \"platinum\": 1}, \"progress\": 5, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-17T09:55:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38376_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle 2\", \"trophyTitleDetail\": \"Trophy set for Road Bustle 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38376_00_00448E88008A85E33EE5BFF3EDF4A9D32FA915DD33/A67E69B94D30009E27A167BA9D2E186854C72971.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-15T23:15:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR41529_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle Online\", \"trophyTitleDetail\": \"Trophy set for Road Bustle Online\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR41529_00_0023C0C5CEE3C6B3A56E4927CEFF5977A329D83494/0269E218A58A93B795E68AD686570DFFD4B59839.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-15T21:58:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35342_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alone in the Dark\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35342_00/a9efe463-7e5d-40c4-bad0-65ab914deab8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 21, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 26, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T20:31:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33633_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33633_00/4f4a5b6c-1c3e-483c-a6b3-dcd2e27cce7a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:53:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33637_00/3b176885-c706-45e0-bfd7-c4d9cd751232.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:53:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33638_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33638_00_00BF1642F20B89F9D06500B43FEEA786E726597052/487CA230061ED05842CDA75C6433A6E4829DB809.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:51:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33636_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33636_00/b39f3477-fec3-4b59-84fd-11000034d674.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:50:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33635_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33635_00_006536B99FD4B071A9A2F61240911945D7F32C58F9/E60181BD7B80EA0E43705CFBEA021486CBAD7A6B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:49:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33634_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33634_00_005C5301C367070549629B782E87EFD4E8155BEF8B/585D0835CF36D2B40325EFF024CE04D0BA3500F3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:48:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33632_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleDetail\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33632_00_0060C816D45803A19D397CC5B83D917344203C18B0/96B848B816B05AD45942E7EA576068EC3747A667.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:47:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33631_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Dog Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33631_00/544bea18-d6fe-4649-8b5b-0d7dc48a4904.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:43:34Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32141_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32141_00/1058e40b-b5c3-4b11-87a9-89a8cd6d9af6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:07:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32140_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32140_00_00B31DA22E7B47D3AB51E081DAF4FD56344E3E2DCE/91763D5046D2ADAAD79052225ABD1795A35ED6F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:06:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32137_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32137_00/8e50e95b-1311-4834-8618-c9c9902cb2c8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:05:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32136_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32136_00_00EB30C4602DADF3F8EBDB5B60888B09598512B2D8/4BD3FF71C91DBB0FC3B1D75FCEF5B1EC54BEC8F0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:04:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32134_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32134_00_00C68CA776AB69113E9651CA549A5C37A1421F7E2B/6D21774D0B685D5FA674011E1658F18C441D97FA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:03:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32135_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32135_00/0db6c103-c731-4990-9a55-0686b0abb338.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-11T00:01:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37356_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stellar Blade\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37356_00/d1f990db-1929-4092-84dc-4b1c64af872d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 29, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"progress\": 42, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 0, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-05-08T20:33:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32139_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32139_00/b0c3cacf-531a-4cd3-917a-18d7b00b5951.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:44:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32138_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drag Journey\", \"trophyTitleDetail\": \"Drag Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32138_00_00529711590381C3FB9525EA2AAD7650A95A6767F7/AD325142FFE47C23FBB71AB211006EB376F459B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:43:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32881_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32881_00/1a074ae0-8f35-4a0a-a85b-39c1bb6ec06e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:41:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32878_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32878_00_008AC8E2DCFC7CF93326AEF90CD0E40AF64D563243/1E41242259D48817D96B264D1D319CD65ED9BB99.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:40:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32879_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32879_00/b6061483-f914-468c-b1d1-27efeebda8c6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:39:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32880_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32880_00_00123A20D9CEDA10DEB550878566D02D5DA5B6800F/DB3A24AF41EE3C021F2DD025AE36D5CA431A5BF6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:38:34Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32884_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32884_00/1f385593-c4be-4d20-ba62-b9ae8d67bc5a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:37:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32882_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32882_00_00DFC671FDCC6C4D66A8E2C704D467F01262DCDEEA/EDECA73BF85704310068F1DD39DDEBB534322839.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:36:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32883_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleDetail\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32883_00_0056548A54D4791D01FCA310BA024566AE1BC89E04/EEB9AEFD4A0AFD7DFB5DBA6AFF5D32099811118E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:35:25Z\"}], \"nextOffset\": 150, \"previousOffset\": 99, \"totalItemCount\": 1446}" } } }, @@ -294,34 +291,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:51 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27856" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28609" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:39 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32551_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\\n\", \"trophyTitleDetail\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32551_00_0009E9793D410D1404B5E64F4648002A5D01B28688/F3F98FC91DB22F2D29DE7AF7AE8D2AB2A512AF51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:21:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32567_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32567_00/d69bcee8-86da-400e-b93c-9e595bd19d21.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:18:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32550_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\\n\", \"trophyTitleDetail\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32550_00_007235137ACD4DB8A2BA32099EE485F149C1551D4D/27348D0984C57E43532BE32BD875AEE3A205208A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:17:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32566_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32566_00/e3e5b8a1-9ff4-4c03-83be-8ce4e34dde98.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:15:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32549_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleDetail\": \"Platty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32549_00_001F9ADB0AB0B003B92A823F275B763114DB5F8A1F/6E7D96C3BD0677F6AF6B96509E3685B425D925C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:13:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32565_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32565_00/17d8e4bb-1b50-4d6b-8c9c-3cea4b9ae45b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:11:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32548_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleDetail\": \"Platty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32548_00_00E70649F476FA756FFCCC67CEEB3FEC6B791F78D9/223456DCFC93E9C4EF762016998F92920F7D9DE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:09:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32564_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32564_00/0a9e0eba-c011-41ca-bf07-63db12d36c74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:08:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\\n\", \"trophyTitleDetail\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32546_00_0031072BC93141B7168AD2664DFFBE38E381CDF924/EF18C6B79AA632B20F6D8137440DE26D44C90B17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T16:00:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32562_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32562_00/12875719-6c99-48b7-a45f-6455e12a2810.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T15:58:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32547_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\\n\", \"trophyTitleDetail\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32547_00_00654ECEEF391BF2D18A9D80640657199733118DAE/D0955D05F3C248F7F3FC8A88A334594A3C536704.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:45:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32563_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32563_00/d080f13e-1f58-4510-a090-b4b1377859c9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:41:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleDetail\": \"Platty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32544_00_00A4C241F7E4D297BE32BDEE821EA155C6DE3BE5EB/425DC9B1DF109DF963BD475F180707EC7C5BA08D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:37:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32560_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32560_00/248eebc0-2618-47be-bc4c-9685ea22f17c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:35:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32542_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\\n\", \"trophyTitleDetail\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32542_00_00DD684B3C6BFF5B957CBF17E234BE100FEDF041C6/06B5706BB1F6B2669CB7825B28BB874F610F45E2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T21:08:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32537_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32537_00/a30133f0-aba8-4f97-93d7-e8941fe3aa34.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T21:06:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32543_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\\n\", \"trophyTitleDetail\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32543_00_00CDFF4A5CF7288B75ABB07408182F02B485E5D2DA/E05265F1700D5B5E47A58F7098930C05C98B03FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T21:04:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32538_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32538_00/34558cc8-a739-48d5-9aa7-c5913cf86254.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:59:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32541_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleDetail\": \"Platty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32541_00_0074FD6F679E34642087BE874F387F39988047E5A2/1ACB66206CFDE3F821AE3D22D767D2657A5A3F36.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:57:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32536_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32536_00/7357efe9-6748-46fc-8e44-614d92f4da25.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:55:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32540_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleDetail\": \"Platty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32540_00_00A741997FEF6FF2569DC0612AB77C8E8555287409/B6C956184014756F02139DD8DEAFBA59D480AEAE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:53:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32535_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32535_00/597398de-dc76-40dc-999f-254a31bc3b6e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:51:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32324_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32324_00_0054BBF1D538BFDACD06FEF24195CA1D57F9A06C21/52C36DC52108160A695B0EC99B1AAE3AE8BBBC7A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T16:07:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32328_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32328_00/7e7d38f0-d6e0-4c1d-b068-7eccdd8417fb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T16:04:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32325_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32325_00_0090B1E2C723F40763AE7D4A2055294624E29E7929/573787BFEF0512DA6050AF3F328A45028F139797.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T16:01:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32329_00/a69806de-ce50-426c-9028-74288bb2a418.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:59:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32323_00_00ED6549241053550D0DA78C175CA32841742EF875/3988804D476BA70695963B92CC6C38A02D6CD529.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:53:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32327_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32327_00/add0278b-cd9b-431e-a1dc-3233786296fa.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:52:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32322_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32322_00_00D00390625F41E971438282FD7AD30A085B15ACCE/E649C47F0899D2772D755A9235F99162CE583C90.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:46:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32326_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32326_00/f0b11dc1-3969-42fd-b4f2-140974b35d6a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:44:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35640_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35640_00_0076943531773EAC1EFADC88DECD48E2D8169FB5C4/21C504CF4108BFE287BEA7DFE498A28DD1C96D5A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T00:09:34Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35644_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35644_00/585dac43-6fc2-4fd8-9e1f-f9bc595df7b7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T00:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35639_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35639_00_00D9EACF2E44F15ED3CA82B8B714820720E523E969/19BD37C5C8822B0F54CC6D18FCA1D2165DA62436.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T00:02:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35643_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35643_00/8d107307-df13-4f70-8075-34b47ccf1a01.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:59:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35637_00_00C75A6D56503C787CECF6B1C650CA7F4D3EEB2A9F/61EAD82C3609E8F7333D5230D6E90363E7D435CD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:55:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35641_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35641_00/bc2a0340-49a8-4572-91df-aa21ae2849af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:52:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35638_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35638_00_00AB41D667F98DA0E56B8DCE8403C0F12212AA5149/95A1EFBFBCCD03BF0A7A797F40165B893B1FC3B9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:48:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35642_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35642_00/814378b9-b594-4937-b065-5ec75dc3ca9e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:44:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32083_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32083_00/1baa1085-6178-49f9-9a9c-010ccd2b0d84.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:18:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32079_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32079_00_0026DD5FB290D17A86DC7DF0AD585B13E04216856D/57FC0BBFDC8FD45454BC5D5D43BEDC1FA18F2518.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:16:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32082_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32082_00/b27bc2ae-c051-4b3a-af92-7c02c1632707.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:14:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32078_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32078_00_00A393596D89CFC61D3F7E7FDB7D82B9F5DFFC5EE8/5B6F951790105E044BB93EB5ABAB1CA528954DDE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:12:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32454_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32454_00/4f94d0e4-21cc-4008-9733-08111b9b5a57.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:11:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32450_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32450_00_0006511A272D2D5CAE5609FE7ED04460ACE805FD13/0A318EED8379D6E21D5EF34E86F1E5712BE27BE7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:09:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32455_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32455_00/8c38c018-a3e8-4c7b-a72b-f4e42647f442.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:08:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32451_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32451_00_00B30365C983F0B6280E4A44ED8E7FF7E4DE50C235/A1347418523316836B932A014F1B41791616A9C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:06:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32452_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32452_00/70b109e7-034f-4e5b-9f60-69d66db81df5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:26:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32448_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32448_00_006A408F5172D8582A94ACB60A69855DB59D45DCE4/F548964F048221176C8E35C273AC760CEFBC05B1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:22:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32076_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32076_00_008F8366FC25E7FB41B23AC3ECF005DBBC77EA26C4/510DC64897788F871D5A0DF84EDD83509B32EE8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:19:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32080_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32080_00/a1f274d4-6692-430a-adf2-0f2fafefd40c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:15:02Z\"}], \"nextOffset\": 200, \"previousOffset\": 149, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pizza Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32885_00/d8cbc218-76fe-4237-8056-0c0464881de1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-25T18:34:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30975_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30975_00/39636c49-a35e-400b-9d96-e5a5eea092c3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:37:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30976_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30976_00_00A4E7831B5CCAB26DE155564013D5615DB564B42F/F377A5B98151FEA70613F8825171B2F891451AB6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:32:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30978_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30978_00_00A34919AD2EBFC68F033FFF6A6FD0257C677EB93C/DCE1A1F93C27BC9EA67CAEDD5C479AB4F5DF3C63.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:23:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30977_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30977_00/5655cb34-630b-438d-9b92-0daa053834dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:16:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31574_00/194ab528-6e8b-469a-bd2e-5a513d209a9f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:12:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31579_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31579_00/9f40dee7-e95e-4307-be67-1d3816d53204.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:12:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31575_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31575_00_00ED0F513A71C9FDFC1D4B945F18E40A2FA5397479/1C922E045F2494F145E37773C09A8390EAF6B19D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:10:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31578_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31578_00_006BE967307CE3BF46C30BE8944F18844CF3CACFC1/1C4159AF731BB7A3CDB9729B13278A41830A152E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:09:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31580_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31580_00_00F78FD01A45030F61A580A33E13D8058F91B04234/BD460F40204C2325DFF59734E1A8318E9C4F70C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:08:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31581_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31581_00/18650834-c238-4d6b-b5a4-79c9d2d135c0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T22:07:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31308_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31308_00/c8bfd6ad-83f9-4e8f-b817-a2fe5852443c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:43:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31307_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31307_00_00FBA7708EBE7DC72409F7DFED2647132A3EF9CAC0/6512763A44B038C0FD46D812B8BB50DF612456C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:41:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31309_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31309_00_00727BB8B0756C75C4592C1CD63403A9951A15D325/E0EEC11EEA4846693E726DD9E3452362600B16FA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:40:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31310_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31310_00/04e7a7b0-6533-4dfd-82e8-2cfe6e7e78d7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-24T18:38:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31306_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31306_00/15d8daea-6187-4252-87bb-e0d0e83cac67.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T20:18:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31305_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31305_00_006365ADA4C7D716DDAFECCBD90FDA79D0EE3ED19E/8017E959160D84FC5D70A059E7C8F42567CB3028.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T20:15:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31586_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31586_00/d950b0aa-e0ce-4c60-b3e0-33a092534e4a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:50:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31585_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31585_00_00EE333E2215FEB481221A42CF8277448FD1859201/0279AE88EF2D91CF6937E6321EB58B4A3461EF29.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:49:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31584_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31584_00_00AC5536973EFE533A49200DE0D38BA92819151C20/FA07ABE430B8578F91CC86CE31F36342711D8605.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:48:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31588_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31588_00/3be333b7-55e0-458e-a7b1-fc01bd965605.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T02:46:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31587_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31587_00_008829B1905B1DFFA83698C27440723256A939D9EA/4AE399E9876AE99C3DAA59537E53B96D9D59658F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:42:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31589_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31589_00/6ddd1bd7-3d76-48ba-8ac8-66c9ba9c1019.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:41:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32862_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32862_00/ded1a948-6891-45f7-93c8-179dab133190.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:38:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32863_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32863_00_00E8260E45CFD04F8AA8099A2342C06BDC3CD0A587/CBE05C40AFA1F092543E338031929E9B4A62D2BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:37:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32864_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32864_00/e7ae7787-9c54-47a8-8ecb-2f25ceb38230.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32866_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32866_00_00D1A22A89942826F557F0B346E2E339A615D0912F/C6DEE307448F5CC2052BE888FAD553A1DC7D362F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:35:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32865_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32865_00_004139A5B5DA5F77C6079DC2CFBC3B476B12A5A5E9/CED0CD58A83397F354291CFA711726A2B43CD009.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:35:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32867_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32867_00/bf1a8711-e56e-4bb8-a63b-3218df9271ce.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:33:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32868_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleDetail\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32868_00_00904CC4BAAA5D7EBC5F390D2DE0415B101162803F/D261D394ED51E44A0596E9BAFFA7765914FF3858.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:32:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32869_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Burger Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32869_00/650699eb-8e5c-461a-a441-03a6f9d0914d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:32:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32179_00/aa67e383-6b96-4a36-aa32-b9ff90232c72.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:03:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32176_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32176_00_000E4C0AE9A4750E20505D8E7752CB8EB4C153B829/66A132AE1C4FE5D8D5B189E48F5B7134E7578F9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T01:00:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32175_00_00F260F4A09EBD85CE3C443833720ACF03EB968766/5B697CE3DB48A7AC9E2D723D59D7262FE351901D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:56:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32177_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32177_00/18e3dce7-7d53-492d-9f09-d0486d63cee4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:53:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32174_00_00326F50902BC145FC2A17321D7E79F7236647C62F/CEFABE979BE975F071D7C473B4661A1238489763.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:49:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32173_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32173_00/f5d099e3-9515-4c01-b171-d829e3532312.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-23T00:42:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17501_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Rogue Company\", \"trophyTitleDetail\": \"Rogue Company - Base Game Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17501_00_0046500E7E6DA4B43207C198A1D0FFD94C0D6DB5C5/4A3317A4DDD61B2C4689438D1F07894A923D0BE7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-22T20:38:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34981_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bilmo\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34981_00/86dedfc7-6a81-42a1-8563-494e0671a057.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T15:26:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34985_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bilmo\", \"trophyTitleDetail\": \"Bilmo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34985_00_00E7D59FB95EAB14160681592998BCA1D98106D600/1E85435899373C05A107BA29CF4262A03915C61E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T01:54:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31303_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31303_00/025d7915-055c-44ba-a4c0-215e71704c97.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:54:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31304_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey\", \"trophyTitleDetail\": \"Drift Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31304_00_00B529E37FEF8EA65C12936610AD73DCBF93AD234B/11C47E592DD4B153386BDD85083D79EBB57906B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:52:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31583_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31583_00/24445e2d-ebeb-42f6-8c7a-e69850d6e7a9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:51:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31582_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drift Journey: Nitro\", \"trophyTitleDetail\": \"Drift Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31582_00_009201C73F8D241346508DC9FE69B721AB7783B65E/130867F9590A904F04EBBFCE2B79BEEE8F29C516.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:50:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31576_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleDetail\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31576_00_0077D03DE1114930BA1BD647C45A5F9911A33B9D09/4AD0A20EE7EB750A15EDE9D6B8170AAAF748FAFC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:49:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31577_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Monument Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31577_00/b4ce6ae7-68ae-442f-b568-368b03a96dc8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:48:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32877_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32877_00/353ca1cb-0fe2-47b6-875b-cea7747b8306.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:46:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32876_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32876_00_00379DA502529C1313C1C12D8D67BAE1746653D00F/8D426D138932F3EB58024BE42FF5A2C26A9AF173.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:45:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32875_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32875_00/964f22a8-92d0-44a8-a3c6-15e9c5c8957e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:45:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32874_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32874_00_005678BA70D47C8FAF079EACF8076FBBD2ADAF45F3/B7990E6AB973DB6B2DAF19F7950B1B36B9E2FD02.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:44:05Z\"}], \"nextOffset\": 200, \"previousOffset\": 149, \"totalItemCount\": 1446}" } } }, @@ -357,34 +354,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:51 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28015" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28724" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:40 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32077_00_00B90940609C371319C09B1F97D148A7DB59DCEB00/FD34FB0FB2DF95FB4073B0B889DA260B862B9DF4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:11:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32081_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32081_00/f98ee80b-fa63-4664-a1a1-b4a3d88b394d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:08:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32449_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32449_00_0078F63D0904D185CFE5144C2A99B1B6F570E3D01D/23B66422359BFCF0A5FD3B090995113E4D310825.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T11:09:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32453_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32453_00/c70cd942-8513-430e-a6df-83da11ee7df5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T11:06:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31320_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31320_00_000B8A328C26EC684E0E3C5CC92DC028A175BC0EF5/B1F5A73E5BE90925D1F075A71565630F45B949DD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T11:01:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31324_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31324_00/8847feba-418b-4a0e-8463-989112f053d2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:59:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31321_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31321_00_002391AFB145CC8AA0A3181EB881FBBAE0FE296489/3A3E1DA4D1B4D988B0C2E9CB734B7DE0B632467B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:57:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31325_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31325_00/667211f7-9176-4b47-bcae-638d654f5eb8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:54:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31323_00/df140052-2e60-441c-8c01-e29278340d01.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:53:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31319_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31319_00_00F6CEEC252217ACF95B2C5085323FEF727E070C59/9146DECEDB63CC5B86F9BDF2A1B823E224148C07.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:51:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31318_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31318_00_003D82EE38385B51C8209F1C3E304716654ED8CD0B/D608010D1FDB3B90695EC6B1AA5402A14EC11D4C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:49:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31322_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31322_00/923c1981-efc3-4f2a-8d72-caebf836adae.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:46:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33165_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33165_00_00DF33D87278A2607EC7EB0989507D4B7C48917E2C/84A644349FB27D65DE66F63B65825C5E7F49B3D5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T21:01:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33166_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33166_00/ee977929-b96a-4d35-a8e5-efe04f646198.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:59:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33164_00_0071A1AF7D71ABFB4F1CB7D31D617F2BE0F041C7AE/9A0B495F6AAB40F317EB38CB878E363FBDDEB9E4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:57:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33163_00/075be936-f131-4420-a75e-8de5ce54d16d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:56:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33162_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33162_00_006582F00EDBB403054514DB5ADA9ABF806DABDF00/A890BA5A9B383395A60D8785A486210C24F431D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:55:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33161_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33161_00/a3bb7aec-d1aa-414e-a45d-36fcb381e413.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:54:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33160_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33160_00_007672D4B08B16ABC2AB266E38C8F69F582D89FF48/B153D1BF3ED5EB1B5C7ACC183D446AC2B480E10D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:53:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33167_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33167_00/50d4a7da-55b5-4ff4-a2c3-045c624c093b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:51:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25264_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"ELDEN RING\\u2122\", \"trophyTitleDetail\": \"ELDEN RING\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25264_00_0016A3314AA603308997B9D8AF70F614271E5497AD/64DEB2C822A98E40E781F532802810638901068F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-12-09T23:23:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33639_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STAR WARS Jedi: Survivor\\u2122\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33639_00/481c29b9-b5cf-4996-aa55-1b3346050e17.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 44, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 38, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 0, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-11-27T11:27:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lies of P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36570_00/0a9b918b-1da3-4c43-8763-f86c3d0efdd8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-11-16T20:25:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23378_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel's Spider-Man 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23378_00/2ef8f325-47bd-4e1d-b731-cb8647b06a70.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 22, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 97, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 17, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-29T12:51:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29894_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Assassin's Creed\\u00ae Mirage\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29894_00/9f6ed43e-781f-4232-a75b-1e5f36d31719.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-20T03:43:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20004_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Returnal\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20004_00/f60fd55f-a01f-4274-a865-d8356dc0fd9c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 23, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-07T13:20:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24089_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Battlefield 2042 Trophies\", \"trophyTitleDetail\": \"Battlefield 2042 base game \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24089_00_00D21E03E42FB05633D4C2F46D2FE0FF86B9387FAA/9711C4B25F9B85963509E37C231A76287828C602.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 6, \"gold\": 4, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T23:13:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05458_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Tomb Raider: Definitive Edition\", \"trophyTitleDetail\": \"Tomb Raider: Definitive Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05458_00_00E28041E8641A194CC275BFCD35E0436A3569735B/300269CC413F7596682F157CCF1BD6BE82F101AB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 41, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 16, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T22:15:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08899_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Battlefield\\u2122 1\", \"trophyTitleDetail\": \"Battlefield\\u2122 1 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08899_00_001891ED8293FFF90576760D044E5454B54BB0D954/96892FCC6A36A90EF0FBA3EA18BDD505EC8EFFA8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 31, \"silver\": 9, \"gold\": 10, \"platinum\": 1}, \"progress\": 44, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 0, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-26T00:33:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22032_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"DOOM Eternal\\u00ae\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22032_00/aff88421-87cb-44de-8219-a0f5c5be4086.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 30, \"silver\": 14, \"gold\": 6, \"platinum\": 1}, \"progress\": 18, \"earnedTrophies\": {\"bronze\": 7, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T02:21:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25852_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fast & Furious: Spy Racers Rise of SH1FT3R\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25852_00/3ed8786f-385a-430b-92a1-b8db2a03e1c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-20T22:41:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24423_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Fast & Furious: Spy Racers Rise of SH1FT3R\", \"trophyTitleDetail\": \"Let's go, Spy Racers!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24423_00_00E6C46D1DB7BB6C958D739918E20EDBE3D78A72FC/E12E311EC1DAA4EEDF58FDD3DD614AB5162AA5FC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-19T22:24:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20878_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mafia: Definitive Edition\", \"trophyTitleDetail\": \"Mafia: Definitive Edition Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20878_00_00C7E2DDDF06FF788794B3E6708FD350F2D6279C12/57E654E1BB389E56F74F063A94E2931E62B36930.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 33, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 33, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-18T23:06:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge It\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36637_00/24c05e81-9dbb-4771-a913-48ca2d1e6dda.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-18T22:54:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24635_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Battlefield 2042 Trophies\", \"trophyTitleDetail\": \"Battlefield 2042 base game \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24635_00_003820F16A6088EE923F98F8EEBA44BD93835F0F1B/84E62E6CF2D98ED7CA9DE196EE87F7B47E8065D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 39, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-15T00:37:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36635_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge It\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36635_00/868bdefb-9507-4cfb-aa1f-d421b2f0e7c9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T22:44:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34790_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34790_00/dd2a0a2a-d55b-40a9-9f65-2b93ec8bee27.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:06:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34786_00_00B8304E5FACAC372742EFB51A40ECA04CA87B59C0/F7C084D5D26F90553978231CDCBFADF7ECC7B99E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:05:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34783_00_00050FFDD5A02DB9327057BF6D99B7D3657785D489/1E3DEE4AEC0C1DC284085DC7B23D165425815D65.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:03:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34789_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34789_00/6052f1c4-5fb6-497a-b219-310bf1d94499.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:01:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34787_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34787_00/b3691957-c160-4388-977b-9101e1963412.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:00:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34785_00_0067162E4474A1E6E3312EBA7389668AB487744EF6/A66D5E9AD1EE44484CAA75EB04C8D1FDFA78DB16.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T19:59:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34784_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34784_00_004C692DC9271EAB18F42AD1F241B0BCAC33C643A4/7290795E28BA75DDFC17A6249D93DF0E817941C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T19:57:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34788_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34788_00/8f388abb-13fc-40c2-b847-79f680cd9c31.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T19:55:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27782_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Teenage Mutant Ninja Turtles: Shredder's Revenge\", \"trophyTitleDetail\": \"Teenage Mutant Ninja Turtles: Shredder's Revenge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27782_00_00B0F39AD5455AA8AC1320865EEDE01D5FB8989BF4/093957C9B41714B4965A531009A07E7D575F7BC8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 14, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 94, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 8, \"gold\": 6, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-30T23:59:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31341_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31341_00/d4970c46-edc5-4dfc-84e5-3fcf38d442eb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:34:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31337_00_007F1E1C2D521E58FBF9024CD0F1FF6BC823FA93E6/13941DE2C91933CFB6C98D2A25858B12E93795C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:33:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32779_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32779_00_0019EAD64A6340EA6679F4E5EF538A5CD3BACDE599/674E4DEEDA320170E428B06BC4DCE2BB55BDE8AB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:30:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31340_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31340_00/2b318ffc-7e2a-4110-a175-64b41ad698b2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:28:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32785_00/bd03bfc2-9f05-4cd0-80cc-84c07e1be61c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:27:28Z\"}], \"nextOffset\": 250, \"previousOffset\": 199, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32870_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32870_00/25e08fec-6830-402f-a3af-1b76e7f766ef.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:43:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32871_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32871_00_001A16B8AC18F1C963418E5A47B24CC5235CC695F2/57F7718F90AF7BACED66908088931C6F7B7763D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:42:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32873_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleDetail\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32873_00_0084ADF7FB52999F4900A9DC4B757C96C66C3D0D12/9E574A6B9291B10E2E753B1947D4445FD14CE6C4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:41:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32872_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Taco Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32872_00/630cb534-96d2-4286-a8b4-370640ea84bd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-21T00:39:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32180_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32180_00/bd2d8ac0-7a2e-46c1-901b-d779b85a55f5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:42:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32178_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Baseball T\", \"trophyTitleDetail\": \"The Baseball T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32178_00_00CB3CBBE87A0F677400A6EB23404E887EB73FFF56/818B55226ACAA9A50285DC5B2032CCF11FE475A8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:38:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33200_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleDetail\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33200_00_00FFE54DD7CA8FCE43CB0A2C16900086C6DA9A91B0/684F727D8A7507554577422F7276AF600A97B558.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:24:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33196_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33196_00/735b74cf-98e6-48d2-a359-a0fefc18d869.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-20T00:01:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33198_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleDetail\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33198_00_00D08574222A2DCDD1A9B59A2269879F2F5511D0E5/CB3322B7A8435BB27744A76204774AE80F93DE32.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:59:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33194_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33194_00/20f2e9d8-dac4-466c-ade3-6077259024d6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:58:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33197_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleDetail\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33197_00_00016931D63054C3D9F983295D7E17AB9190C614F1/CC8AA885BBF56A303C63ADC1F81365A361EDA436.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:55:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33193_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 7\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33193_00/191313fc-07f7-4f0d-9ec4-97cf184fbd48.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T23:53:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33132_00/74596468-c7e3-4662-8e5f-4947ec98e0a0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:35:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33120_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleDetail\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33120_00_00D2993D98B37CC809AFCD4A0B288E568C2239F34A/0F2E0D7DD00D32AC4332317888BAB95AA6B9950B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:33:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33121_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleDetail\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33121_00_00849C227557FE5DA2D6A2D6F3E7EDC7FE6081901D/5D20D0B8284F3259FC13F309F1A522136DBADF14.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:10:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33133_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33133_00/9aff43a5-b698-4192-9f51-237d57242cad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-19T22:05:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10261_00\", \"trophySetVersion\": \"01.07\", \"trophyTitleName\": \"Nioh\", \"trophyTitleDetail\": \"Nioh trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10261_00_00CAA2186FFF8ED4ABC8FA441A9B72DB43BFD322F8/B4C5186F0DC63A3704590DCEAC632E16BB3B249F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 73, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 57, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-16T14:39:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25668_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rise of the Ronin\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25668_00/f1926e14-1f44-4f24-810f-354981d9a185.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 39, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"progress\": 43, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-15T19:26:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07810_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Mortal Kombat X Trophies\", \"trophyTitleDetail\": \"Mortal Kombat X Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07810_00_0054969164A03E16BAADD6EB211B468C189A8ED02D/1C92481E3F14B72FE8ECBC4706B36FABA921AB5E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 67, \"silver\": 5, \"gold\": 1, \"platinum\": 1}, \"progress\": 6, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-04-06T12:37:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18676_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"RESIDENT EVIL RESISTANCE\", \"trophyTitleDetail\": \"RESIDENT EVIL RESISTANCE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18676_00_00EB85B86B30205AE32F3E431B5C1CB7086ED5F8BB/C32F2594979DA9EC44C46CC15E39EAA99CBDD85D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 43, \"silver\": 6, \"gold\": 2, \"platinum\": 1}, \"progress\": 37, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-31T19:33:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mortal Kombat 1 Trophies\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29323_00/9f6da658-9c09-4a11-8897-8b453ce0fc37.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-30T02:59:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33408_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Last of Us\\u2122 Part II Remastered\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33408_00/e66332c2-c7c3-48d4-8e31-51fa2b8c98b7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 23, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 83, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 9, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-29T14:58:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05170_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"KNACK\\u2122\", \"trophyTitleDetail\": \"KNACK\\u2122 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05170_00_00E93DC715741E698213E181A2FA09080EF704526A/822C92C922A51855BA52E8A411B74532B91AE73D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 24, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-29T00:30:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13348_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Last of Us\\u2122 Part II\", \"trophyTitleDetail\": \"The Last of Us\\u2122 Part II\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13348_00_00B23E79CB15709D3B459815B6DE97B0885530CFC3/4F0195E8FBCEF12F5410716F3E4C409DB6A098CF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 11, \"silver\": 9, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 9, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-23T23:52:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36103_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Robocop: Rogue City\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36103_00/dad1c103-0ca3-4e2d-b318-c0449140d0e3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 13, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-21T20:12:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23172_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STREET FIGHTER 6\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23172_00/3e4b43b8-a877-4fff-a306-6cd877480d1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-17T16:41:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR39164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Brothers: A Tale of Two Sons Remake\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR39164_00/a639740e-260d-4171-ac7b-4dca9a2c46af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-03-16T22:51:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23200_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Crew Motorfest\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23200_00/b22cc4a4-3cca-4215-adf4-9853a4599546.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-22T22:02:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28253_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Crash Team Rumble\\u2122\", \"trophyTitleDetail\": \"Crash Team Rumble\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28253_00_0018705534E42AB6AB9C6B695308D574CC2BA7DCEE/323D05DB60283FE2AEA9420A5AADD58E1F3E759D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 6, \"gold\": 4, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-18T21:12:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34665_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"TEKKEN 8\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34665_00/84b5dde4-858b-422f-9b0c-9ad5d856b3da.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-17T22:31:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28680_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28680_00/a372f37a-dc7e-4f4c-9f97-9d43c71507e8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-12T22:11:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29343_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS\", \"trophyTitleDetail\": \"Trophies for NARUTO X BORUTO Ultimate Ninja STORM CONNECTIONS.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29343_00_003C2BA89A3DDD02EFDDAFF44FFBED346A88310710/EB009A3F4420613A0C21C665B69DD60E9E4E1961.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-12T20:41:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25488_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Suicide Squad: Kill The Justice League\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25488_00/fc8af52a-b9f9-4984-a719-07eecb4cc108.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-02-09T21:28:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR02153_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ben 10\\u2122 Galactic Racing\", \"trophyTitleDetail\": \"Ben 10\\u2122 Galactic Racing Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR02153_00_0085C5EEB64C82765DE39D606650334F3291F8DBA3/B5645E20B8666EC799D61A114DD872487F9D96A5.PNG\", \"trophyTitlePlatform\": \"PS3\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 39, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-21T23:07:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32558_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\\n\", \"trophyTitleDetail\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32558_00_00D648CA53E893D9630BB4C94D4271CA95CB956AAB/AB6CFDED73632EBC4F56AFFD6500C24B19D03B6F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:34:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32575_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32575_00/7621d5e4-5fbf-4c94-85d9-18f2c3caede8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:32:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32559_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\\n\", \"trophyTitleDetail\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32559_00_009FA9D14A4CFAB3D15DB2B6CBDEC90A427AA8E453/46EE9650405CA7DDE9D1E4384D40BCBECCCD0F7E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:24:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 6\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32574_00/2ea4bb65-b461-49db-a46a-f0a12e2551c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:21:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32557_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleDetail\": \"Platty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32557_00_006B6710B16EC8FA0DD4F355E47EA507DF96D766AD/035239406492223BE1A0CB33EC564DBB54EFF1C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:14:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32573_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32573_00/b6e0be7d-ab6b-4b28-b732-40f640a55cb3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:12:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32556_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleDetail\": \"Platty Bird 6\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32556_00_00F050B78E0806CB82D86FAF189984EB0A1C81DE87/D5D13FA21272D0EB4EEB81229AC50948618F5AA1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:11:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32572_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 6\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32572_00/b84ab4dd-64c3-4e6b-93e0-6585643139cf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-08T11:03:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32552_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleDetail\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32552_00_00DE988112585D789043077C39EFFEE9C69A23A266/820F65D76DAF151AED61D4B740BDE9C4885F84BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T12:48:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32568_00/a53a98ba-812e-4d19-b3e1-df9b8c28b570.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T12:44:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32553_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleDetail\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32553_00_007A9F7A29FFF327A825F6D149DDC185ED02FE03B5/324E692970A312F6E36F591472413624CD2CAA2A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:57:17Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32569_00/9c7e85c8-8432-4124-862a-025b1bc131d7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:52:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32571_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32571_00/fbc2c9bc-dc71-43b1-b3cc-f7d84d568aa0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:47:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32555_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleDetail\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32555_00_0097B8477294AFDBF245ADC9193D370207A29A53BD/45D2E2507BD74D30454E66AEEAF4F529125C7338.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:45:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32570_00/59db39f6-4aad-416a-b68d-8aabf339358b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:41:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32554_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 5\", \"trophyTitleDetail\": \"Pretty Bird 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32554_00_0075CB33C8D34233B92FACE48F4A2E973BACC205DD/031B865612C985E831B018F0A0E8E3054C8875B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-07T11:38:04Z\"}], \"nextOffset\": 250, \"previousOffset\": 199, \"totalItemCount\": 1446}" } } }, @@ -420,34 +417,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:52 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28052" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28906" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:40 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31336_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31336_00_004AAA2970BA87566283514ACA79B0549E8A4EFA66/1FEB8BB664F4A59AF6F6D603E5B791DE678CC8BA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:25:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32781_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32781_00_0051672FCFE2FC10DCCD5C3EC4E6AFD1C093F9D947/B9C50FA4D6E4C4C60A4F4AA764D47A15C95E086B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:35:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32786_00/f205b2ca-8747-487d-b8e2-593c98ed5b4e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:33:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33483_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33483_00/d2a4ae87-f0ea-48fc-a3c3-f1b7cc0e104b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:30:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33484_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33484_00_00AE31098652C734EDFCEC93B37C70B1B4732D1AA3/05D144D5C5E167EACE93A0570D62C1EE099E15C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:29:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33482_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33482_00_0057813BD164A0F4666E9242E60FDEFE1EDE1D7C2E/6330EFB32D79EF168A9E956B8565C1FE351CE76C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:28:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33481_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33481_00/9600f66c-b9ee-410b-9c69-c47531714d46.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:26:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33479_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33479_00/d1a63e62-cdee-4c55-8433-99d5d65ad25b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:26:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33480_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33480_00_00A8975B9C8ABF3E0931F170F66E07C804BD46C0CA/CBE90AA425405EA1C6CF11C0B3A309D7EB603EB3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:25:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33478_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33478_00_00060632D96413622E8933CBFF73D2DF1D65F2A9F5/4D213685C610EC690FC7EA63E25DCB1A4490FC0A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:24:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33477_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33477_00/1278289f-5d3a-40d1-8b09-567193512851.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:22:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33093_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger - Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33093_00/11b9f2a6-52ea-49a9-879b-2ed12c3c672b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:28:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33092_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33092_00_004ED8A4707D454132BC70D5FF7AC170A52D4D4CBB/72ABDAB256708A0698A16C5BCA882B2216B858EC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:27:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger - Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33089_00/e4a2aa32-041c-4ed9-b69e-c47354418feb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:25:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33082_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33082_00_0008A4E2A99150CC9EBD61B08B168FD5D3A9EAFE44/A9266ABC49FD4C83BC6B3E4AA851AC54EE16CA01.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:23:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33083_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33083_00_00E693462DB8147CC5CC1B67FCAC842F721414A110/20F41233AE9B3C8685FEA1B7C727E2CA3976263A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:21:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33090_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger - Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33090_00/492f4d6f-9c9c-44da-8ba6-09f3f1fb60dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:19:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05866_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Pure Pool\\u2122\", \"trophyTitleDetail\": \"Pure Pool\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05866_00_000281E4A0D2DFD9B918716BB68C56D104354688D2/4051DACC41C0D9FD19E309B5A09C0EDE210BEB7E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 31, \"silver\": 17, \"gold\": 3, \"platinum\": 1}, \"progress\": 60, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 12, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-23T19:40:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33118_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleDetail\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33118_00_00B3734745A2A3C058E0671AC825E4C09B19221C5F/6CBBBDB9925B3886BDABAE63CAD904956775768B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T13:06:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33130_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33130_00/d3497137-ef08-4a73-bdac-2e179ee81d6d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:58:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33993_00/54ae8ab5-0448-47e1-b91b-54482b771684.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:45:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33989_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33989_00_000D80F8EDADF8BFD4B6FD7FDD4DBA65C450373F89/9D4D96439690FEF58C768B5AAD6C2BBE43D64E0F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:36:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33990_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33990_00_009944100EFC7CA957AE57631EBCDB87A3AE474A0E/9928BE4B618312BB4E5DE12B4DD345D73DC5723D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:27:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33994_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33994_00/c7441ac6-afc0-4ab0-afd5-ea7484abb740.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:18:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33995_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33995_00/386b735f-f83a-470e-9194-87f01dac1086.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:08:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33991_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33991_00_001F1CCC943A46ACA33BDF7626B5F1D4834898191D/B609C5BC6E4DE2DC9EF339E81F094CBCF48E7C4C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:00:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33988_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33988_00_0034CB5D9981E343700664995A0AF771B7E839E122/F062E8902C643078CF5FC42515A678AD3A4C3B05.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:50:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33992_00/59335ef1-bed9-4472-9a91-21a0121cef0d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:41:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cat Fun\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33242_00/fa0b9c08-e3b5-43cb-acc6-96965aa78d2f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:31:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33240_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cat Fun\", \"trophyTitleDetail\": \"Trophy set of Cat Fun.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33240_00_0082FC75BA7C0A88B2A879105F3A995CADD29D415B/0F360093F3B167AACD5FCA86487DBFF5D18CAC04.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:29:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32561_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32561_00/ce7afa07-b2b4-4d41-943d-c8381dc9a9b3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:27:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32545_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleDetail\": \"Platty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32545_00_0027266F2A92185F3F2B49FA5E040D13558A300A98/D9BA7218A0F6A39ABE2168FF8F3201B48D4175E9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:25:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31256_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31256_00/32fc5b7b-c06d-44f8-8a69-3bb25b7bc08f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:24:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31257_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleDetail\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31257_00_00BC729C60775D32ECEC493CE38CBDF7C70AC8E3E4/1DC51177812BE9F220CF0A65C7FB907C6D969BFF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:22:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32629_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32629_00/cce3afff-0d45-4b7a-a15a-eba7208cf86a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:20:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32628_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon Quiz\", \"trophyTitleDetail\": \"The Pigeon Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32628_00_00D45826EAE9E8C7F07981932BE760DD596D817160/0546DF9E50002D54AE8C68056CEC5D5826FFB5B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:16:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18604_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Nioh 2\", \"trophyTitleDetail\": \"Nioh 2 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18604_00_00021C52A0BF7E02D40E6854B5595C6302F4C2D3FC/AA961BD080AD81CA3E84A12CD6DF4B8BBCA8BA18.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 87, \"silver\": 5, \"gold\": 2, \"platinum\": 1}, \"progress\": 52, \"earnedTrophies\": {\"bronze\": 43, \"silver\": 1, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-20T21:58:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Shark T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32164_00/c9819be8-3af7-4f32-a82a-e2965e09255e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:22:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Shark T\", \"trophyTitleDetail\": \"The Shark T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32163_00_0048C4CA9F9EA841AC9791AB39C32601CF0FB54171/9F81932DF50F50791903DC6054CC7E38FF1019C4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:18:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30707_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30707_00/2e0cccfb-ffe3-4c24-88f8-fa06e4cef3dc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:14:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleDetail\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30706_00_00BD68C1EDDCF9DBEE13DFCDDC654A188ECC8162EF/B819048B65603BAEB2D051F1EF96010D7445062D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:08:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31262_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleDetail\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31262_00_004418D9544057CA701E841584B747AC8184B283D7/6A573DB393DD4D0B51EB3BD15E73DE8C1E3D931C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:56:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31263_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31263_00/1a904e46-a8c2-4535-9d6d-96dc6373d490.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:55:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33733_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey: Nitro\", \"trophyTitleDetail\": \"Truck Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33733_00_005278D0D52EBD69677F680508CAA8D38946F50C32/B0F46D45B84A87463305F139C276DFEF40488A93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:53:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33732_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33732_00/949a1a65-9a3b-402b-af4b-f225695a5fc5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:49:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38295_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38295_00/411db420-0629-42e8-956c-b111447bb083.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:44:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38298_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38298_00/067e9dd5-560f-4beb-8315-462e3114586f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:38:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38296_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleDetail\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38296_00_00422127EEF30F77F26C5D4D450CAF11C510A626FC/9714C49DCEE91E8899AF235D70CB4889EE4EB477.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:24:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38297_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleDetail\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38297_00_00712CAC92B03C249E53EC141697E566F56308C6C3/9FBEC3FE658CEA4DE2E192BA63E8E56228CEBCDB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:00:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38300_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleDetail\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38300_00_00BCF415F8054D9672AA042997ADAC9F01D1160A0A/93C42EEAC8355D19CD0DE39B2E10BAB19C9BE1A9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T15:36:45Z\"}], \"nextOffset\": 300, \"previousOffset\": 249, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32551_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\\n\", \"trophyTitleDetail\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32551_00_0009E9793D410D1404B5E64F4648002A5D01B28688/F3F98FC91DB22F2D29DE7AF7AE8D2AB2A512AF51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:21:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32567_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32567_00/d69bcee8-86da-400e-b93c-9e595bd19d21.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:18:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32550_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\\n\", \"trophyTitleDetail\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32550_00_007235137ACD4DB8A2BA32099EE485F149C1551D4D/27348D0984C57E43532BE32BD875AEE3A205208A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:17:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32566_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32566_00/e3e5b8a1-9ff4-4c03-83be-8ce4e34dde98.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:15:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32549_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleDetail\": \"Platty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32549_00_001F9ADB0AB0B003B92A823F275B763114DB5F8A1F/6E7D96C3BD0677F6AF6B96509E3685B425D925C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:13:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32565_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32565_00/17d8e4bb-1b50-4d6b-8c9c-3cea4b9ae45b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:11:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32548_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleDetail\": \"Platty Bird 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32548_00_00E70649F476FA756FFCCC67CEEB3FEC6B791F78D9/223456DCFC93E9C4EF762016998F92920F7D9DE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:09:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32564_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 4\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32564_00/0a9e0eba-c011-41ca-bf07-63db12d36c74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T21:08:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\\n\", \"trophyTitleDetail\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32546_00_0031072BC93141B7168AD2664DFFBE38E381CDF924/EF18C6B79AA632B20F6D8137440DE26D44C90B17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T16:00:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32562_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32562_00/12875719-6c99-48b7-a45f-6455e12a2810.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-06T15:58:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32547_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\\n\", \"trophyTitleDetail\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32547_00_00654ECEEF391BF2D18A9D80640657199733118DAE/D0955D05F3C248F7F3FC8A88A334594A3C536704.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:45:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32563_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32563_00/d080f13e-1f58-4510-a090-b4b1377859c9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:41:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleDetail\": \"Platty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32544_00_00A4C241F7E4D297BE32BDEE821EA155C6DE3BE5EB/425DC9B1DF109DF963BD475F180707EC7C5BA08D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:37:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32560_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32560_00/248eebc0-2618-47be-bc4c-9685ea22f17c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T23:35:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32542_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\\n\", \"trophyTitleDetail\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32542_00_00DD684B3C6BFF5B957CBF17E234BE100FEDF041C6/06B5706BB1F6B2669CB7825B28BB874F610F45E2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T21:08:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32537_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32537_00/a30133f0-aba8-4f97-93d7-e8941fe3aa34.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T21:06:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32543_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\\n\", \"trophyTitleDetail\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32543_00_00CDFF4A5CF7288B75ABB07408182F02B485E5D2DA/E05265F1700D5B5E47A58F7098930C05C98B03FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T21:04:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32538_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32538_00/34558cc8-a739-48d5-9aa7-c5913cf86254.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:59:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32541_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleDetail\": \"Platty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32541_00_0074FD6F679E34642087BE874F387F39988047E5A2/1ACB66206CFDE3F821AE3D22D767D2657A5A3F36.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:57:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32536_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32536_00/7357efe9-6748-46fc-8e44-614d92f4da25.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:55:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32540_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleDetail\": \"Platty Bird 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32540_00_00A741997FEF6FF2569DC0612AB77C8E8555287409/B6C956184014756F02139DD8DEAFBA59D480AEAE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:53:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32535_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32535_00/597398de-dc76-40dc-999f-254a31bc3b6e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T20:51:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32324_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32324_00_0054BBF1D538BFDACD06FEF24195CA1D57F9A06C21/52C36DC52108160A695B0EC99B1AAE3AE8BBBC7A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T16:07:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32328_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32328_00/7e7d38f0-d6e0-4c1d-b068-7eccdd8417fb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T16:04:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32325_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32325_00_0090B1E2C723F40763AE7D4A2055294624E29E7929/573787BFEF0512DA6050AF3F328A45028F139797.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T16:01:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32329_00/a69806de-ce50-426c-9028-74288bb2a418.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:59:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32323_00_00ED6549241053550D0DA78C175CA32841742EF875/3988804D476BA70695963B92CC6C38A02D6CD529.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:53:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32327_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32327_00/add0278b-cd9b-431e-a1dc-3233786296fa.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:52:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32322_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleDetail\": \"Platty Bird\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32322_00_00D00390625F41E971438282FD7AD30A085B15ACCE/E649C47F0899D2772D755A9235F99162CE583C90.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:46:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32326_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32326_00/f0b11dc1-3969-42fd-b4f2-140974b35d6a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T15:44:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35640_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35640_00_0076943531773EAC1EFADC88DECD48E2D8169FB5C4/21C504CF4108BFE287BEA7DFE498A28DD1C96D5A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T00:09:34Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35644_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35644_00/585dac43-6fc2-4fd8-9e1f-f9bc595df7b7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T00:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35639_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35639_00_00D9EACF2E44F15ED3CA82B8B714820720E523E969/19BD37C5C8822B0F54CC6D18FCA1D2165DA62436.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-05T00:02:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35643_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35643_00/8d107307-df13-4f70-8075-34b47ccf1a01.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:59:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35637_00_00C75A6D56503C787CECF6B1C650CA7F4D3EEB2A9F/61EAD82C3609E8F7333D5230D6E90363E7D435CD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:55:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35641_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35641_00/bc2a0340-49a8-4572-91df-aa21ae2849af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:52:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35638_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleDetail\": \"The trophy set of The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35638_00_00AB41D667F98DA0E56B8DCE8403C0F12212AA5149/95A1EFBFBCCD03BF0A7A797F40165B893B1FC3B9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:48:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35642_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Onigiri\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35642_00/814378b9-b594-4937-b065-5ec75dc3ca9e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T23:44:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32083_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32083_00/1baa1085-6178-49f9-9a9c-010ccd2b0d84.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:18:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32079_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32079_00_0026DD5FB290D17A86DC7DF0AD585B13E04216856D/57FC0BBFDC8FD45454BC5D5D43BEDC1FA18F2518.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:16:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32082_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32082_00/b27bc2ae-c051-4b3a-af92-7c02c1632707.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:14:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32078_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32078_00_00A393596D89CFC61D3F7E7FDB7D82B9F5DFFC5EE8/5B6F951790105E044BB93EB5ABAB1CA528954DDE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:12:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32454_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32454_00/4f94d0e4-21cc-4008-9733-08111b9b5a57.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:11:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32450_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32450_00_0006511A272D2D5CAE5609FE7ED04460ACE805FD13/0A318EED8379D6E21D5EF34E86F1E5712BE27BE7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:09:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32455_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32455_00/8c38c018-a3e8-4c7b-a72b-f4e42647f442.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:08:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32451_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32451_00_00B30365C983F0B6280E4A44ED8E7FF7E4DE50C235/A1347418523316836B932A014F1B41791616A9C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T14:06:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32452_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32452_00/70b109e7-034f-4e5b-9f60-69d66db81df5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:26:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32448_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32448_00_006A408F5172D8582A94ACB60A69855DB59D45DCE4/F548964F048221176C8E35C273AC760CEFBC05B1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:22:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32076_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32076_00_008F8366FC25E7FB41B23AC3ECF005DBBC77EA26C4/510DC64897788F871D5A0DF84EDD83509B32EE8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:19:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32080_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32080_00/a1f274d4-6692-430a-adf2-0f2fafefd40c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:15:02Z\"}], \"nextOffset\": 300, \"previousOffset\": 249, \"totalItemCount\": 1446}" } } }, @@ -483,34 +480,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:52 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28347" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29025" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:41 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38299_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38299_00/732d51af-0b93-4a8f-b3df-c458027b68b5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T15:29:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35186_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35186_00/656afc54-e62a-4fe4-968c-9a2755e948c7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 69, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 69, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T12:40:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35182_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35182_00_00FFD80A0BAADE9B8AA6588123BB172DEAE903829E/AC1FB956496D03F89BFD813888E8DE8E4255342E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T12:38:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33763_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Rex T\", \"trophyTitleDetail\": \"The Rex T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33763_00_00D2A86E2A3CB122406F5B0E959DB0989AB8553AEE/DA9B43A1E618BEBFA9F88F1A29EFA47B2819EF02.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:31:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33764_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Rex T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33764_00/02a16a7d-49c0-40f6-9b98-8141b09ba33b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:27:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32821_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32821_00/bda60e39-f1c6-4e45-a6a1-69038eb6abf9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:23:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32818_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32818_00_002261CB8C9ADA831882177312965BAA7931EFDC83/99B9383145BE9F38486B6453700B818D484011B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:19:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32823_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32823_00/d17cf937-43a6-4cfb-9baa-89cda1ad8a9e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:53:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32819_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32819_00_00386CF573E0CEAF86F28C29FA7BF8D32EDF6A16D8/51C8025BFAD77984C8B7CB4B92289EF2BEF18674.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:49:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32817_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32817_00_00B4D293EE53854B316A9A2E6EEDDD7CB911CEB7B2/235FBDF4D6D128D4368F360C5D4C9386747EC601.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:46:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32820_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32820_00/db492220-604b-469b-b93e-1cda39060c7b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:25:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31984_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31984_00/6878bbf9-4fd1-49a6-8bdf-7ce09956988c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:21:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31979_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31979_00_00C18A71019E74D3F814B9A92F3CC18AD246F6FA53/2873FC24C5F561C9613F8759F12ECFF7671745DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:18:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31980_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31980_00_00D51911E7C4616DE1FF781F8F5377809AD46D7BEC/5ED73713E21CF69906DECC39EE9F68D4FC450E74.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:14:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31985_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31985_00/209da54d-3b79-4816-bc23-e554343887ea.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:10:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22156_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Control Ultimate Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22156_00/2dfbf30c-ac5e-4930-bd24-4ce32e13f7fd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 50, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 90, \"earnedTrophies\": {\"bronze\": 45, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-09T13:26:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21656_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Forspoken\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21656_00/27d88c5c-f35d-4891-a052-c83dada81edb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 47, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"progress\": 31, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-31T21:17:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25764_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"Sniper Elite 5\", \"trophyTitleDetail\": \"Sniper Elite 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25764_00_002CC5B9CFA11A1D2A39E2E07CC617BBB762A8CAC3/153A47C20196541951C49A854A790B1048721044.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 53, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-23T15:01:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19742_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Stranded Deep\", \"trophyTitleDetail\": \"Stranded Deep Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19742_00_000D1954AA2F2C085234C504104F6F657F2B71C00E/CD3B327923C37C0087EA93A721438A3846F46371.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-15T10:22:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35185_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35185_00/b76ad686-9a6f-46c9-adfe-9007884bd215.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:52:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35181_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35181_00_00BA02B32F1CF5A85345779F3C1CA0FE345EE81BE4/DD38DCCD24628D2EA3CCC80589CEF5752728E91A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:50:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35187_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35187_00/b234d50e-18e3-456e-b88e-e9d8f5f994c1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:45:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35183_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35183_00_00084B98EDD495784A65981F1A1EDED3B96D74F75E/6B7E12DF68FA00E2D1FA20F7BD1336238C650A14.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:44:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35177_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35177_00/c02960c5-cb81-44e2-8d6d-3c65e145ae84.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:41:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35175_00_00D77D38F8DED8B39987EB16DF28AA14D3901914E8/1AB178E0494E9AF09821527495FEC5FC612869DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:34:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35174_00_00B7A285B1B89B6C7438A729054742B8AAB90EDF77/31D273CFCDC78329E5319D167009C9E7A32B91EE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:33:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35179_00/300b2ac8-aa96-4adf-b432-84f4cf59cfa2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:31:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35178_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35178_00/7cc27b26-24da-4fae-ba9b-4654376ebc9d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:30:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35172_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35172_00_00EE59CEF716906C73E3E6CBD76EDCF2964FC95354/AF15BB2F516B49D024507CE0CA1655257466AD48.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:28:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35173_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35173_00_00EC66D376C2D1F56CE53DFD1CC0D4518C2E99FB30/692AE2833C5E62B7D1AB890FBF90CF58FB4BC113.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:27:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35176_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35176_00/4118d4cb-c5e8-40e9-be50-904ae3008f18.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:27:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31332_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31332_00/9a1189a8-7d3d-4d2c-90f2-62d8ab57997c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T22:06:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31328_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31328_00_00ED7A1D252358E19D9EC2A71274B3FDE4E9CAAE26/DB8BD5DA0E1DF8C2935D609EF72FD7BC30858361.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T22:05:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31333_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31333_00/174639f7-3769-4201-80c7-95f4109c603a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T21:22:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31329_00_00E216591B6DDEA8712CF8A739A796F06C4A70BBAC/1CCFA2B408920B551557D41536B5AB74D66B4196.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T21:19:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32761_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32761_00_005F63CE92E8ECCA56637AE0CEA4AD8CCA94077D4F/97AD86D0B56BB88EE8E9F23DACD75396D486EE4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:47:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32767_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32767_00/eddc8212-2118-4cb1-b34f-d90a6a901b9d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:46:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32466_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32466_00/450ae47b-d05b-46f0-b602-b980b2d07f7c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:44:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32151_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32151_00_004285E005BF033F9971240C0369AA742D746813DE/DE1BFA22408D255E431D2DB45F92FFDB1F77AC28.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:42:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32462_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32462_00_009BB87F5D92C74093ECED8BE29C81576F330A1B1A/58D6B959076BC52591956194ACA10B34CFBE2EBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:40:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32465_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32465_00/1ca89154-bfa2-42a0-8492-a95c9f920d14.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:38:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32154_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32154_00/f29dbe8d-0a1d-4d52-a90f-ac75e3e60a69.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:36:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32461_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32461_00_00E61AAF81E43746138E792FDD77E331BFBD7C875A/85B84F0732A847DC4793477F992810C64D4F4AC3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:35:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32150_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32150_00_00D9B8CD7D0DC5595B1BA91DB69E0125F360FC767D/69EEFC2E54059052745D32B3F23E82060D08B2EF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:34:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32155_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32155_00/cb2866e3-daa9-44e7-b51f-65a17e82c5b2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:32:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34453_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34453_00/67e5819d-b146-471b-8091-81b257b8e9f3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:36:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34039_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34039_00_0044A3B1556E09A310DB645265893350085F1EFC06/EB36830E39BE820B801C6938EE16D8584C6EE791.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:31:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33070_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33070_00_004C84074882FF9306B5F10DF6E2AF9FFC02D925EC/68B4D3BA298F82081D9123179E6AD0D5A8CB76E1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:23:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33075_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33075_00/a21eff23-b3b8-45e6-8ea1-1472a9ef7015.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:20:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33077_00/2a01aeac-2085-426f-954d-a0d23c9d717c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:17:55Z\"}], \"nextOffset\": 350, \"previousOffset\": 299, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32077_00_00B90940609C371319C09B1F97D148A7DB59DCEB00/FD34FB0FB2DF95FB4073B0B889DA260B862B9DF4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:11:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32081_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32081_00/f98ee80b-fa63-4664-a1a1-b4a3d88b394d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T13:08:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32449_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleDetail\": \"The trophy set of The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32449_00_0078F63D0904D185CFE5144C2A99B1B6F570E3D01D/23B66422359BFCF0A5FD3B090995113E4D310825.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T11:09:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32453_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Lasagne\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32453_00/c70cd942-8513-430e-a6df-83da11ee7df5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T11:06:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31320_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31320_00_000B8A328C26EC684E0E3C5CC92DC028A175BC0EF5/B1F5A73E5BE90925D1F075A71565630F45B949DD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T11:01:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31324_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31324_00/8847feba-418b-4a0e-8463-989112f053d2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:59:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31321_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31321_00_002391AFB145CC8AA0A3181EB881FBBAE0FE296489/3A3E1DA4D1B4D988B0C2E9CB734B7DE0B632467B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:57:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31325_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31325_00/667211f7-9176-4b47-bcae-638d654f5eb8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:54:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31323_00/df140052-2e60-441c-8c01-e29278340d01.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:53:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31319_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31319_00_00F6CEEC252217ACF95B2C5085323FEF727E070C59/9146DECEDB63CC5B86F9BDF2A1B823E224148C07.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:51:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31318_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleDetail\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31318_00_003D82EE38385B51C8209F1C3E304716654ED8CD0B/D608010D1FDB3B90695EC6B1AA5402A14EC11D4C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:49:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31322_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31322_00/923c1981-efc3-4f2a-8d72-caebf836adae.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-04T10:46:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33165_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33165_00_00DF33D87278A2607EC7EB0989507D4B7C48917E2C/84A644349FB27D65DE66F63B65825C5E7F49B3D5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T21:01:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33166_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33166_00/ee977929-b96a-4d35-a8e5-efe04f646198.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:59:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33164_00_0071A1AF7D71ABFB4F1CB7D31D617F2BE0F041C7AE/9A0B495F6AAB40F317EB38CB878E363FBDDEB9E4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:57:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33163_00/075be936-f131-4420-a75e-8de5ce54d16d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:56:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33162_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33162_00_006582F00EDBB403054514DB5ADA9ABF806DABDF00/A890BA5A9B383395A60D8785A486210C24F431D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:55:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33161_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33161_00/a3bb7aec-d1aa-414e-a45d-36fcb381e413.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:54:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33160_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleDetail\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33160_00_007672D4B08B16ABC2AB266E38C8F69F582D89FF48/B153D1BF3ED5EB1B5C7ACC183D446AC2B480E10D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:53:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33167_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Race Journey: Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33167_00/50d4a7da-55b5-4ff4-a2c3-045c624c093b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2024-01-02T20:51:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33639_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STAR WARS Jedi: Survivor\\u2122\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33639_00/481c29b9-b5cf-4996-aa55-1b3346050e17.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 44, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 38, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 0, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-11-27T11:27:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lies of P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36570_00/0a9b918b-1da3-4c43-8763-f86c3d0efdd8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-11-16T20:25:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12918_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 18\", \"trophyTitleDetail\": \"FIFA 18\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12918_00_0090E7968F92F35F5A0730A9AF3DE0A201AEF167C0/6DF0E936EDF9312162B49BF16B76A13679AC0E1E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 94, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 9, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-11-03T00:09:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23378_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel's Spider-Man 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23378_00/2ef8f325-47bd-4e1d-b731-cb8647b06a70.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 22, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 97, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 17, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-29T12:51:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29894_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Assassin's Creed\\u00ae Mirage\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29894_00/9f6ed43e-781f-4232-a75b-1e5f36d31719.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-20T03:43:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20004_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Returnal\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20004_00/f60fd55f-a01f-4274-a865-d8356dc0fd9c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 23, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-07T13:20:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24089_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Battlefield 2042 Trophies\", \"trophyTitleDetail\": \"Battlefield 2042 base game \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24089_00_00D21E03E42FB05633D4C2F46D2FE0FF86B9387FAA/9711C4B25F9B85963509E37C231A76287828C602.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 6, \"gold\": 4, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-10-01T23:13:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05458_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Tomb Raider: Definitive Edition\", \"trophyTitleDetail\": \"Tomb Raider: Definitive Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05458_00_00E28041E8641A194CC275BFCD35E0436A3569735B/300269CC413F7596682F157CCF1BD6BE82F101AB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 41, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 16, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-29T22:15:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08899_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Battlefield\\u2122 1\", \"trophyTitleDetail\": \"Battlefield\\u2122 1 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08899_00_001891ED8293FFF90576760D044E5454B54BB0D954/96892FCC6A36A90EF0FBA3EA18BDD505EC8EFFA8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 5, \"definedTrophies\": {\"bronze\": 31, \"silver\": 9, \"gold\": 10, \"platinum\": 1}, \"progress\": 44, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 0, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-26T00:33:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22032_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"DOOM Eternal\\u00ae\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22032_00/aff88421-87cb-44de-8219-a0f5c5be4086.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 30, \"silver\": 14, \"gold\": 6, \"platinum\": 1}, \"progress\": 18, \"earnedTrophies\": {\"bronze\": 7, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-22T02:21:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25852_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fast & Furious: Spy Racers Rise of SH1FT3R\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25852_00/3ed8786f-385a-430b-92a1-b8db2a03e1c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-20T22:41:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24423_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Fast & Furious: Spy Racers Rise of SH1FT3R\", \"trophyTitleDetail\": \"Let's go, Spy Racers!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24423_00_00E6C46D1DB7BB6C958D739918E20EDBE3D78A72FC/E12E311EC1DAA4EEDF58FDD3DD614AB5162AA5FC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-19T22:24:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20878_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mafia: Definitive Edition\", \"trophyTitleDetail\": \"Mafia: Definitive Edition Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20878_00_00C7E2DDDF06FF788794B3E6708FD350F2D6279C12/57E654E1BB389E56F74F063A94E2931E62B36930.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 33, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 33, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-18T23:06:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge It\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36637_00/24c05e81-9dbb-4771-a913-48ca2d1e6dda.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-18T22:54:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24635_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Battlefield 2042 Trophies\", \"trophyTitleDetail\": \"Battlefield 2042 base game \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24635_00_003820F16A6088EE923F98F8EEBA44BD93835F0F1B/84E62E6CF2D98ED7CA9DE196EE87F7B47E8065D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 39, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-15T00:37:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36635_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge It\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36635_00/868bdefb-9507-4cfb-aa1f-d421b2f0e7c9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T22:44:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34790_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34790_00/dd2a0a2a-d55b-40a9-9f65-2b93ec8bee27.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:06:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34786_00_00B8304E5FACAC372742EFB51A40ECA04CA87B59C0/F7C084D5D26F90553978231CDCBFADF7ECC7B99E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:05:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34783_00_00050FFDD5A02DB9327057BF6D99B7D3657785D489/1E3DEE4AEC0C1DC284085DC7B23D165425815D65.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:03:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34789_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34789_00/6052f1c4-5fb6-497a-b219-310bf1d94499.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:01:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34787_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34787_00/b3691957-c160-4388-977b-9101e1963412.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T20:00:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34785_00_0067162E4474A1E6E3312EBA7389668AB487744EF6/A66D5E9AD1EE44484CAA75EB04C8D1FDFA78DB16.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T19:59:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34784_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34784_00_004C692DC9271EAB18F42AD1F241B0BCAC33C643A4/7290795E28BA75DDFC17A6249D93DF0E817941C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T19:57:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34788_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Muffin: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34788_00/8f388abb-13fc-40c2-b847-79f680cd9c31.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-09-10T19:55:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31341_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31341_00/d4970c46-edc5-4dfc-84e5-3fcf38d442eb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:34:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31337_00_007F1E1C2D521E58FBF9024CD0F1FF6BC823FA93E6/13941DE2C91933CFB6C98D2A25858B12E93795C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:33:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32779_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32779_00_0019EAD64A6340EA6679F4E5EF538A5CD3BACDE599/674E4DEEDA320170E428B06BC4DCE2BB55BDE8AB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:30:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31340_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31340_00/2b318ffc-7e2a-4110-a175-64b41ad698b2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:28:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32785_00/bd03bfc2-9f05-4cd0-80cc-84c07e1be61c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:27:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31336_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31336_00_004AAA2970BA87566283514ACA79B0549E8A4EFA66/1FEB8BB664F4A59AF6F6D603E5B791DE678CC8BA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T16:25:42Z\"}], \"nextOffset\": 350, \"previousOffset\": 299, \"totalItemCount\": 1446}" } } }, @@ -546,34 +543,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:53 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28058" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28922" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:41 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33069_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33069_00_00762F4877A65C5E4C46D7B289EEA920970B420A01/2D81D8896D269E00929D6E55188730FA06B9CFE1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:16:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33068_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33068_00_00990E314352A34DEB56F8B056390C980166679174/DC599E62C01FA6EA1B66303D2FFE0A64176B9C78.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:14:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33076_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33076_00/6ed6ab7f-5cca-48c7-9275-b6c3398e437b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:12:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34772_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34772_00/6813acb6-83ef-481c-8a02-3ab897a40b87.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:37:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34768_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34768_00_009770946D67A330FE538B8F72D972A8CE4179C20B/542A49409C831C2B02874F68F219E23675A47454.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:35:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34771_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34771_00/921d3d30-bff3-4dd7-8924-a77b272c6632.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:27:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34769_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34769_00_000DEC27F2A304CF4326E310FFC59ADD6FF11546FA/8B9859EEF4D9AEBDA0887764DB60CE3A81DA647C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:24:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34773_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34773_00/68652a74-43c2-4ca2-9e1a-73f1b26cdcf1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:24:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34767_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34767_00_003B88B559FF6763A63B52DECA1F8028766D6A708E/77A4E80D49E825C44CD5901644D7D8167065E9F1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:19:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34770_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34770_00_00AA7267268B75F69889623ED3ABE42F6DB93D1293/55F23E5135224FCEEB6EA4456119587497D6790A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:46:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34774_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34774_00/cf2ad04f-4ba7-4a4a-ba2b-d5eb7f113428.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:45:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32921_00/db73d2f6-c5ff-45f3-930f-5603ce8f231a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:38:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32920_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32920_00_00742A0E410561743CB193ED24345051EA68C4BD56/0E43FFACCFE6D11FF4553BF9460D416212ACC8CE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:33:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32922_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32922_00/4c6999a6-a382-4aac-853b-997a9c7e79e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:17:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32923_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32923_00_00C5F7BED8F8748A65A9EE2E4F90ADCEC281EC8FC2/4DABDC4AE69E005545B3D5C5DE95101317739E78.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:15:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32925_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32925_00/1dc32810-fb48-450b-8953-96844578f4b2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T19:40:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32924_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32924_00_00FEE81B8F00E8BC8D95E03A56039C556C41EE9483/D16B955EF73405DC40DC75511D1A0990E7711392.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T19:34:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32927_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32927_00/46d2696b-e7cb-49b9-97f2-733d0430cbfa.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T18:27:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32926_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32926_00_0063FCCC7736A2CBAEF80D2A0E6DD0C9482E99EE38/AE66BA676181B1ACD81CDEF9C5687FEB8E6608BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T18:25:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35327_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35327_00/3190bc21-dfa2-4f29-baf7-a3101f5e0bca.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T10:13:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35326_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35326_00_00C5BC3EA9547C2F24E05EDF8C894590E1E3C847F8/A4045F5A4B57CE9507A44D088A0FD1AA77931D96.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T10:11:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35328_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35328_00_005066C0892C5AE2B2F765BD26C6C7D6DC85DE46BC/8E497AC2CCCF36C4EFFE76247FB20D8C28BD3759.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T09:59:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35329_00/ce10c2c1-ca6e-4162-8cb0-c5f416bab666.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T09:57:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34090_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34090_00/222da0d6-a311-406a-8345-96eadd9c1f31.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T12:29:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34091_00_00C8C0716CC8D25050C38506288F48AE1BF8AA9219/DDC54E97280F4F9FB1A2FCA60795A7E12B2092DE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T12:25:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34088_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34088_00_0097220C1FA6942B5DF56C691525CBA4A95A021AEA/D2A7977D55E9BF3CCBB633DDF8EFFEC5BF6C949A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T11:56:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34089_00/6f8f5470-a5aa-4e4a-8083-fa74754c6bc4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T11:48:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34086_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34086_00/400b48d7-48c7-4f6d-a0e7-003bbf8895ce.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T10:57:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34087_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34087_00_0074633F550BEBA7AB788A3310584FCCF29C730792/2DED1E3C8CF8B820868CDCB93DABFE0B654B55B2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T10:54:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34084_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34084_00_00A4D67F5C4B25DD4122E62612732C5E09DC90428E/36BF7283A2DE37B53E2B09902C7693D36E243462.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T09:59:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34085_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34085_00/f5abcac7-ad5b-462f-9bef-c93372828a4f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T09:55:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34960_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 9\", \"trophyTitleDetail\": \"Pretty Bird 9\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34960_00_00C53AFD3E31B27F8478D17E1253CE16371E13115B/5D796AC5C0B0DB30B59D14A5753740CB4A00BBFA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:29:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34964_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 9\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34964_00/c4c45c98-d908-4511-9e6b-aa551885ab50.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:22:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35212_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35212_00_004A49CF1AF56B659A334047F63947D5A4358D5752/FBFAAAFEB5B90BDCABF96C9FEF5365983C35B763.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:12:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35217_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35217_00/36b9a727-1a27-4e18-b1e9-5a54e96fda0d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:11:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35218_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35218_00/7474b7e7-36d0-431a-85ce-721322765bd2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:40:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35214_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35214_00_003386C55A75F2DFACAF26C93D6FE2BB13AE820DCC/0F5877E41ECAD65E3ABA4B82405194F6A484A185.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:39:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Italy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35205_00_0066C99C976045D198C09BFF9C66E8AB9E2BC76621/B303DCE3A88C0EC97B56D9E8BB698B2010FC3865.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:34:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35209_00/e63f9c93-edb6-455a-91d1-beaefe98df53.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:33:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38318_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38318_00/e64c562b-5bf2-475e-9485-988751ed6cee.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T13:03:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38319_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38319_00/29911e20-d24a-4834-9992-e36fed750cc1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T12:17:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38316_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38316_00/dc46527e-56b8-4b5d-a256-53a45a38eda7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T11:36:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38317_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38317_00/5309ad43-b095-4679-932c-84569372a706.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T11:23:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33493_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33493_00_00112790C0B61FB6383934180814F45399FA2FE8C7/279DDB978CDAEE5ADC18A188C0580B0E23F5A3B2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:43:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33492_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33492_00/5253d7c1-1ff7-467d-aadf-90b2c6506f96.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:42:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34720_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34720_00_000B657E0A776549B25DDDC09AD1CDBC726460A28B/5BB8BEE61C0144B53EE310FEACC6A76FAAE6536F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:14:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34724_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34724_00/e19f0a72-f330-4a04-bb22-3d90ae5d8f01.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:08:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34722_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34722_00_009A239E4878348A5CBB2308E4590B283CFD0888ED/CC7FC2D6CF8392B57F09AE82B555FBBEB036ACE9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:00:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34698_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34698_00_002752B9594822A748129F7F448B9F43CAE36370E3/24CA1BD32F31EFDEE52B3D2BF658AF633713FB7B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T21:51:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34695_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34695_00_0078E89C409DADA2EC828C6918F581AAA03F98510B/2D5F90762B0B84EC95C8085B10F9945F74549A69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T21:22:30Z\"}], \"nextOffset\": 400, \"previousOffset\": 349, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32781_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32781_00_0051672FCFE2FC10DCCD5C3EC4E6AFD1C093F9D947/B9C50FA4D6E4C4C60A4F4AA764D47A15C95E086B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:35:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Nuggets: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32786_00/f205b2ca-8747-487d-b8e2-593c98ed5b4e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:33:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33483_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33483_00/d2a4ae87-f0ea-48fc-a3c3-f1b7cc0e104b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:30:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33484_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33484_00_00AE31098652C734EDFCEC93B37C70B1B4732D1AA3/05D144D5C5E167EACE93A0570D62C1EE099E15C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:29:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33482_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33482_00_0057813BD164A0F4666E9242E60FDEFE1EDE1D7C2E/6330EFB32D79EF168A9E956B8565C1FE351CE76C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:28:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33481_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33481_00/9600f66c-b9ee-410b-9c69-c47531714d46.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:26:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33479_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33479_00/d1a63e62-cdee-4c55-8433-99d5d65ad25b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:26:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33480_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33480_00_00A8975B9C8ABF3E0931F170F66E07C804BD46C0CA/CBE90AA425405EA1C6CF11C0B3A309D7EB603EB3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:25:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33478_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleDetail\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33478_00_00060632D96413622E8933CBFF73D2DF1D65F2A9F5/4D213685C610EC690FC7EA63E25DCB1A4490FC0A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:24:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33477_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33477_00/1278289f-5d3a-40d1-8b09-567193512851.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-28T00:22:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33093_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger - Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33093_00/11b9f2a6-52ea-49a9-879b-2ed12c3c672b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:28:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33092_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33092_00_004ED8A4707D454132BC70D5FF7AC170A52D4D4CBB/72ABDAB256708A0698A16C5BCA882B2216B858EC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:27:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger - Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33089_00/e4a2aa32-041c-4ed9-b69e-c47354418feb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:25:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33082_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33082_00_0008A4E2A99150CC9EBD61B08B168FD5D3A9EAFE44/A9266ABC49FD4C83BC6B3E4AA851AC54EE16CA01.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:23:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33083_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33083_00_00E693462DB8147CC5CC1B67FCAC842F721414A110/20F41233AE9B3C8685FEA1B7C727E2CA3976263A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:21:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33090_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger - Halloween Edition: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33090_00/492f4d6f-9c9c-44da-8ba6-09f3f1fb60dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-27T23:19:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05866_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Pure Pool\\u2122\", \"trophyTitleDetail\": \"Pure Pool\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05866_00_000281E4A0D2DFD9B918716BB68C56D104354688D2/4051DACC41C0D9FD19E309B5A09C0EDE210BEB7E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 31, \"silver\": 17, \"gold\": 3, \"platinum\": 1}, \"progress\": 60, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 12, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-23T19:40:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33118_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleDetail\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33118_00_00B3734745A2A3C058E0671AC825E4C09B19221C5F/6CBBBDB9925B3886BDABAE63CAD904956775768B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T13:06:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33130_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Spider\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33130_00/d3497137-ef08-4a73-bdac-2e179ee81d6d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:58:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33993_00/54ae8ab5-0448-47e1-b91b-54482b771684.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:45:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33989_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33989_00_000D80F8EDADF8BFD4B6FD7FDD4DBA65C450373F89/9D4D96439690FEF58C768B5AAD6C2BBE43D64E0F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:36:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33990_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33990_00_009944100EFC7CA957AE57631EBCDB87A3AE474A0E/9928BE4B618312BB4E5DE12B4DD345D73DC5723D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:27:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33994_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33994_00/c7441ac6-afc0-4ab0-afd5-ea7484abb740.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:18:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33995_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33995_00/386b735f-f83a-470e-9194-87f01dac1086.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:08:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33991_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33991_00_001F1CCC943A46ACA33BDF7626B5F1D4834898191D/B609C5BC6E4DE2DC9EF339E81F094CBCF48E7C4C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T12:00:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33988_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleDetail\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33988_00_0034CB5D9981E343700664995A0AF771B7E839E122/F062E8902C643078CF5FC42515A678AD3A4C3B05.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:50:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stroke The Horse\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33992_00/59335ef1-bed9-4472-9a91-21a0121cef0d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:41:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cat Fun\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33242_00/fa0b9c08-e3b5-43cb-acc6-96965aa78d2f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:31:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33240_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cat Fun\", \"trophyTitleDetail\": \"Trophy set of Cat Fun.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33240_00_0082FC75BA7C0A88B2A879105F3A995CADD29D415B/0F360093F3B167AACD5FCA86487DBFF5D18CAC04.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:29:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32561_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32561_00/ce7afa07-b2b4-4d41-943d-c8381dc9a9b3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:27:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32545_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Platty Bird 3\\n\", \"trophyTitleDetail\": \"Platty Bird 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32545_00_0027266F2A92185F3F2B49FA5E040D13558A300A98/D9BA7218A0F6A39ABE2168FF8F3201B48D4175E9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:25:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31256_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31256_00/32fc5b7b-c06d-44f8-8a69-3bb25b7bc08f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:24:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31257_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleDetail\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31257_00_00BC729C60775D32ECEC493CE38CBDF7C70AC8E3E4/1DC51177812BE9F220CF0A65C7FB907C6D969BFF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:22:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32629_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32629_00/cce3afff-0d45-4b7a-a15a-eba7208cf86a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:20:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32628_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon Quiz\", \"trophyTitleDetail\": \"The Pigeon Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32628_00_00D45826EAE9E8C7F07981932BE760DD596D817160/0546DF9E50002D54AE8C68056CEC5D5826FFB5B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-22T11:16:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32164_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Shark T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32164_00/c9819be8-3af7-4f32-a82a-e2965e09255e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:22:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Shark T\", \"trophyTitleDetail\": \"The Shark T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32163_00_0048C4CA9F9EA841AC9791AB39C32601CF0FB54171/9F81932DF50F50791903DC6054CC7E38FF1019C4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:18:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30707_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30707_00/2e0cccfb-ffe3-4c24-88f8-fa06e4cef3dc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:14:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleDetail\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30706_00_00BD68C1EDDCF9DBEE13DFCDDC654A188ECC8162EF/B819048B65603BAEB2D051F1EF96010D7445062D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T17:08:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31262_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleDetail\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31262_00_004418D9544057CA701E841584B747AC8184B283D7/6A573DB393DD4D0B51EB3BD15E73DE8C1E3D931C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:56:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31263_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Snow Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31263_00/1a904e46-a8c2-4535-9d6d-96dc6373d490.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:55:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33733_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey: Nitro\", \"trophyTitleDetail\": \"Truck Journey: Nitro\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33733_00_005278D0D52EBD69677F680508CAA8D38946F50C32/B0F46D45B84A87463305F139C276DFEF40488A93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:53:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33732_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey Nitro\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33732_00/949a1a65-9a3b-402b-af4b-f225695a5fc5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:49:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38295_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38295_00/411db420-0629-42e8-956c-b111447bb083.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:44:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38298_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38298_00/067e9dd5-560f-4beb-8315-462e3114586f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:38:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38296_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleDetail\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38296_00_00422127EEF30F77F26C5D4D450CAF11C510A626FC/9714C49DCEE91E8899AF235D70CB4889EE4EB477.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:24:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38297_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleDetail\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38297_00_00712CAC92B03C249E53EC141697E566F56308C6C3/9FBEC3FE658CEA4DE2E192BA63E8E56228CEBCDB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T16:00:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38300_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleDetail\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38300_00_00BCF415F8054D9672AA042997ADAC9F01D1160A0A/93C42EEAC8355D19CD0DE39B2E10BAB19C9BE1A9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T15:36:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38299_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Do Not Crash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38299_00/732d51af-0b93-4a8f-b3df-c458027b68b5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T15:29:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35186_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35186_00/656afc54-e62a-4fe4-968c-9a2755e948c7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 69, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 69, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T12:40:32Z\"}], \"nextOffset\": 400, \"previousOffset\": 349, \"totalItemCount\": 1446}" } } }, @@ -609,34 +606,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:53 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28540" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29616" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:42 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34696_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34696_00_0075B7F57828EAB5B488A5B174C77F9B3E413F9E6D/D528B2E06FA82CDFADED1CD902C5F6F6A4805312.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T21:05:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34697_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34697_00_00957BB8A957EC7CAA8D3EAD15EC8942DB56ECDA1A/4FE1E9F89EC529DADDB2CB1165CEEB02D7017E5A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:51:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34726_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34726_00/d0885c82-32f4-45e7-9a7b-df3f58f171ea.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:47:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34701_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34701_00/2a5defc4-76fa-47a3-963f-3cd50cca1401.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:39:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34699_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34699_00/07014cdb-cb50-45cc-a698-83b739c79aec.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:15:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34700_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34700_00/3bef7b11-c332-4389-b354-ce0fea808b35.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T08:56:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33490_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33490_00_00782DB11DF5154F55694016B44AE0BDA12F381B83/1110D209D984D283250A66D8D3157250053DCDBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T23:56:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33489_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33489_00/88ac1f07-f473-4fb5-be9c-0c9d5e143be5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T23:50:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31804_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31804_00_00FF838B0FAA42CCE74A94625AD7C10163F011C8B0/831C9DA838286834323860498F7CB1488F3E2D65.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T23:43:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31805_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31805_00_0075BECBAD46218BA1BDE16165ED9D1B8C6D013DB5/59BB8083FC120950F033D866AF4E9C70ECB3150C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T11:35:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31806_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31806_00_0061CA18F4FF468D59C74BE559EFCDE9694C889335/444EBA9A98849B3D6AED52F1F5979C6F9D954084.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T11:25:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31803_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31803_00_00229933865B8CFA6186B88E893A48451E1D72E0B1/44495E64D7B54D666EA785AFAD3E6B0A79728EF9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T11:03:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35614_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35614_00/12ef86e3-8754-4c7f-aa62-7dc334e22aaf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-04T09:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35615_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35615_00_0027D1087F69D7912D88610F606B295FF33F738190/F56E9751D765E5D3C69F3AE4D0D000A2D194B0BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-04T09:28:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35613_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35613_00_00898CDD0021197E4FDBD63D769CE22AABA55DF599/F62E5B4EE1910F7F2C2CD5AC9DA7D3BD3B646973.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-31T23:26:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35612_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35612_00/153a6981-0e58-46cb-a4be-b2b0e923e1a1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-31T23:10:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36519_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36519_00/70e9119b-52ef-4b77-8886-2aa38a4faddf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-21T13:14:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36518_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleDetail\": \"Descending\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36518_00_00942BFDEBA59E1E55D56BBA4BD51351674DDA54B9/CB05D2FF92AB2077B88AADB6D6965D6B8785D930.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-21T13:10:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36517_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleDetail\": \"Descending\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36517_00_007EAF009835A4CB281B11C6D631D27FFC228C325E/E8E2A029BA12B6BAFDA2F8E084E6DE4B51AE616A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-21T12:59:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21033_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Watch Dogs\\u00ae: Legion\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21033_00/97c1dca8-af55-4558-920e-3b47e93aa9a8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 25, \"silver\": 22, \"gold\": 2, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-18T08:19:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36516_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36516_00/2f03e970-7d61-440b-aaa1-243d3b3e3696.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-18T08:08:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33488_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33488_00/08bbb057-473a-46b0-8c67-a126a68e6aca.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T22:00:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33487_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33487_00_00B98A99B51E38D320D5B5768E72AB8BAE310F8C7F/83789CFE70D11CC843714E28DB15440763EE04C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T21:46:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33485_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33485_00_00119EA04F5397CCFB82354F7F70709EE7D0AE6ECA/F0535767780AD2D9F1CBBCC6AE84337D08DA652A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T21:40:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33486_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33486_00/b196f239-5e2d-4e9c-8b4a-e780918e35a1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T18:56:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31349_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story Two) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story Two) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31349_00_00F719B635E1B77950A8EAAD7534CA000378D1EE58/29461F843AFA9310FC49C022F8C2DF68FBF687E4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T13:56:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31348_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story Two) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story Two) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31348_00_00145502C83FC753DE1F20769C8FB60A753B6B8518/ECE3C8F8CCED24EB78A0C0595AF7E28917C79E19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T13:50:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38206_00_000F1CE23BB3BB60E7802DDC058EE2FD49200BD650/C9BDC2D6393017993E241AE795E605E88AC60E07.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T10:12:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38208_00_0087CCC64862D783BFFA30419D53CEEB27EADED3F1/8B42096836878799AE586B8B7F3CC6CA696004EA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T10:08:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38207_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38207_00_00F76AFCA23DABD825674A19D3AC3C231D9F43F485/57C0059B5147441C622B58737DB489115EC2D43E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T10:04:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38209_00_00DD9F0441C981D1D9727535D6831EF8C67ABD2AEF/A383DCF5AC65C8F912541618150020294FE46523.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-14T23:00:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23978_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dead Island 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23978_00/493aa82b-8c6c-41ca-bfdc-289c8d829fbb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 38, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 31, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-14T10:31:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29381_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Card Racing Simulator: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the otterrific trophy set for Card Racing Simulator: Otterrific Arcade!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29381_00_0038ACD08F705721C05C6B8809503671668B3F2166/6685B81FABC4E4DDE5383B0F2FE7B85F18666C16.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-05T20:57:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29380_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Card Racing Simulator: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the otterrific trophy set for Card Racing Simulator: Otterrific Arcade!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29380_00_00267D20865E932944ADC53E5E4F861A6876778B02/817A97ABB922AC9C4317BAD6EA8FD5AE95CB0C95.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-05T20:46:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31125_00_00E56F9D5E87D703D28124243035F0EE8FA75A9305/F2A6779BECEB8D473922642632C4639D11C46D6A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T22:47:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31126_00_00AC10CA85EEAC1B48731AB6C6323B65E890516240/3B1D9EF15AFAB129C63D39D2B1C41BE419173C6D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T22:43:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36450_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36450_00/1d060cc6-4fa6-41fa-a1a1-b3f3d147cb32.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T18:50:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36451_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleDetail\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36451_00_00E91EC4B9C04092273DD69AE486208E89CB071675/0E939AA62D334867F4D30AA4BB73CB3587D1D8BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T18:42:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36449_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleDetail\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36449_00_00F5AC8545A7E0E2EFD7D4F3E2CB9E52E6580BFE35/FA74FC9F5FC725EE13BF86E830B05B1B3D284615.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T17:21:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36448_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36448_00/5bde6d39-0f5e-4602-b6fa-c7103a9d6403.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T17:14:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06040_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Wolfenstein\\u00ae: The New Order\", \"trophyTitleDetail\": \"Wolfenstein\\u00ae: The New Order Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06040_00_00B761DD4B4E3EB7D261A62CFD783381F5791003D4/3F7BE72A97757B626B8F734B10882DEB4C8F114F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 18, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-03T16:03:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20284_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Sackboy: A Big Adventure\", \"trophyTitleDetail\": \"Sackboy: A Big Adventure\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20284_00_00A6FDF21E7B082651ED9CAB540D4735CE95EE5FF1/3E0835E77FD74774A221DE4606484A34235D4FB6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 32, \"silver\": 10, \"gold\": 3, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-29T22:03:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31777_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Resident Evil 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31777_00/8f2b7678-7ece-4485-aea3-bd8c138204f9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-22T13:27:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35995_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35995_00/16ccfb41-15df-42bb-aa7b-a1731b0173ab.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T22:25:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35996_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleDetail\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35996_00_00BBB0295A1CE743CB891C259B0E128D6EA54E20C7/5835A75C04137F70A89CEE634909DE95004886D9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T22:15:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleDetail\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35993_00_00E905BB04F72C055048EE069BB3A5293B08779577/AA710A01E37A8FCD0BE144E1E2360641C469B3A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T22:08:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35994_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35994_00/7ef6737c-c54a-492e-a804-542594d1b79e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T21:41:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33410_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pammy - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Pammy - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33410_00_0053ECA79774558FDDF77D4019D2B2415BD0E4CEFD/89022E68C15198BB7029159172098469E1F05656.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T20:20:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31778_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Resident Evil 4\", \"trophyTitleDetail\": \"Resident Evil 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31778_00_00EDC9D53696ED74040BE64313A57B47880596CE9D/298EC45BB61752BE2BECFDEA8326ECC00DF74752.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-18T21:42:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33409_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pammy - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Pammy - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33409_00_00653B509DA5B695428A887EBB0B6A520D62DF6053/1B49C8183055A2F264359DD50F0CA0998927630B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:36:18Z\"}], \"nextOffset\": 450, \"previousOffset\": 399, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35182_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35182_00_00FFD80A0BAADE9B8AA6588123BB172DEAE903829E/AC1FB956496D03F89BFD813888E8DE8E4255342E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-19T12:38:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33763_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Rex T\", \"trophyTitleDetail\": \"The Rex T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33763_00_00D2A86E2A3CB122406F5B0E959DB0989AB8553AEE/DA9B43A1E618BEBFA9F88F1A29EFA47B2819EF02.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:31:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33764_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Rex T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33764_00/02a16a7d-49c0-40f6-9b98-8141b09ba33b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:27:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32821_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32821_00/bda60e39-f1c6-4e45-a6a1-69038eb6abf9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:23:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32818_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32818_00_002261CB8C9ADA831882177312965BAA7931EFDC83/99B9383145BE9F38486B6453700B818D484011B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T15:19:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32823_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32823_00/d17cf937-43a6-4cfb-9baa-89cda1ad8a9e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:53:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32819_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32819_00_00386CF573E0CEAF86F28C29FA7BF8D32EDF6A16D8/51C8025BFAD77984C8B7CB4B92289EF2BEF18674.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:49:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32817_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32817_00_00B4D293EE53854B316A9A2E6EEDDD7CB911CEB7B2/235FBDF4D6D128D4368F360C5D4C9386747EC601.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:46:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32820_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32820_00/db492220-604b-469b-b93e-1cda39060c7b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:25:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31984_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31984_00/6878bbf9-4fd1-49a6-8bdf-7ce09956988c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:21:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31979_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31979_00_00C18A71019E74D3F814B9A92F3CC18AD246F6FA53/2873FC24C5F561C9613F8759F12ECFF7671745DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:18:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31980_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleDetail\": \"The trophy set of The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31980_00_00D51911E7C4616DE1FF781F8F5377809AD46D7BEC/5ED73713E21CF69906DECC39EE9F68D4FC450E74.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:14:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31985_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Coffee\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31985_00/209da54d-3b79-4816-bc23-e554343887ea.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-13T14:10:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22156_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Control Ultimate Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22156_00/2dfbf30c-ac5e-4930-bd24-4ce32e13f7fd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 50, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 90, \"earnedTrophies\": {\"bronze\": 45, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-08-09T13:26:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21656_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Forspoken\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21656_00/27d88c5c-f35d-4891-a052-c83dada81edb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 47, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"progress\": 31, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-31T21:17:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25764_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"Sniper Elite 5\", \"trophyTitleDetail\": \"Sniper Elite 5\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25764_00_002CC5B9CFA11A1D2A39E2E07CC617BBB762A8CAC3/153A47C20196541951C49A854A790B1048721044.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 6, \"definedTrophies\": {\"bronze\": 53, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-23T15:01:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19742_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Stranded Deep\", \"trophyTitleDetail\": \"Stranded Deep Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19742_00_000D1954AA2F2C085234C504104F6F657F2B71C00E/CD3B327923C37C0087EA93A721438A3846F46371.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-15T10:22:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35185_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35185_00/b76ad686-9a6f-46c9-adfe-9007884bd215.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:52:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35181_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35181_00_00BA02B32F1CF5A85345779F3C1CA0FE345EE81BE4/DD38DCCD24628D2EA3CCC80589CEF5752728E91A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:50:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35187_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35187_00/b234d50e-18e3-456e-b88e-e9d8f5f994c1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:45:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35183_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35183_00_00084B98EDD495784A65981F1A1EDED3B96D74F75E/6B7E12DF68FA00E2D1FA20F7BD1336238C650A14.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:44:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35177_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35177_00/c02960c5-cb81-44e2-8d6d-3c65e145ae84.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:41:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35175_00_00D77D38F8DED8B39987EB16DF28AA14D3901914E8/1AB178E0494E9AF09821527495FEC5FC612869DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:34:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35174_00_00B7A285B1B89B6C7438A729054742B8AAB90EDF77/31D273CFCDC78329E5319D167009C9E7A32B91EE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:33:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35179_00/300b2ac8-aa96-4adf-b432-84f4cf59cfa2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:31:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35178_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35178_00/7cc27b26-24da-4fae-ba9b-4654376ebc9d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:30:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35172_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35172_00_00EE59CEF716906C73E3E6CBD76EDCF2964FC95354/AF15BB2F516B49D024507CE0CA1655257466AD48.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:28:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35173_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35173_00_00EC66D376C2D1F56CE53DFD1CC0D4518C2E99FB30/692AE2833C5E62B7D1AB890FBF90CF58FB4BC113.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:27:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35176_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Austria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35176_00/4118d4cb-c5e8-40e9-be50-904ae3008f18.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-07T22:27:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31332_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31332_00/9a1189a8-7d3d-4d2c-90f2-62d8ab57997c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T22:06:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31328_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31328_00_00ED7A1D252358E19D9EC2A71274B3FDE4E9CAAE26/DB8BD5DA0E1DF8C2935D609EF72FD7BC30858361.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T22:05:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31333_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31333_00/174639f7-3769-4201-80c7-95f4109c603a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T21:22:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31329_00_00E216591B6DDEA8712CF8A739A796F06C4A70BBAC/1CCFA2B408920B551557D41536B5AB74D66B4196.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-06T21:19:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32761_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32761_00_005F63CE92E8ECCA56637AE0CEA4AD8CCA94077D4F/97AD86D0B56BB88EE8E9F23DACD75396D486EE4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:47:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32767_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Brownie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32767_00/eddc8212-2118-4cb1-b34f-d90a6a901b9d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:46:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32466_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32466_00/450ae47b-d05b-46f0-b602-b980b2d07f7c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:44:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32151_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32151_00_004285E005BF033F9971240C0369AA742D746813DE/DE1BFA22408D255E431D2DB45F92FFDB1F77AC28.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:42:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32462_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32462_00_009BB87F5D92C74093ECED8BE29C81576F330A1B1A/58D6B959076BC52591956194ACA10B34CFBE2EBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:40:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32465_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32465_00/1ca89154-bfa2-42a0-8492-a95c9f920d14.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:38:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32154_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32154_00/f29dbe8d-0a1d-4d52-a90f-ac75e3e60a69.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:36:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32461_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32461_00_00E61AAF81E43746138E792FDD77E331BFBD7C875A/85B84F0732A847DC4793477F992810C64D4F4AC3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:35:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32150_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32150_00_00D9B8CD7D0DC5595B1BA91DB69E0125F360FC767D/69EEFC2E54059052745D32B3F23E82060D08B2EF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:34:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32155_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Ice Cream: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32155_00/cb2866e3-daa9-44e7-b51f-65a17e82c5b2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-04T21:32:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34453_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34453_00/67e5819d-b146-471b-8091-81b257b8e9f3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:36:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34039_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34039_00_0044A3B1556E09A310DB645265893350085F1EFC06/EB36830E39BE820B801C6938EE16D8584C6EE791.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:31:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33070_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33070_00_004C84074882FF9306B5F10DF6E2AF9FFC02D925EC/68B4D3BA298F82081D9123179E6AD0D5A8CB76E1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:23:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33075_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33075_00/a21eff23-b3b8-45e6-8ea1-1472a9ef7015.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:20:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33077_00/2a01aeac-2085-426f-954d-a0d23c9d717c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:17:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33069_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33069_00_00762F4877A65C5E4C46D7B289EEA920970B420A01/2D81D8896D269E00929D6E55188730FA06B9CFE1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:16:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33068_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33068_00_00990E314352A34DEB56F8B056390C980166679174/DC599E62C01FA6EA1B66303D2FFE0A64176B9C78.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:14:23Z\"}], \"nextOffset\": 450, \"previousOffset\": 399, \"totalItemCount\": 1446}" } } }, @@ -672,34 +669,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:54 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28123" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29064" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:43 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33703_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mark - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Mark - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33703_00_000BB068BD0DE4B76459200BEBD1AAAB7D553C2F8F/FE2C8A3A05F6C649C128FB096836586E270544E1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:33:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33702_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mark - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Mark - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33702_00_007249CBC8565B66CF5F23D97257DF29952E193A1A/3CCFF6CC169AC9C1E51E7D2E7923BFEF77D71485.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:32:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33701_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jane - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Jane - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33701_00_003FBB498B87D176DE66F61A588B6EFC835B988416/20C8C2601F8186C8671C401A2247139032C273A3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:25:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33700_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jane - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Jane - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33700_00_00FBDEF3F0D66A607798A1745A76C06F8721C22DD3/97FCC2209BCE05DDAD85A88C4F9DDAAC88A16F51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:18:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31024_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31024_00/e2a62559-5c9d-48ee-be0f-ef6629f73627.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:15:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31022_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleDetail\": \"Vump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31022_00_007F7AAF1AB23DBD15F45FFBCBC519C3C30AF40290/7489C96E529A3493CB3F96187B6252563E88D8E0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:13:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31021_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleDetail\": \"Vump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31021_00_00DC99ED3FE8C48F25D4F192E090286601D0D84A18/7320692706340491A595F66E5D5ED1AB2FADC32D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:11:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31023_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31023_00/2e9743a7-39e3-4aac-a96e-840f32843fe1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:08:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27160_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kansei: The Second Turn HD\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27160_00/d104ea85-746c-4659-9535-4ccd0f33d056.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-24T11:06:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37107_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37107_00/e1e4216c-ae8b-4eb6-97d6-b7830f60e30b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:43:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37103_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37103_00_00BE7F51C585707335E96268C1E467DB225B2F5D83/9809C7FA8F2E2349399B5812DF47D3D1FD76DCA8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:40:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37105_00_0000DDBCC13838EA1D8FA5E9C3C0260E758C5D34B3/8E81029492CDB4D97FAE5A5C5C7683AFB21C462F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:38:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37109_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37109_00/df9559ea-0a09-4473-81eb-167baa49c72d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:34:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37108_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37108_00/71615215-9fb9-40e9-8f11-c67086c38fe2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:30:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37104_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37104_00_00309CC1CFA8369EE4A2F51E38D738C8B7FA6803BB/56ACDA47602FF289193CCDD3296999632E11432E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:26:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37106_00_000DB5E076FF008D880EB802D643EFDE4D5E8EFB69/8F96DAA52436823A8A78F6BE1D556B9ADE856718.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:23:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37110_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37110_00/8b76df0b-a4f1-468f-b41c-22e147257bb3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:19:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20127_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Life is Strange: True Colors\\u2122 Trophies\", \"trophyTitleDetail\": \"Main trophies for Life is Strange: True Colors\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20127_00_00730C29D3DAE46CA3570934784780CCEC973D5F02/1DC07B62277F15EA07B45D708F458B3299D35F50.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 0, \"gold\": 6, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-22T20:36:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35849_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge the Ball\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35849_00/270283b1-6626-4025-ae78-14b31bf47119.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-22T02:38:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20246_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ghostwire: Tokyo\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20246_00/a1cac1d2-1919-4764-b600-0045c536b54b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 58, \"silver\": 6, \"gold\": 2, \"platinum\": 1}, \"progress\": 28, \"earnedTrophies\": {\"bronze\": 23, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-21T17:54:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34395_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34395_00/a703c708-872e-4098-b9cd-3761ed7fca1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-20T13:22:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34396_00_00287F5BEE6B8EA8783AE3903A46293315D0C3A7E3/F1008A8E48575B4144FDE8DF38ADBBAA39783548.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-20T13:20:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Callisto Protocol\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24730_00/10c87b42-23a5-4af0-a9f4-1d9b67826204.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 24, \"silver\": 11, \"gold\": 11, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 8, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-11T17:24:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35848_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge the Ball\", \"trophyTitleDetail\": \"Dodge the Ball\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35848_00_005589CDED45B81739DEC19F782B05123CDA489B02/DB972EBFC035FD1B6CDB27870B8959DD29F2CC6D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-04T21:15:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35850_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge the Ball\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35850_00/f1b1137f-d499-4d75-acc3-0faef0b6ee99.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-04T21:04:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35370_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of numbers\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35370_00/97fffa43-1621-4c0d-ac69-13ca61bdb213.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-02T13:28:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35369_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of Numbers\", \"trophyTitleDetail\": \"Row of Numbers\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35369_00_0012DAF3D4D73C48056A627C54E51977A1840CBB5A/42431532B76ACDC501F33E85B6ED3C6F0241D491.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-02T13:25:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35368_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of Numbers\", \"trophyTitleDetail\": \"Row of Numbers\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35368_00_009BA6F4AEE62C330304B9214DD276DBD924B00119/9888C8838D9A1ABE03A82868C1313AFE7533DFF0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-01T22:42:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35367_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of numbers\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35367_00/99fe96d9-df72-4c6b-a16c-e4daf71d27f8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-01T22:38:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33271_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of Nik and Kit (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of Nik and Kit (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33271_00_0045A4EB82A5C8790925715E71195CBDA1A58968F2/194951A15287D3A194E9F7A9035434C43C501AAD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-30T11:07:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33270_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of Nik and Kit (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of Nik and Kit (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33270_00_00906ABB9A27D27E69D4F9BC32AD6AD27005DB1E84/2C6BC32542FE1CC3E6C69C8FA140C2D5E01FDA24.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-30T11:03:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35332_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35332_00/1be736ad-7817-4a28-b521-8f68b402d3d6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T21:08:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35330_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35330_00_00C982DAC755CACCFF7A2DB104799904C9423F1000/CE9E714728088EEF90A048D9D0859E51A3CC1D69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T21:07:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35331_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35331_00_00215E0C4C1161A315A16DEDAE4C2912800CD7B799/471643E5BCBF550F7440E7F545DFF18ACAAFEBBF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T17:36:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35333_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35333_00/d7e39e0d-44aa-46f4-bf85-ddbb897be208.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T17:34:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34599_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34599_00/cbb89ac3-4c70-499e-822f-5525eae5e46d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-28T22:39:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34598_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleDetail\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34598_00_0074C64DD7A2B4DDA50B80E8A85D24CD9705C7FF3F/75B748A6B4BE72FBB03A5DB90F033873B4B73D5D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-28T22:24:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34601_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleDetail\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34601_00_007DBD0CC2926ED8CB0E9F89D43C407A28B95B61E1/D651DDE3922237A4C6A24819FE97D8674E3618DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-27T15:57:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34600_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34600_00/34becb0a-d011-4e9a-b9f8-9ee4b609fa0b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-27T15:15:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34397_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34397_00_0060A8C39958C2300FECFA47FA532FDCDD4EA7A993/F31D4221B0A76790846C8389ABF165B8CE712BFF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T16:04:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34398_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34398_00/c8f05082-8f39-4e8d-b3fd-e7ef09663001.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T16:02:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34400_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34400_00/b7a90586-faae-4e75-b86a-b34775c993c8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:59:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34399_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34399_00_00E7D0C0915FE3ADE210AEDED17C2A37D2D55D54DA/D2173B2238F7490E0E6B98F4345A39107D572043.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:58:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34401_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34401_00_0025DA768E45993F80568D4F00D5022D7EF03E5E8C/4DC2C55FFCFEE3A9DD03E8242AAB06BA6BFF1119.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:56:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34402_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34402_00/d1f0847b-ea93-41b8-ab68-400370054266.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:54:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30330_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"SONIC FRONTIERS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30330_00/a6575c03-53d4-46cb-887f-9c0d079f1fc4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 23, \"silver\": 15, \"gold\": 2, \"platinum\": 1}, \"progress\": 66, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 13, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-11T15:10:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pedestrian\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22546_00/ec54cac9-1456-437f-87b3-137194e9d138.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-28T17:45:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pedestrian\", \"trophyTitleDetail\": \"The trophy set of The Pedestrian\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20921_00_005F4E22DACDAFD1A020592E214D7DDC8EB9E022D7/8256482A32392D7B82B3F8A8AFF9AF40A66603FE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-26T22:46:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23174_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"The Smurfs Mission Vileaf\", \"trophyTitleDetail\": \"Trophy list\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23174_00_00CE02BDE7CC717297B37FE066C500BB89FEBFF612/EEBC87B166DF9FAF96E7FC44DADE7A5A4084C144.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 13, \"silver\": 9, \"gold\": 6, \"platinum\": 1}, \"progress\": 16, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-23T21:19:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33177_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33177_00_00F539BB3E8B03F554AE5E2CB6585E1D9F4963CD0C/6AAEAB8E0EBFB9521F5351438E780C76A441EEBA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-21T01:10:45Z\"}], \"nextOffset\": 500, \"previousOffset\": 449, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33076_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Bagel: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33076_00/6ed6ab7f-5cca-48c7-9275-b6c3398e437b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-02T21:12:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34772_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34772_00/6813acb6-83ef-481c-8a02-3ab897a40b87.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:37:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34768_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34768_00_009770946D67A330FE538B8F72D972A8CE4179C20B/542A49409C831C2B02874F68F219E23675A47454.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:35:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34771_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34771_00/921d3d30-bff3-4dd7-8924-a77b272c6632.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:27:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34769_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34769_00_000DEC27F2A304CF4326E310FFC59ADD6FF11546FA/8B9859EEF4D9AEBDA0887764DB60CE3A81DA647C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:24:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34773_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34773_00/68652a74-43c2-4ca2-9e1a-73f1b26cdcf1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:24:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34767_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34767_00_003B88B559FF6763A63B52DECA1F8028766D6A708E/77A4E80D49E825C44CD5901644D7D8167065E9F1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-07-01T23:19:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34770_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34770_00_00AA7267268B75F69889623ED3ABE42F6DB93D1293/55F23E5135224FCEEB6EA4456119587497D6790A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:46:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34774_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Cookie: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34774_00/cf2ad04f-4ba7-4a4a-ba2b-d5eb7f113428.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:45:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32921_00/db73d2f6-c5ff-45f3-930f-5603ce8f231a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:38:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32920_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32920_00_00742A0E410561743CB193ED24345051EA68C4BD56/0E43FFACCFE6D11FF4553BF9460D416212ACC8CE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:33:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32922_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32922_00/4c6999a6-a382-4aac-853b-997a9c7e79e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:17:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32923_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32923_00_00C5F7BED8F8748A65A9EE2E4F90ADCEC281EC8FC2/4DABDC4AE69E005545B3D5C5DE95101317739E78.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T20:15:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32925_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32925_00/1dc32810-fb48-450b-8953-96844578f4b2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T19:40:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32924_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32924_00_00FEE81B8F00E8BC8D95E03A56039C556C41EE9483/D16B955EF73405DC40DC75511D1A0990E7711392.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T19:34:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32927_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32927_00/46d2696b-e7cb-49b9-97f2-733d0430cbfa.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T18:27:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32926_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Basketball Quiz\", \"trophyTitleDetail\": \"The Basketball Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32926_00_0063FCCC7736A2CBAEF80D2A0E6DD0C9482E99EE38/AE66BA676181B1ACD81CDEF9C5687FEB8E6608BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T18:25:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35327_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35327_00/3190bc21-dfa2-4f29-baf7-a3101f5e0bca.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T10:13:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35326_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35326_00_00C5BC3EA9547C2F24E05EDF8C894590E1E3C847F8/A4045F5A4B57CE9507A44D088A0FD1AA77931D96.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T10:11:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35328_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35328_00_005066C0892C5AE2B2F765BD26C6C7D6DC85DE46BC/8E497AC2CCCF36C4EFFE76247FB20D8C28BD3759.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T09:59:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35329_00/ce10c2c1-ca6e-4162-8cb0-c5f416bab666.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-30T09:57:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34090_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34090_00/222da0d6-a311-406a-8345-96eadd9c1f31.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T12:29:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34091_00_00C8C0716CC8D25050C38506288F48AE1BF8AA9219/DDC54E97280F4F9FB1A2FCA60795A7E12B2092DE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T12:25:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34088_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34088_00_0097220C1FA6942B5DF56C691525CBA4A95A021AEA/D2A7977D55E9BF3CCBB633DDF8EFFEC5BF6C949A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T11:56:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34089_00/6f8f5470-a5aa-4e4a-8083-fa74754c6bc4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T11:48:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34086_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34086_00/400b48d7-48c7-4f6d-a0e7-003bbf8895ce.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T10:57:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34087_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34087_00_0074633F550BEBA7AB788A3310584FCCF29C730792/2DED1E3C8CF8B820868CDCB93DABFE0B654B55B2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T10:54:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34084_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleDetail\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34084_00_00A4D67F5C4B25DD4122E62612732C5E09DC90428E/36BF7283A2DE37B53E2B09902C7693D36E243462.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T09:59:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34085_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Elephant E\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34085_00/f5abcac7-ad5b-462f-9bef-c93372828a4f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-29T09:55:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34960_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 9\", \"trophyTitleDetail\": \"Pretty Bird 9\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34960_00_00C53AFD3E31B27F8478D17E1253CE16371E13115B/5D796AC5C0B0DB30B59D14A5753740CB4A00BBFA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:29:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34964_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Bird 9\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34964_00/c4c45c98-d908-4511-9e6b-aa551885ab50.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:22:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35212_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35212_00_004A49CF1AF56B659A334047F63947D5A4358D5752/FBFAAAFEB5B90BDCABF96C9FEF5365983C35B763.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:12:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35217_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35217_00/36b9a727-1a27-4e18-b1e9-5a54e96fda0d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T23:11:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35218_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35218_00/7474b7e7-36d0-431a-85ce-721322765bd2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:40:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35214_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy: Bronze Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Italy: Bronze Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35214_00_003386C55A75F2DFACAF26C93D6FE2BB13AE820DCC/0F5877E41ECAD65E3ABA4B82405194F6A484A185.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:39:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz Italy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35205_00_0066C99C976045D198C09BFF9C66E8AB9E2BC76621/B303DCE3A88C0EC97B56D9E8BB698B2010FC3865.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:34:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz Italy\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35209_00/e63f9c93-edb6-455a-91d1-beaefe98df53.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-28T22:33:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38318_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38318_00/e64c562b-5bf2-475e-9485-988751ed6cee.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T13:03:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38319_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38319_00/29911e20-d24a-4834-9992-e36fed750cc1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T12:17:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38316_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38316_00/dc46527e-56b8-4b5d-a256-53a45a38eda7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T11:36:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR38317_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR38317_00/5309ad43-b095-4679-932c-84569372a706.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-19T11:23:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33493_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33493_00_00112790C0B61FB6383934180814F45399FA2FE8C7/279DDB978CDAEE5ADC18A188C0580B0E23F5A3B2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:43:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33492_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33492_00/5253d7c1-1ff7-467d-aadf-90b2c6506f96.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:42:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34720_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34720_00_000B657E0A776549B25DDDC09AD1CDBC726460A28B/5BB8BEE61C0144B53EE310FEACC6A76FAAE6536F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:14:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34724_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34724_00/e19f0a72-f330-4a04-bb22-3d90ae5d8f01.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:08:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34722_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34722_00_009A239E4878348A5CBB2308E4590B283CFD0888ED/CC7FC2D6CF8392B57F09AE82B555FBBEB036ACE9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T22:00:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34698_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34698_00_002752B9594822A748129F7F448B9F43CAE36370E3/24CA1BD32F31EFDEE52B3D2BF658AF633713FB7B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T21:51:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34695_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34695_00_0078E89C409DADA2EC828C6918F581AAA03F98510B/2D5F90762B0B84EC95C8085B10F9945F74549A69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T21:22:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34696_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34696_00_0075B7F57828EAB5B488A5B174C77F9B3E413F9E6D/D528B2E06FA82CDFADED1CD902C5F6F6A4805312.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-17T21:05:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34697_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleDetail\": \"The trophy set of Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34697_00_00957BB8A957EC7CAA8D3EAD15EC8942DB56ECDA1A/4FE1E9F89EC529DADDB2CB1165CEEB02D7017E5A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:51:53Z\"}], \"nextOffset\": 500, \"previousOffset\": 449, \"totalItemCount\": 1446}" } } }, @@ -735,34 +732,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:55 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "30250" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29664" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:43 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26002_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleDetail\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26002_00_005159C06447D0DE14618E0F7A1478175C42A3B7F7/BA76A20FA44DE79D100981E5419D3182D1F2BDA5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-21T01:06:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26005_00/5a858f83-91c7-4606-b60c-c573c5c8fc29.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-21T00:41:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31682_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31682_00/3bc1b71b-6d2a-4eeb-a2ac-67fa615b1ed4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:43:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31679_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleDetail\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31679_00_00A6E0D9C4BDBA1C2DC3CEDDD06022B6729073D6B4/0099127223ECF5C349239E06C57BFD42E2DEDDAC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:42:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31681_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleDetail\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31681_00_00EB4ED4FA3C39D29D2551DB43AEF385715887F689/8F5C92A03E42BCADECB1E628ADA033C6752DACD0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:38:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31683_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31683_00/39b65f8e-fa2a-4519-959b-c775ac66d8fc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:37:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32828_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleDetail\": \"The trophy set of The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32828_00_0077EBD5D58BAAE82E3E82E02B87C46BC156D92BD1/C4E8BB5ABAE0E13257843B4AAAC614784494B6F8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T15:28:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32836_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32836_00/d78a98f8-6a01-4476-81eb-15a8172a0311.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:29:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33721_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleDetail\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33721_00_0055483F5988AF27E3BA6D86F2D93D7A48EC7667E4/A7C79BD916AF0FF5350C716ABFF45FDA1A8EE68E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:16:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33720_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33720_00/54783674-804e-45b7-b069-3c891a38027a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:13:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26003_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleDetail\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26003_00_00A53C07BFD4FC07BD09044E9A8E9908A884FBD76C/0CBDB0591B4A929999BBCFBE2FC545667A90EA52.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:12:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26006_00/25bb06f7-2d60-42fa-9938-0316644eef74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T03:34:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33718_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleDetail\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33718_00_00C6EC0F8E6BB565100A81B370A502499FB18A7941/5DE87DF085FA6349E940C3D62A6B12AC0B872BC2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T22:45:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33719_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33719_00/205741da-82cf-4e16-ae00-f9f2221ff681.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T22:44:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25184_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25184_00/0b7767b1-19fc-4e90-bd86-a54920b20d5d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T20:53:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25183_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleDetail\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25183_00_00D6F894B8347ED57F3F56D368AA3AF5660B870808/B5F4A217037CA22CFD996451AF5E1D5039616563.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T20:38:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25188_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleDetail\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25188_00_00C238B968F5FE6EB3A6C1C20C11095E4A6E2284DE/65DAE1313B90DFF1BD0FA86640F953CD431E377C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T20:06:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25185_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25185_00/02dc87b4-e14f-41c8-80fc-7c8146e65f74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T19:32:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34892_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Impossible Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Impossible Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34892_00_00D090609A7DAF138D786EF6CBFA3046C5640EB3FC/427EA618BF42FDD1D925828EA4591B99597D4399.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T01:03:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34891_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Impossible Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Impossible Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34891_00_008AB5A453BEFB2FE94CBAA4809E116EF21BAA341A/215D3452A151E460502474C7974D9D5EDE58DF05.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T00:33:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34890_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Hard Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Hard Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34890_00_00FC138D2F13ACC028D0CC0A5F3F845D5B665BF26D/7BEC9CC68BB80790DEF16A599471F75E15917CCB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:56:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34889_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Hard Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Hard Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34889_00_0058304B62B71EC4E62801E57259067A8AC593FBE9/CC454F43CA4CF2B65CC0C9F58A79C7FE62FB526E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:53:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34888_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Easy Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Easy Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34888_00_00871D5F2FBF6110CB04DAD189367CA2FC8FC20856/6F7DCA630BA8E21378C4ECEBE0252995954B800F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:35:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34887_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Easy Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Easy Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34887_00_00D1A43AD383850E62C69DD856B663DBD02E91112D/AA1B27A74F0C2051086E287B0B694072595A09B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:30:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34211_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn Hiragana!!\", \"trophyTitleDetail\": \"Learn Hiragana!!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34211_00_00116076461E14A56C24CF0196764285A30DF34BE6/2B2AD5CFE30C293A76DD499E7A13F080795C2AEF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:09:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn Hiragana!!\", \"trophyTitleDetail\": \"Learn Hiragana!!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34208_00_00DC61BED304CE49D30E59795160C48E799A17D87C/B05E2E39763E145388722C83A05A8804430518D9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-13T01:49:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34885_00_00158FEE8B952A13A6A55041D455E3F116FDA06BFD/B2B874B84072A290A97FADB33A9FE6C149DF940F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:51:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34886_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34886_00_00CA5C33335B05975EF03FFFFD752AD2C48F4922A9/CC210CA7744795959448D45163E11A7F9C439F9D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:27:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31220_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleDetail\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31220_00_00342BA16331F3CF445092227E5BA776D2AF15F960/B0EEE1BA6B3E26B5C3E88FAAD0C26CE27E0B123D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:18:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34569_00/b4a24a17-cf99-4603-80c8-09539dd87ded.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:16:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleDetail\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34568_00_000891BBC549F6568CEA26B28F87170DE83988102C/20E4AD6C9EB6F6947254B0AAF30F5211FE6FF5A3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:04:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleDetail\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34570_00_00C087C62BAC789A3E6D2B14D5EBF83EC1B94C9488/4B38870674766C0F03CB02381E66E8EDA60D69A5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-07T22:07:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34571_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34571_00/5ca53134-f0fe-4082-b394-676efb7c3dde.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-07T01:07:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22997_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Plague Tale: Requiem\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22997_00/670783d5-ff34-4fff-a69d-11361e0e7cd1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-14T12:42:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32829_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleDetail\": \"The trophy set of The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32829_00_00772AA819CBAABEF25780132532C8BF1AF124442F/3A01DA17C3C83F4134ECB878697D0D63D8F9047B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-14T10:06:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32837_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32837_00/da46b2db-bc6e-4400-a6b8-fc7c20c38fb4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-14T10:02:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31762_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31762_00_00FDED564B210CBEDFB59A527CE4CEB4F11C052621/F95C48C4B2B5C3CD757C88B80A2D7F234844BD00.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:34:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31761_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31761_00_00A850A1CD1A69070437E4AD762C7CEBA1552E4831/132981BA524E3AB8D7DFF185AF11E10EF4A67DE1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:33:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31129_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31129_00_00C4D6B41D6C693F3E4EB91D599B31A77312FE6C7D/9B49E8A5629D9980BFDCE06C8EE2B8F1C3F87C7C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:32:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31128_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31128_00_0041B9194C4D6BBB886E940C8D8FD40D85E2A2D670/AF4DE779D574F48852063C7FEAE5E92B7AD232F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:31:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33861_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33861_00_00C6C47259CC40140ADCA5581F6A5B32431EEF6940/48217A2C11781BC6C557AE77F3059162391FB594.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:22:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33860_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33860_00_00F1B18F9754215C57CE1206159E4E1F118154910B/BD291237B58D3D3F5090DFB4B134D106776550E7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:16:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34292_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34292_00_0038AE0C18129CD1D7451CD4CB2D364B51D8608F75/07EB2ADE9A582F0165A632F533B9A0ECF6941AE8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:14:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34291_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34291_00_00470E64ACC7647881127D2B68EF42AC64FB8B3A9D/0B7A769B4FF5BF9C1475C6D2D5FC84383AAE51AB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:12:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33863_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33863_00_002F297EF55760067ECA51C232B3D3D19C22F36CE2/8F9049FF0F00EB789E4F76187489AE35FE736127.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:04:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33862_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33862_00_00A21F143113DCDC2359932B92A4F3E6728CF96BCA/4BED1B541D55DA55DA19ECA470CEAA4AF5D8665D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:02:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34688_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Microarcade Applepie\", \"trophyTitleDetail\": \"Let's bake some delicious pies from scratch!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34688_00_0094583BE652700A9423341FC8B73534D29A96C73E/EE1D5BD1236DE844911EF2C3340FFC933795A222.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:01:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34690_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Microarcade Applepie\", \"trophyTitleDetail\": \"Let's bake some delicious pies from scratch!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34690_00_00930C1CDAC210F4F66FA396211FE3A7C53B0857FC/81EF11419C4EE8A7AD03AF315E89C233D70FA742.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-10T10:06:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26546_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Last of Us\\u2122 Part I\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26546_00/dea7e1e5-f166-40a8-bc45-87966932a478.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 14, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-31T12:01:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33181_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33181_00/a832ff4d-6923-4788-b871-15c7562cf208.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-28T00:14:25Z\"}], \"nextOffset\": 550, \"previousOffset\": 499, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34726_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA: Gold Edition\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34726_00/d0885c82-32f4-45e7-9a7b-df3f58f171ea.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:47:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34701_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34701_00/2a5defc4-76fa-47a3-963f-3cd50cca1401.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:39:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34699_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34699_00/07014cdb-cb50-45cc-a698-83b739c79aec.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T09:15:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34700_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quiz Thiz USA\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34700_00/3bef7b11-c332-4389-b354-ce0fea808b35.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-07T08:56:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33490_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33490_00_00782DB11DF5154F55694016B44AE0BDA12F381B83/1110D209D984D283250A66D8D3157250053DCDBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T23:56:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33489_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33489_00/88ac1f07-f473-4fb5-be9c-0c9d5e143be5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T23:50:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31804_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31804_00_00FF838B0FAA42CCE74A94625AD7C10163F011C8B0/831C9DA838286834323860498F7CB1488F3E2D65.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T23:43:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31805_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31805_00_0075BECBAD46218BA1BDE16165ED9D1B8C6D013DB5/59BB8083FC120950F033D866AF4E9C70ECB3150C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T11:35:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31806_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31806_00_0061CA18F4FF468D59C74BE559EFCDE9694C889335/444EBA9A98849B3D6AED52F1F5979C6F9D954084.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T11:25:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31803_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"THUNDER\", \"trophyTitleDetail\": \"THUNDER\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31803_00_00229933865B8CFA6186B88E893A48451E1D72E0B1/44495E64D7B54D666EA785AFAD3E6B0A79728EF9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-05T11:03:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35614_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35614_00/12ef86e3-8754-4c7f-aa62-7dc334e22aaf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-04T09:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35615_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35615_00_0027D1087F69D7912D88610F606B295FF33F738190/F56E9751D765E5D3C69F3AE4D0D000A2D194B0BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-06-04T09:28:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35613_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon defend\", \"trophyTitleDetail\": \"Eperon defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35613_00_00898CDD0021197E4FDBD63D769CE22AABA55DF599/F62E5B4EE1910F7F2C2CD5AC9DA7D3BD3B646973.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-31T23:26:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35612_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Eperon Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35612_00/153a6981-0e58-46cb-a4be-b2b0e923e1a1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-31T23:10:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36519_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36519_00/70e9119b-52ef-4b77-8886-2aa38a4faddf.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-21T13:14:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36518_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleDetail\": \"Descending\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36518_00_00942BFDEBA59E1E55D56BBA4BD51351674DDA54B9/CB05D2FF92AB2077B88AADB6D6965D6B8785D930.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-21T13:10:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36517_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleDetail\": \"Descending\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36517_00_007EAF009835A4CB281B11C6D631D27FFC228C325E/E8E2A029BA12B6BAFDA2F8E084E6DE4B51AE616A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-21T12:59:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21033_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Watch Dogs\\u00ae: Legion\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21033_00/97c1dca8-af55-4558-920e-3b47e93aa9a8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 25, \"silver\": 22, \"gold\": 2, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-18T08:19:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36516_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Descending\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36516_00/2f03e970-7d61-440b-aaa1-243d3b3e3696.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 35, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-18T08:08:04Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33488_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33488_00/08bbb057-473a-46b0-8c67-a126a68e6aca.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T22:00:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33487_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33487_00_00B98A99B51E38D320D5B5768E72AB8BAE310F8C7F/83789CFE70D11CC843714E28DB15440763EE04C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T21:46:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33485_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleDetail\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33485_00_00119EA04F5397CCFB82354F7F70709EE7D0AE6ECA/F0535767780AD2D9F1CBBCC6AE84337D08DA652A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T21:40:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33486_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33486_00/b196f239-5e2d-4e9c-8b4a-e780918e35a1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T18:56:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31349_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story Two) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story Two) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31349_00_00F719B635E1B77950A8EAAD7534CA000378D1EE58/29461F843AFA9310FC49C022F8C2DF68FBF687E4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T13:56:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31348_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story Two) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story Two) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31348_00_00145502C83FC753DE1F20769C8FB60A753B6B8518/ECE3C8F8CCED24EB78A0C0595AF7E28917C79E19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T13:50:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38206_00_000F1CE23BB3BB60E7802DDC058EE2FD49200BD650/C9BDC2D6393017993E241AE795E605E88AC60E07.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T10:12:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38208_00_0087CCC64862D783BFFA30419D53CEEB27EADED3F1/8B42096836878799AE586B8B7F3CC6CA696004EA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T10:08:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38207_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38207_00_00F76AFCA23DABD825674A19D3AC3C231D9F43F485/57C0059B5147441C622B58737DB489115EC2D43E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-17T10:04:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR38209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hidden Bunny\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR38209_00_00DD9F0441C981D1D9727535D6831EF8C67ABD2AEF/A383DCF5AC65C8F912541618150020294FE46523.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 20, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-14T23:00:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23978_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dead Island 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23978_00/493aa82b-8c6c-41ca-bfdc-289c8d829fbb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 39, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 30, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-14T10:31:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29381_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Card Racing Simulator: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the otterrific trophy set for Card Racing Simulator: Otterrific Arcade!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29381_00_0038ACD08F705721C05C6B8809503671668B3F2166/6685B81FABC4E4DDE5383B0F2FE7B85F18666C16.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-05T20:57:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29380_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Card Racing Simulator: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the otterrific trophy set for Card Racing Simulator: Otterrific Arcade!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29380_00_00267D20865E932944ADC53E5E4F861A6876778B02/817A97ABB922AC9C4317BAD6EA8FD5AE95CB0C95.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-05T20:46:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31125_00_00E56F9D5E87D703D28124243035F0EE8FA75A9305/F2A6779BECEB8D473922642632C4639D11C46D6A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T22:47:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elliot (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Elliot (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31126_00_00AC10CA85EEAC1B48731AB6C6323B65E890516240/3B1D9EF15AFAB129C63D39D2B1C41BE419173C6D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T22:43:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36450_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36450_00/1d060cc6-4fa6-41fa-a1a1-b3f3d147cb32.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T18:50:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36451_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleDetail\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36451_00_00E91EC4B9C04092273DD69AE486208E89CB071675/0E939AA62D334867F4D30AA4BB73CB3587D1D8BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T18:42:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR36449_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleDetail\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR36449_00_00F5AC8545A7E0E2EFD7D4F3E2CB9E52E6580BFE35/FA74FC9F5FC725EE13BF86E830B05B1B3D284615.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T17:21:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR36448_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocket Swing\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR36448_00/5bde6d39-0f5e-4602-b6fa-c7103a9d6403.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-04T17:14:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06040_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Wolfenstein\\u00ae: The New Order\", \"trophyTitleDetail\": \"Wolfenstein\\u00ae: The New Order Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06040_00_00B761DD4B4E3EB7D261A62CFD783381F5791003D4/3F7BE72A97757B626B8F734B10882DEB4C8F114F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 18, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-05-03T16:03:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20284_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Sackboy: A Big Adventure\", \"trophyTitleDetail\": \"Sackboy: A Big Adventure\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20284_00_00A6FDF21E7B082651ED9CAB540D4735CE95EE5FF1/3E0835E77FD74774A221DE4606484A34235D4FB6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 10, \"gold\": 3, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-29T22:03:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31777_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Resident Evil 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31777_00/8f2b7678-7ece-4485-aea3-bd8c138204f9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-22T13:27:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35995_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35995_00/16ccfb41-15df-42bb-aa7b-a1731b0173ab.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T22:25:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35996_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleDetail\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35996_00_00BBB0295A1CE743CB891C259B0E128D6EA54E20C7/5835A75C04137F70A89CEE634909DE95004886D9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T22:15:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleDetail\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35993_00_00E905BB04F72C055048EE069BB3A5293B08779577/AA710A01E37A8FCD0BE144E1E2360641C469B3A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T22:08:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35994_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Defend\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35994_00/7ef6737c-c54a-492e-a804-542594d1b79e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T21:41:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33410_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pammy - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Pammy - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33410_00_0053ECA79774558FDDF77D4019D2B2415BD0E4CEFD/89022E68C15198BB7029159172098469E1F05656.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-21T20:20:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31778_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Resident Evil 4\", \"trophyTitleDetail\": \"Resident Evil 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31778_00_00EDC9D53696ED74040BE64313A57B47880596CE9D/298EC45BB61752BE2BECFDEA8326ECC00DF74752.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 84, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-18T21:42:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33409_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pammy - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Pammy - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33409_00_00653B509DA5B695428A887EBB0B6A520D62DF6053/1B49C8183055A2F264359DD50F0CA0998927630B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:36:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33703_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mark - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Mark - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33703_00_000BB068BD0DE4B76459200BEBD1AAAB7D553C2F8F/FE2C8A3A05F6C649C128FB096836586E270544E1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:33:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33702_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mark - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Mark - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33702_00_007249CBC8565B66CF5F23D97257DF29952E193A1A/3CCFF6CC169AC9C1E51E7D2E7923BFEF77D71485.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:32:00Z\"}], \"nextOffset\": 550, \"previousOffset\": 499, \"totalItemCount\": 1446}" } } }, @@ -798,34 +795,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" + "Date": [ + "Sun, 12 Jan 2025 03:18:55 GMT" ], "Cache-Control": [ "private" ], - "Content-Length": [ - "27554" + "Server": [ + "Apache" ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Content-Length": [ + "28982" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:44 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33214_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleDetail\": \"Driverio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33214_00_00B20F1822F3C16C8E02714988F6D91BA1D031F3D9/3F7EA65DF74AA49B109A530E9C6EC041D277B6F7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-28T00:11:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31224_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31224_00/028fc864-002c-48ba-ac32-815d97558f57.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:54:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31219_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleDetail\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31219_00_0073D1DD536F7047E5AAEB8AD86BB4F31D22736E75/9036E6310C65E116C8805205E8E2F1BF03844B51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:53:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31223_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31223_00/6fe849e7-cc74-4a42-87d4-508c79551aad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:53:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30974_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30974_00_006957D444D9832A6EB2FF30045BB7ACA19CAB5566/596C96C0E30B01E948E0AC17995B1DA81DA31EE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:43:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30972_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30972_00/3655cae2-226e-4c93-b6c6-9b9e26c9a3cb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:39:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30973_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30973_00_00940EEAF47F66CDC7EFE3D8D2CE3D3CB0B3F1F44E/ECE8DB7E45FB0CCF94F83333ADB1039B1EC30B57.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:35:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30970_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30970_00/42159c0b-203a-41aa-9475-886ec648b7f8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:31:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24871_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"GLO\", \"trophyTitleDetail\": \"GLO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24871_00_00ADD2AD24791B7A3CE7EBD147264D3A3AEB05F796/80F04E4CF30C855B704374A226E6009ED99FAF23.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T22:57:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25942_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"GLO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25942_00/509ca1ed-74bb-4659-8b9d-afd85b0ea945.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T22:24:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28832_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Richy\\u2019s Nightmares\", \"trophyTitleDetail\": \"Richy\\u2019s Nightmares\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28832_00_00A0BB9B6A6453E27B4152297ADC9B82151B54AB36/994053EAFDA6E1473A347DE5113B0969AFF23DF2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:43:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33178_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33178_00_0035EC2EF638C97461DE9F4426F3EB5F808EA39803/EA17C284DA1556ED1B31D1CB98901E05BBCC0675.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:38:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33182_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33182_00/99748149-0a37-47d0-9aa8-864d59bca92d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:34:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33176_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33176_00_00334D85E261813FB7E739C87A50CDF9B74F0DDFA4/084E1A97666F4A937EEAE80872AA0A21500E2B2B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:31:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33180_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33180_00/d2636717-42c5-41f3-9459-af8784b7fa9f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T22:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33175_00_006A1B1EE7584A66AD8BC9798E52436F97B80AB187/A80B8C9010EAF9ACD9DE8C8DE261C0FC73E63C99.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T21:58:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33179_00/15ff74be-0507-4ee4-aa66-faae785405c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T21:52:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28833_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Richy\\u2019s Nightmares\", \"trophyTitleDetail\": \"Richy\\u2019s Nightmares\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28833_00_004CA84084C06F88E4E8392BC6A1F16491414C9B51/964AE6D60DD6AD46348DD3751E8BC38037A6B6D6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T21:45:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31002_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31002_00_00287354B5431D52DDD68C18B1BE5D9015A19BEC0D/850B84FA9F79A4B838CFC61481EBA82030849ECF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:51:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31006_00/51d861e9-93ca-406c-abfe-876c506b8e49.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:50:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31003_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31003_00_0022B0056C9C1EF0E19EDF79F327CD3207123ABC50/E479BA24957025F897109EE4CB68ADE442AB99A1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:46:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31007_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31007_00/8d13f6c2-6662-4fbc-9709-912d61c24704.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:12:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31001_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31001_00_00F1F2BC727E1F648913BDE0B0BA25D7CC07FA9E01/06D14BB0A4C13CE8A4E9AE34A5FCDA7C0A6EBDD1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:11:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31005_00/d7467c5c-8989-4c8c-807f-d69faf98f924.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:09:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31491_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31491_00_008904F23EBDB92F7EE9D9F798FFB21694CF8BD8A9/4AF6F826F101470174D78614E6CD823A507DFB02.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:58:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31495_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31495_00/bd44f5be-3ef1-4217-9376-17830e6d21f5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:57:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31492_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31492_00_0053FF956A207C0446E66CDFCFF422028D08EA0FB7/923FA82496916928C74EC9AC54538ADEBA0708C7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:54:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31496_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31496_00/22c7fcf1-cf9b-43c5-b79d-d39f8ea642a2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:52:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31490_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31490_00_00CBC8614149C23EFE6DBF52CDB72BB18A3F7FFA4A/E2D77D4B49AA4A56A5EC4E71FEB1246D071402FF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:42:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31494_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31494_00/8f691f3d-aee2-454b-bc5f-4839d1085162.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:40:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33709_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33709_00/5dac2d35-da89-4d0e-af56-c363d6371f85.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T23:16:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33713_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleDetail\": \"Rocketio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33713_00_00D676DD33C88DEB101B8D62E455B871776799D286/9E40A382C4FCC86D2AA8E3C354046526C10169D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T23:12:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33712_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleDetail\": \"Rocketio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33712_00_0076F1276927D74CC84DBD3B5BFF361881DB69FC81/72C2E26F30F005692454D4F88570C5FE492B3160.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:58:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33708_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33708_00/ae7181dd-6aa6-4900-9374-03ecac037c80.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:53:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33693_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Calculator\", \"trophyTitleDetail\": \"Zippy the Circle Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33693_00_006FF143784856E70B3FD38FD8E70EBC53BF35C283/2002FC0ADA8B39D92AE9546ABC59F278388EAA73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:45:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33692_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Calculator\", \"trophyTitleDetail\": \"Zippy the Circle Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33692_00_009D5970344D053E4EAEC7CC26050AB424B96F1FE3/AEB4DBADCBD19F5A806D921EE64C03225DCF4A69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:41:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33407_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Calculator\", \"trophyTitleDetail\": \"ZJ the Ball Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33407_00_00080DC7EB163B680616489D6D193CF31C7DC1FC51/ACC9A168E0AC3C59FAB95258832146F319BB394D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T13:02:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33406_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Calculator\", \"trophyTitleDetail\": \"ZJ the Ball Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33406_00_0090635B4D48D162FBA6B0ECB79E817783393D301E/549BDB2F452E6BC08E7F96A8152AA9B1D9123F26.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T12:59:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kena: Bridge of Spirits\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21924_00/617bd3b6-459d-404a-962d-bda5e59f71f4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 29, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 29, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-19T12:59:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33210_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33210_00/0f049f76-b31b-4afd-b697-879207d22e02.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T22:53:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33213_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleDetail\": \"Driverio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33213_00_00CF37952B42A2DF10E800315226806BD4E76DA072/A0CBEB818F9199442A1A2F335C6CED6C81D720A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T22:23:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33209_00/3851525d-533d-4caf-9bb4-9657e7e03655.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T22:19:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31000_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31000_00_009F03CA22B4A1A8FEF48A796F3839FC063AB5453F/C4EF6CD85FF130FCB723CC34FDE41838548139B1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T21:59:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31004_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31004_00/89fbf4bb-12fd-4acf-8bd0-d920df4b9c72.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T21:57:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31489_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31489_00_00119E9A97607966C06129409B7541440399C4974B/85B2334664930C5835FD46F38FC0071B0C75E1E8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-09T23:13:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31493_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31493_00/8f4ae9d5-d9a4-472c-a132-ae5174ab89f0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-09T23:11:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21691_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"OUTRIDERS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21691_00/ae3fa0ec-5ddd-44b7-b54c-e6755c9ed4a5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 38, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"progress\": 63, \"earnedTrophies\": {\"bronze\": 31, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-08T10:17:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30955_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleDetail\": \"The Football T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30955_00_002AA69A62E7D90FD96879EE4FF30B278DA979FCD7/A6956A814B6F6291826B0D1FA6172FCE9409D9A9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T18:26:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30951_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30951_00/ddc5dd3a-71cb-40ee-95ec-87bdddb1cb8f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T18:23:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31426_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31426_00_005010EB3594A58C4FE83A3802C26E5491A816126E/6CED45DA74ECC8B7E59B826687F1D6FA27F9FC72.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T17:42:32Z\"}], \"nextOffset\": 600, \"previousOffset\": 549, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33701_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jane - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Jane - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33701_00_003FBB498B87D176DE66F61A588B6EFC835B988416/20C8C2601F8186C8671C401A2247139032C273A3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:25:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33700_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jane - Project: Summer Ice Pinball\", \"trophyTitleDetail\": \"Jane - Project: Summer Ice Pinball Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33700_00_00FBDEF3F0D66A607798A1745A76C06F8721C22DD3/97FCC2209BCE05DDAD85A88C4F9DDAAC88A16F51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-04-02T00:18:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31024_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31024_00/e2a62559-5c9d-48ee-be0f-ef6629f73627.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:15:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31022_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleDetail\": \"Vump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31022_00_007F7AAF1AB23DBD15F45FFBCBC519C3C30AF40290/7489C96E529A3493CB3F96187B6252563E88D8E0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:13:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31021_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleDetail\": \"Vump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31021_00_00DC99ED3FE8C48F25D4F192E090286601D0D84A18/7320692706340491A595F66E5D5ED1AB2FADC32D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:11:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31023_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Vump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31023_00/2e9743a7-39e3-4aac-a96e-840f32843fe1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-27T14:08:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27160_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kansei: The Second Turn HD\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27160_00/d104ea85-746c-4659-9535-4ccd0f33d056.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-24T11:06:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37107_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37107_00/e1e4216c-ae8b-4eb6-97d6-b7830f60e30b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:43:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37103_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37103_00_00BE7F51C585707335E96268C1E467DB225B2F5D83/9809C7FA8F2E2349399B5812DF47D3D1FD76DCA8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:40:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37105_00_0000DDBCC13838EA1D8FA5E9C3C0260E758C5D34B3/8E81029492CDB4D97FAE5A5C5C7683AFB21C462F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:38:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37109_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37109_00/df9559ea-0a09-4473-81eb-167baa49c72d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:34:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37108_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37108_00/71615215-9fb9-40e9-8f11-c67086c38fe2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:30:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37104_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37104_00_00309CC1CFA8369EE4A2F51E38D738C8B7FA6803BB/56ACDA47602FF289193CCDD3296999632E11432E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:26:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR37106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleDetail\": \"Main Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR37106_00_000DB5E076FF008D880EB802D643EFDE4D5E8EFB69/8F96DAA52436823A8A78F6BE1D556B9ADE856718.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:23:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR37110_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sister\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR37110_00/8b76df0b-a4f1-468f-b41c-22e147257bb3.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 29, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-23T13:19:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20127_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Life is Strange: True Colors\\u2122 Trophies\", \"trophyTitleDetail\": \"Main trophies for Life is Strange: True Colors\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20127_00_00730C29D3DAE46CA3570934784780CCEC973D5F02/1DC07B62277F15EA07B45D708F458B3299D35F50.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 0, \"gold\": 6, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-22T20:36:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35849_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge the Ball\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35849_00/270283b1-6626-4025-ae78-14b31bf47119.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-22T02:38:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20246_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ghostwire: Tokyo\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20246_00/a1cac1d2-1919-4764-b600-0045c536b54b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 58, \"silver\": 6, \"gold\": 2, \"platinum\": 1}, \"progress\": 28, \"earnedTrophies\": {\"bronze\": 23, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-21T17:54:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34395_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34395_00/a703c708-872e-4098-b9cd-3761ed7fca1f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-20T13:22:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34396_00_00287F5BEE6B8EA8783AE3903A46293315D0C3A7E3/F1008A8E48575B4144FDE8DF38ADBBAA39783548.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-03-20T13:20:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Callisto Protocol\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24730_00/10c87b42-23a5-4af0-a9f4-1d9b67826204.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 6, \"definedTrophies\": {\"bronze\": 24, \"silver\": 11, \"gold\": 11, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 8, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-11T17:24:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35848_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge the Ball\", \"trophyTitleDetail\": \"Dodge the Ball\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35848_00_005589CDED45B81739DEC19F782B05123CDA489B02/DB972EBFC035FD1B6CDB27870B8959DD29F2CC6D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-04T21:15:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35850_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dodge the Ball\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35850_00/f1b1137f-d499-4d75-acc3-0faef0b6ee99.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 32, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-04T21:04:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35370_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of numbers\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35370_00/97fffa43-1621-4c0d-ac69-13ca61bdb213.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-02T13:28:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35369_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of Numbers\", \"trophyTitleDetail\": \"Row of Numbers\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35369_00_0012DAF3D4D73C48056A627C54E51977A1840CBB5A/42431532B76ACDC501F33E85B6ED3C6F0241D491.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-02T13:25:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35368_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of Numbers\", \"trophyTitleDetail\": \"Row of Numbers\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35368_00_009BA6F4AEE62C330304B9214DD276DBD924B00119/9888C8838D9A1ABE03A82868C1313AFE7533DFF0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-01T22:42:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35367_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Row of numbers\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35367_00/99fe96d9-df72-4c6b-a16c-e4daf71d27f8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-02-01T22:38:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33271_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of Nik and Kit (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of Nik and Kit (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33271_00_0045A4EB82A5C8790925715E71195CBDA1A58968F2/194951A15287D3A194E9F7A9035434C43C501AAD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-30T11:07:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33270_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of Nik and Kit (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of Nik and Kit (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33270_00_00906ABB9A27D27E69D4F9BC32AD6AD27005DB1E84/2C6BC32542FE1CC3E6C69C8FA140C2D5E01FDA24.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-30T11:03:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35332_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35332_00/1be736ad-7817-4a28-b521-8f68b402d3d6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T21:08:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35330_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35330_00_00C982DAC755CACCFF7A2DB104799904C9423F1000/CE9E714728088EEF90A048D9D0859E51A3CC1D69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T21:07:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR35331_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleDetail\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR35331_00_00215E0C4C1161A315A16DEDAE4C2912800CD7B799/471643E5BCBF550F7440E7F545DFF18ACAAFEBBF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T17:36:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR35333_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Find the Bug\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR35333_00/d7e39e0d-44aa-46f4-bf85-ddbb897be208.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-29T17:34:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34599_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34599_00/cbb89ac3-4c70-499e-822f-5525eae5e46d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-28T22:39:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34598_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleDetail\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34598_00_0074C64DD7A2B4DDA50B80E8A85D24CD9705C7FF3F/75B748A6B4BE72FBB03A5DB90F033873B4B73D5D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-28T22:24:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34601_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleDetail\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34601_00_007DBD0CC2926ED8CB0E9F89D43C407A28B95B61E1/D651DDE3922237A4C6A24819FE97D8674E3618DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-27T15:57:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34600_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Elves Jigsaw Puzzle Collection\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34600_00/34becb0a-d011-4e9a-b9f8-9ee4b609fa0b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-27T15:15:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34397_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34397_00_0060A8C39958C2300FECFA47FA532FDCDD4EA7A993/F31D4221B0A76790846C8389ABF165B8CE712BFF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T16:04:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34398_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34398_00/c8f05082-8f39-4e8d-b3fd-e7ef09663001.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T16:02:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34400_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34400_00/b7a90586-faae-4e75-b86a-b34775c993c8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:59:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34399_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34399_00_00E7D0C0915FE3ADE210AEDED17C2A37D2D55D54DA/D2173B2238F7490E0E6B98F4345A39107D572043.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:58:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34401_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleDetail\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34401_00_0025DA768E45993F80568D4F00D5022D7EF03E5E8C/4DC2C55FFCFEE3A9DD03E8242AAB06BA6BFF1119.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:56:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34402_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34402_00/d1f0847b-ea93-41b8-ab68-400370054266.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 70, \"silver\": 0, \"gold\": 0, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-17T15:54:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30330_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"SONIC FRONTIERS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30330_00/a6575c03-53d4-46cb-887f-9c0d079f1fc4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 23, \"silver\": 15, \"gold\": 2, \"platinum\": 1}, \"progress\": 66, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 13, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2023-01-11T15:10:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pedestrian\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22546_00/ec54cac9-1456-437f-87b3-137194e9d138.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-28T17:45:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pedestrian\", \"trophyTitleDetail\": \"The trophy set of The Pedestrian\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20921_00_005F4E22DACDAFD1A020592E214D7DDC8EB9E022D7/8256482A32392D7B82B3F8A8AFF9AF40A66603FE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-26T22:46:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23174_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"The Smurfs Mission Vileaf\", \"trophyTitleDetail\": \"Trophy list\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23174_00_00CE02BDE7CC717297B37FE066C500BB89FEBFF612/EEBC87B166DF9FAF96E7FC44DADE7A5A4084C144.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 13, \"silver\": 9, \"gold\": 6, \"platinum\": 1}, \"progress\": 16, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-23T21:19:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23485_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Sifu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23485_00/6c25b29e-cd16-4c6f-b130-58bd6636ab67.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 36, \"silver\": 21, \"gold\": 3, \"platinum\": 1}, \"progress\": 12, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-22T00:00:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33177_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33177_00_00F539BB3E8B03F554AE5E2CB6585E1D9F4963CD0C/6AAEAB8E0EBFB9521F5351438E780C76A441EEBA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-21T01:10:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26002_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleDetail\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26002_00_005159C06447D0DE14618E0F7A1478175C42A3B7F7/BA76A20FA44DE79D100981E5419D3182D1F2BDA5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-21T01:06:52Z\"}], \"nextOffset\": 600, \"previousOffset\": 549, \"totalItemCount\": 1446}" } } }, @@ -861,34 +858,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:56 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27912" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "31282" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:45 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31425_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31425_00_00C667991C2C9A9E69D624FED98323540585FD6BCF/C7FAA73525955F78C52538749FABC3463F7A2113.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T13:54:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31423_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31423_00_0072CD33E12FC7A126095CAA64E4B4C9DBD15BA02A/AE452F348201C87675793B874860481A300AF329.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-06T11:33:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31424_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31424_00_006117DAD8277F49097A33AC2C2879FE5571D17E8C/B4490D8A2A61B9A1F77BE1586D9888361655DC11.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-06T11:20:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30954_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleDetail\": \"The Football T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30954_00_00EB872F9A45DFB04970DE2136A415DC18FEB4BAB5/062F03DCEAB38500D7223056EA031BD48D29C031.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-05T22:46:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30950_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30950_00/dd344437-e4f6-42f9-bd60-109ff44e16c7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-05T22:37:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30617_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30617_00/c0506abb-9412-4718-acd4-273b52fbb44f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:57:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30619_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30619_00_008C7B1C67EFB8FB9F320F5E46A086A2E228D95DD8/D7B08FA40766E3ED677888CE1934FCCA3C445A34.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:56:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30620_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30620_00_009C5EA495720FCF9C13AC5F756D8A15DA0FA63BAA/86DF5462AA74F87ECC2A53A9474444BC8F7C312D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:54:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30618_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30618_00/8b1c863b-e6e0-499e-84ae-61d40d5dd965.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:51:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30243_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30243_00/268f74aa-98aa-453f-9be4-27ea66a6592b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:44:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30240_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30240_00_0017BC17C356E2C104E4E93E509DA915F4DA500D93/117866FBCFD0034A147D853425EC9358175BA6A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:42:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30241_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30241_00_0075E6BD31A289AC263D0EB457008D9910070B9DE0/A3BD44CA2E62B6C09A2DD880348CE11488328580.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T07:08:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30242_00/20b63b6e-2f6e-43ea-9523-4234f2c17137.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T07:06:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30817_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30817_00/2b8fa587-b9e7-486b-a70c-e915f2948541.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T06:26:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30805_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30805_00_00A0FC72D771FB5E4EFC5533CC18084E610BD58374/DF91B96FE8A1EAB96B0168E332B44C2F0ACD2E75.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T06:05:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30806_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30806_00_00DB172739A746A152F00E5B9ECD2E616CA3A44BCD/9E88939EE36DA904B74EB0BC794679A992E20557.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T05:57:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30818_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30818_00/b3479fcb-3d6f-424f-be35-4fa3bcdb18c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T02:46:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30815_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30815_00/819c3e88-01bd-4b07-9f7d-ef660d0f0df4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T02:04:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30803_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30803_00_007F8A31405B8CD842912B7654FE6850DB03A2C54F/E506A8A7C434F565B9FBCF21017458E15D6210A1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T01:46:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30804_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30804_00_00A1CC2475FF93065782316629D307BC0A26C799CF/A1473158FCEB74C69D6503AD02DC040F80BB2C2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T13:50:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30816_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30816_00/187c7e6c-b8e0-4bc6-a86b-f15cdc16ce10.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T13:21:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31246_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31246_00_00FA199DD42BE3BDB38F1A084B4400B1C55EA6431D/0C1AE946C9DF7760C60BAE63414AB246DB62E431.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T12:52:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31248_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31248_00_007647BD75966EAE31D2A9936B200DF75C8B69017D/29E8C2F9FB58D463EC709CA69816C7CF5CAF493C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T12:50:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07591_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"DEAD OR ALIVE 5 Last Round\", \"trophyTitleDetail\": \"Dead or Alive 5 Last Round Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07591_00_008166B473288F5F84695659AB16D48C8030E82010/B710CCE6A4DD149A3A4B497DCE5CD03382400AE1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 33, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"progress\": 28, \"earnedTrophies\": {\"bronze\": 12, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-27T18:41:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15587_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Sekiro\\u2122: Shadows Die Twice\", \"trophyTitleDetail\": \"Sekiro\\u2122: Shadows Die Twice\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15587_00_00B683E5453204A612C38DC218AEF0317CD5E8E9CC/85B017F39EA939B035F2C5A6B7198E87DAC9B610.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 4, \"platinum\": 1}, \"progress\": 70, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 8, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-17T19:36:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31249_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31249_00/26973edb-d387-4c1d-9eb8-2ec035f3bb55.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-16T10:51:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31247_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31247_00/a258563d-3608-438b-a110-42fc8fac7576.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-16T10:50:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31245_00/08ccf264-92d4-4e44-a59a-def92a25a866.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T01:03:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31244_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31244_00_00304E8CE87D9D1547875D0940E4D5E68E72D50228/C46339384C3B8ABF3909D7732C69A23219E121D5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T01:02:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31243_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31243_00_0082C45FF04178E3AF9FD568CDBB5503DBF5389AEC/9D89A758DBFA9F0A1E335F78C1555213B995C7F5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T00:58:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31242_00/fe414604-a836-4c17-af5c-0d1fde42df3c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T00:56:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31171_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31171_00/9959a673-f5e2-43cc-b7ac-4c89821a1f27.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:11:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleDetail\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31175_00_00841B7A134B32903E6A90F5026E2562D53F78D531/CBA8E38F405030C52C14783BD4D9CEC6E4772D6B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:10:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleDetail\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31174_00_0048E460299715426755B4990444D4D432F8B295DA/6C270232271B379861118A10EECDDB9DC13D16C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:08:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31170_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31170_00/f47ef590-4d59-4747-8ca3-84af49545ec2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:07:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31212_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31212_00/1734ee3e-72eb-4893-9855-0c4ebb919447.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:28:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31216_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleDetail\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31216_00_005170EC6B75040F35CD3B5F085C1CDE1CE37F19DD/F986CB7A30633903A4B2AC59D6EE6F15F356928A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:24:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31215_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleDetail\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31215_00_00DF53A84017406C3DB0C22ACDE6AA4572EC869D13/9D0C6065D9000CC7794398BC5A76FFA3ECD77276.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:23:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31211_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31211_00/b443c1a9-c748-4d7f-83ff-57155c001fd0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:21:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31664_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31664_00/0740272c-e45b-44db-8d6a-19034c11deb0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:03:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31663_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31663_00_008FE9449AAD24A76C2445B5CBEAB91D7E2F9CC658/306CD55BB8B22A2C2F647041FD12CF75CBF29C92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:02:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31665_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31665_00_000D1AE71303D56B3ED4F2DC0670A6D1809787969C/4F85BD1BC96131AB5F149FF6F7D053609871C8A0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:00:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31666_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31666_00/96510ea2-b9e7-43a4-99ce-310179f885cd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:58:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31669_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31669_00/66232ba8-037f-46fe-b188-c396407e45b8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:55:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31667_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31667_00_000EE4F4FC4FB63968D86700391D6C166F7DC50982/AC59D2463848B97557D81842F9A73E2F716543D1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:54:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31668_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31668_00_002672618000C4200FC0265C539BD1A1CC3BFFBA39/96246FF6544EFB138FC7B0BA119F99A027F84725.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:52:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31670_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31670_00/028a3368-5a02-4049-b3cf-5c3faf9202fa.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:49:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32499_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Windmill Engine\", \"trophyTitleDetail\": \"Trophy set for Windmill Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32499_00_001561D05C14F9C5E4C38F6DD5F045AF99550E02B2/6DDFAF14F1E5A2A8AD078843669F74554C8A24C2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T02:10:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32497_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Windmill Engine\", \"trophyTitleDetail\": \"Trophy set for Windmill Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32497_00_0067FB4D9BCAE9FBD9FFC187EADCD67E6963D36F72/99C31BF53D70A5DC3A59818DA6DE866E8A132647.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T02:02:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32498_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Windmill Engine\", \"trophyTitleDetail\": \"Trophy set for Windmill Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32498_00_00EF456609C5234CB5FC1D87F8FD248E17F7ECA935/92E6CEB0573DEF659AC7A3FC0A8A37AA1286BD5C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T01:53:36Z\"}], \"nextOffset\": 650, \"previousOffset\": 599, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26005_00/5a858f83-91c7-4606-b60c-c573c5c8fc29.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-21T00:41:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31682_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31682_00/3bc1b71b-6d2a-4eeb-a2ac-67fa615b1ed4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:43:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31679_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleDetail\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31679_00_00A6E0D9C4BDBA1C2DC3CEDDD06022B6729073D6B4/0099127223ECF5C349239E06C57BFD42E2DEDDAC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:42:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31681_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleDetail\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31681_00_00EB4ED4FA3C39D29D2551DB43AEF385715887F689/8F5C92A03E42BCADECB1E628ADA033C6752DACD0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:38:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31683_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chicken Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31683_00/39b65f8e-fa2a-4519-959b-c775ac66d8fc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T22:37:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32828_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleDetail\": \"The trophy set of The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32828_00_0077EBD5D58BAAE82E3E82E02B87C46BC156D92BD1/C4E8BB5ABAE0E13257843B4AAAC614784494B6F8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T15:28:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32836_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32836_00/d78a98f8-6a01-4476-81eb-15a8172a0311.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:29:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33721_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleDetail\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33721_00_0055483F5988AF27E3BA6D86F2D93D7A48EC7667E4/A7C79BD916AF0FF5350C716ABFF45FDA1A8EE68E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:16:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33720_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33720_00/54783674-804e-45b7-b069-3c891a38027a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:13:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26003_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleDetail\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26003_00_00A53C07BFD4FC07BD09044E9A8E9908A884FBD76C/0CBDB0591B4A929999BBCFBE2FC545667A90EA52.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T14:12:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26006_00/25bb06f7-2d60-42fa-9938-0316644eef74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-20T03:34:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33718_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleDetail\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33718_00_00C6EC0F8E6BB565100A81B370A502499FB18A7941/5DE87DF085FA6349E940C3D62A6B12AC0B872BC2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T22:45:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33719_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Truck Journey\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33719_00/205741da-82cf-4e16-ae00-f9f2221ff681.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T22:44:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25184_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25184_00/0b7767b1-19fc-4e90-bd86-a54920b20d5d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T20:53:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25183_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleDetail\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25183_00_00D6F894B8347ED57F3F56D368AA3AF5660B870808/B5F4A217037CA22CFD996451AF5E1D5039616563.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T20:38:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25188_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleDetail\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25188_00_00C238B968F5FE6EB3A6C1C20C11095E4A6E2284DE/65DAE1313B90DFF1BD0FA86640F953CD431E377C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T20:06:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25185_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Orbibot\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25185_00/02dc87b4-e14f-41c8-80fc-7c8146e65f74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T19:32:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34892_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Impossible Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Impossible Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34892_00_00D090609A7DAF138D786EF6CBFA3046C5640EB3FC/427EA618BF42FDD1D925828EA4591B99597D4399.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T01:03:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34891_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Impossible Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Impossible Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34891_00_008AB5A453BEFB2FE94CBAA4809E116EF21BAA341A/215D3452A151E460502474C7974D9D5EDE58DF05.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-15T00:33:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34890_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Hard Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Hard Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34890_00_00FC138D2F13ACC028D0CC0A5F3F845D5B665BF26D/7BEC9CC68BB80790DEF16A599471F75E15917CCB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:56:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34889_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Hard Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Hard Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34889_00_0058304B62B71EC4E62801E57259067A8AC593FBE9/CC454F43CA4CF2B65CC0C9F58A79C7FE62FB526E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:53:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34888_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Easy Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Easy Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34888_00_00871D5F2FBF6110CB04DAD189367CA2FC8FC20856/6F7DCA630BA8E21378C4ECEBE0252995954B800F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:35:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34887_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity: Easy Mode Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity: Easy Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34887_00_00D1A43AD383850E62C69DD856B663DBD02E91112D/AA1B27A74F0C2051086E287B0B694072595A09B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:30:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34211_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn Hiragana!!\", \"trophyTitleDetail\": \"Learn Hiragana!!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34211_00_00116076461E14A56C24CF0196764285A30DF34BE6/2B2AD5CFE30C293A76DD499E7A13F080795C2AEF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-14T22:09:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Learn Hiragana!!\", \"trophyTitleDetail\": \"Learn Hiragana!!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34208_00_00DC61BED304CE49D30E59795160C48E799A17D87C/B05E2E39763E145388722C83A05A8804430518D9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-13T01:49:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34885_00_00158FEE8B952A13A6A55041D455E3F116FDA06BFD/B2B874B84072A290A97FADB33A9FE6C149DF940F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:51:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34886_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Run To Infinity Trophies\", \"trophyTitleDetail\": \"The Trophy Set for Run To Infinity\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34886_00_00CA5C33335B05975EF03FFFFD752AD2C48F4922A9/CC210CA7744795959448D45163E11A7F9C439F9D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:27:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31220_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleDetail\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31220_00_00342BA16331F3CF445092227E5BA776D2AF15F960/B0EEE1BA6B3E26B5C3E88FAAD0C26CE27E0B123D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:18:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34569_00/b4a24a17-cf99-4603-80c8-09539dd87ded.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:16:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleDetail\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34568_00_000891BBC549F6568CEA26B28F87170DE83988102C/20E4AD6C9EB6F6947254B0AAF30F5211FE6FF5A3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-11T20:04:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleDetail\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34570_00_00C087C62BAC789A3E6D2B14D5EBF83EC1B94C9488/4B38870674766C0F03CB02381E66E8EDA60D69A5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-07T22:07:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR34571_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Furry Tangram Lite\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR34571_00/5ca53134-f0fe-4082-b394-676efb7c3dde.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-12-07T01:07:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22997_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Plague Tale: Requiem\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22997_00/670783d5-ff34-4fff-a69d-11361e0e7cd1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-14T12:42:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32829_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleDetail\": \"The trophy set of The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32829_00_00772AA819CBAABEF25780132532C8BF1AF124442F/3A01DA17C3C83F4134ECB878697D0D63D8F9047B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-14T10:06:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR32837_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Chicken Wings\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR32837_00/da46b2db-bc6e-4400-a6b8-fc7c20c38fb4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-14T10:02:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31762_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31762_00_00FDED564B210CBEDFB59A527CE4CEB4F11C052621/F95C48C4B2B5C3CD757C88B80A2D7F234844BD00.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:34:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31761_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Mark's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31761_00_00A850A1CD1A69070437E4AD762C7CEBA1552E4831/132981BA524E3AB8D7DFF185AF11E10EF4A67DE1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:33:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31129_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31129_00_00C4D6B41D6C693F3E4EB91D599B31A77312FE6C7D/9B49E8A5629D9980BFDCE06C8EE2B8F1C3F87C7C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:32:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31128_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Pammy's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31128_00_0041B9194C4D6BBB886E940C8D8FD40D85E2A2D670/AF4DE779D574F48852063C7FEAE5E92B7AD232F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:31:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33861_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33861_00_00C6C47259CC40140ADCA5581F6A5B32431EEF6940/48217A2C11781BC6C557AE77F3059162391FB594.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:22:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33860_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Scott's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33860_00_00F1B18F9754215C57CE1206159E4E1F118154910B/BD291237B58D3D3F5090DFB4B134D106776550E7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:16:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34292_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34292_00_0038AE0C18129CD1D7451CD4CB2D364B51D8608F75/07EB2ADE9A582F0165A632F533B9A0ECF6941AE8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:14:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34291_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Erin's story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34291_00_00470E64ACC7647881127D2B68EF42AC64FB8B3A9D/0B7A769B4FF5BF9C1475C6D2D5FC84383AAE51AB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:12:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33863_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33863_00_002F297EF55760067ECA51C232B3D3D19C22F36CE2/8F9049FF0F00EB789E4F76187489AE35FE736127.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:04:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33862_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to James' story in the World of Our Church and Halloween (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33862_00_00A21F143113DCDC2359932B92A4F3E6728CF96BCA/4BED1B541D55DA55DA19ECA470CEAA4AF5D8665D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:02:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34688_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Microarcade Applepie\", \"trophyTitleDetail\": \"Let's bake some delicious pies from scratch!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34688_00_0094583BE652700A9423341FC8B73534D29A96C73E/EE1D5BD1236DE844911EF2C3340FFC933795A222.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-11T18:01:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR34690_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Microarcade Applepie\", \"trophyTitleDetail\": \"Let's bake some delicious pies from scratch!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR34690_00_00930C1CDAC210F4F66FA396211FE3A7C53B0857FC/81EF11419C4EE8A7AD03AF315E89C233D70FA742.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-11-10T10:06:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26546_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Last of Us\\u2122 Part I\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26546_00/905833e1-1c8e-48eb-826f-01839fda59a0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 14, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 7, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-31T12:01:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33181_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33181_00/a832ff4d-6923-4788-b871-15c7562cf208.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-28T00:14:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33214_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleDetail\": \"Driverio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33214_00_00B20F1822F3C16C8E02714988F6D91BA1D031F3D9/3F7EA65DF74AA49B109A530E9C6EC041D277B6F7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-28T00:11:46Z\"}], \"nextOffset\": 650, \"previousOffset\": 599, \"totalItemCount\": 1446}" } } }, @@ -924,34 +921,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:56 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "27976" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28633" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:45 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21361_00\", \"trophySetVersion\": \"01.07\", \"trophyTitleName\": \"Nioh\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21361_00/1b1eb0f4-64db-4d2c-8776-ed992a8ee5af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 73, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 75, \"earnedTrophies\": {\"bronze\": 47, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-03T09:15:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05818_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Bloodborne\", \"trophyTitleDetail\": \"Bloodborne Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05818_00_00347A646D41E9660F4153AD7A0274E2BC597C5A27/AE3477BA91121142BEB82AB2B7E2F8BAB9B3C17A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-31T12:25:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13281_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"DARK SOULS\\u2122: REMASTERED\", \"trophyTitleDetail\": \"DARK SOULS\\u2122: REMASTERED Trophy Collection\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13281_00_00A03E8F7ED2727FADE2548E45F2781D32F5D048F6/B26EE8644603C33DBEB01C4E172FB4972D069B2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-08T20:38:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30927_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30927_00/351630e2-412c-4cea-b44b-0ec7255c539d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-05T13:42:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30923_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30923_00_0057345D5514E19F17D880E2A122CB902D4CD79B5E/20652EB1D3001D02EBBEE4D6101D6D47DE0F15A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-05T13:38:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30924_00_007EAD65292AE6F2469B3AB544F94DEA806620EBD5/CACAC7ED8725C29958A3CBDF8A3AD8914F7BEC8E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T13:10:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30928_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30928_00/7ce654f8-6e70-47de-ab62-197bc3725337.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:48:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30926_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30926_00/8c1b2e8f-17c2-4452-bf93-e048a736b593.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:14:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30922_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30922_00_00A89512C3A9D5AA7D4E255724F209926A71005D1E/AD35D61B9C08494A9AA66C1A47660FB4D11343EE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:09:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30921_00_0080BF8DB2A23DBA1E54580A905DFE0669CEC0AF96/4E9263C07A9879577AAE56C129FA78BBCE9F1C2B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:06:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30925_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30925_00/00fb7184-f842-4428-b200-ef7af948c6c0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:01:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14318_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"CODE VEIN\", \"trophyTitleDetail\": \"CODE VEIN Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14318_00_00ED5C9FFA150D7D17CFE2C8930CE46713949B2361/6F3920E968F334ABE84E578FBEEC838FBA158FC2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 11, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-31T22:22:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29456_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29456_00/4d527748-94f0-49d0-b3c5-ebb6089366ce.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-23T00:27:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21685_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Language of Love\", \"trophyTitleDetail\": \"The Language of Love\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21685_00_008931D3F4CA9D2588D1A53B875C988E56EDDC2653/E707A2E802E6638A199B59B9881F9D318F38B1F8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:35:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21683_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Language of Love\", \"trophyTitleDetail\": \"The Language of Love\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21683_00_00B1B27028FBF464C70B9DD82FF6DA132624F2BD87/D4D7AA0031D5B21B5B06648B6367FA49C1B15925.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:31:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21684_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Language of Love\", \"trophyTitleDetail\": \"The Language of Love\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21684_00_00A2784EAA763B7453F8F7B63EA22B669264DD1DA5/D4CBD21B96810321BEC34C38B4F1AB42F2F82ADD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:28:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30033_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30033_00/a87547e2-631f-42a1-b526-6bb81cbf48cb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:05:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30029_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30029_00_006F3B6A595B2C815564B2925BCA613A51F8842313/ED5C33D8C9FDE61AE1C47651E1290ED17FC499CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T22:57:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30030_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30030_00_001DEA469334C26B36A4550BD9743F14026208A7BC/D0C6BA53D335807A13FB221D3A54E0B1A7212707.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T22:50:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30034_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30034_00/7c39ff16-c5a5-45fd-a7ab-af31fb2b7bf5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T21:10:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30031_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30031_00/e4831121-4f2c-47ef-a7e0-0a98d9b58f21.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T12:37:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30027_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30027_00_00F19B629A8220B0822EE3407C86040092A0C3A0A6/389F460D078997161A47CE15005B5156E615121B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T12:24:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30028_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30028_00_00D2FE999E0CAAB5857DCEC21EAC7F52FD3AA986F0/8AE8DEDF9F08D638C2DD02A1FBC20F641471CB56.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T01:09:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30032_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30032_00/7207615a-359f-4738-812d-d4b2c2a6db5c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-21T20:26:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30783_00/7112b71f-d8ef-4d8d-8375-acf60e9cf792.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-17T00:06:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30779_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleDetail\": \"The trophy set of The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30779_00_00F13CA91F054B307E28EB307141893640F6A460ED/AD18EB9A81E9DD945743312C109F692D4D0A464B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-17T00:02:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30780_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleDetail\": \"The trophy set of The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30780_00_00FD2A660E749E79F293BE41238C1CFEDF4D8230E7/A6010CC519A407FACC1E52F84A196096B0A693B1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:58:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30784_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30784_00/a06940dd-8b30-4d91-82c5-4a54790f515d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:55:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30544_00/0060fd5d-4158-41fd-b6d6-0134b9b37ecc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:50:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleDetail\": \"The trophy set of The Jumping Soda\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30546_00_00C9783C3D42EAC4B393E24F2FE5FF6F37F0C185C6/05D2075AC9A45DCEF7B6DCF1E46F83F3CD96C26A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:46:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30547_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleDetail\": \"The trophy set of The Jumping Soda\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30547_00_00E1D37120C7E343DBFDF75C1CC7D1A177E5CECF59/B9BBA33AE52EFBAE64A82AF35AA1D9D52F161C4E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:43:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30543_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30543_00/affe623d-3c8d-4880-a857-7b99f7016d9d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:39:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27563_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27563_00/1c175dae-ab51-4224-8599-1362721978c8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T22:17:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27559_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27559_00_00819D33AEE7626B2E16D2BD8E6ECF6E6304F8E594/7E5C7DE48F7D45B14CDA4BC35B4BFAB53332F418.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T22:08:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27558_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27558_00_00B009BCF9990DA8D634BB02E56FA03304D61D38CC/FEF84B57B6205874CBE5AA598065241166CEB249.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-15T22:29:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27562_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27562_00/2610989f-f518-4da3-a122-b5ae82bc7645.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-15T22:10:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30458_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30458_00_0090A965866343CE7A543EBE41D17647EE98A933AF/10A7FF9CEB44629564D5BFEE1FDF9D108668C5D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T21:30:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29886_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29886_00_00A447DC5FB4EA52817F388398ED201DFB05B8AC24/9CC28B5CBA4DB40483517783C026BC06E6FA15CB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T21:21:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29211_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29211_00/25b1b1f3-1260-4daf-a874-0f4c045fbf5f.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T18:37:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29207_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29207_00_007F65AEEBB0F937B8B942F1556EB2A20FD606725B/25165C5C79751B1C1D9D39F072F502331FFFDC4B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T18:31:17Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30555_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30555_00/d0de303e-1ecf-4dfa-afd2-7171bc5aeef9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T18:00:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30554_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30554_00_00D07F306F2D269C88F42D39A7B350F422AA13AD44/067441D63BAFA0C131C97F918C788BDCDF041757.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T17:59:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30557_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30557_00/c47ad1c7-da76-4e78-aaf7-6bda75592e03.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:34:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30558_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30558_00/7b685e5a-560e-4f2f-b0ce-b2812d9612f4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:32:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30552_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30552_00_00CA5AA89755F3D761FA7E09709B97113AB328A3C7/8D6E8610CF525ED3FC47CF3D9BB671A34A4ADD0F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:29:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30551_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30551_00_00B83E8E3C9AAD0FC9B7E4300F7245E4ADED18806C/EDBB8E2AE868D28D4FF3492C0F4D28BFE5297660.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:27:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30553_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30553_00_00F2F106E2DF7927CCD7F68E8F0090617A32E77271/FDFEB083A810B1AA9DAFAFD7923A9E5110AAA8D3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:25:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30556_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30556_00/20028c5a-3d0d-4256-89f6-7070fa647920.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:23:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30795_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Engine\", \"trophyTitleDetail\": \"Trophy set for Alien Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30795_00_0026CC944E11647CDB04F4BCF98DC7E781F82915DA/1FB6A1D4AC26BF5E1BFD491BC86022816E6B9234.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:21:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30796_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Engine\", \"trophyTitleDetail\": \"Trophy set for Alien Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30796_00_00730B87CA7E9448A36BE64F664C6F9BFB1C1273C5/57FF65741170578F8FE095DB014D9F4750134A3C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:14:49Z\"}], \"nextOffset\": 700, \"previousOffset\": 649, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31224_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31224_00/028fc864-002c-48ba-ac32-815d97558f57.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:54:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31219_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleDetail\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31219_00_0073D1DD536F7047E5AAEB8AD86BB4F31D22736E75/9036E6310C65E116C8805205E8E2F1BF03844B51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:53:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31223_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31223_00/6fe849e7-cc74-4a42-87d4-508c79551aad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:53:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30974_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30974_00_006957D444D9832A6EB2FF30045BB7ACA19CAB5566/596C96C0E30B01E948E0AC17995B1DA81DA31EE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:43:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30972_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30972_00/3655cae2-226e-4c93-b6c6-9b9e26c9a3cb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:39:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30973_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleDetail\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30973_00_00940EEAF47F66CDC7EFE3D8D2CE3D3CB0B3F1F44E/ECE8DB7E45FB0CCF94F83333ADB1039B1EC30B57.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:35:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30970_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Tennis T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30970_00/42159c0b-203a-41aa-9475-886ec648b7f8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T23:31:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24871_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"GLO\", \"trophyTitleDetail\": \"GLO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24871_00_00ADD2AD24791B7A3CE7EBD147264D3A3AEB05F796/80F04E4CF30C855B704374A226E6009ED99FAF23.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T22:57:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25942_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"GLO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25942_00/509ca1ed-74bb-4659-8b9d-afd85b0ea945.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T22:24:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28832_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Richy\\u2019s Nightmares\", \"trophyTitleDetail\": \"Richy\\u2019s Nightmares\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28832_00_00A0BB9B6A6453E27B4152297ADC9B82151B54AB36/994053EAFDA6E1473A347DE5113B0969AFF23DF2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:43:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33178_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33178_00_0035EC2EF638C97461DE9F4426F3EB5F808EA39803/EA17C284DA1556ED1B31D1CB98901E05BBCC0675.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:38:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33182_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33182_00/99748149-0a37-47d0-9aa8-864d59bca92d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:34:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33176_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33176_00_00334D85E261813FB7E739C87A50CDF9B74F0DDFA4/084E1A97666F4A937EEAE80872AA0A21500E2B2B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-27T20:31:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33180_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33180_00/d2636717-42c5-41f3-9459-af8784b7fa9f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T22:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleDetail\": \"Pacmaga 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33175_00_006A1B1EE7584A66AD8BC9798E52436F97B80AB187/A80B8C9010EAF9ACD9DE8C8DE261C0FC73E63C99.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T21:58:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pacmaga 2\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33179_00/15ff74be-0507-4ee4-aa66-faae785405c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T21:52:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28833_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Richy\\u2019s Nightmares\", \"trophyTitleDetail\": \"Richy\\u2019s Nightmares\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28833_00_004CA84084C06F88E4E8392BC6A1F16491414C9B51/964AE6D60DD6AD46348DD3751E8BC38037A6B6D6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-26T21:45:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31002_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31002_00_00287354B5431D52DDD68C18B1BE5D9015A19BEC0D/850B84FA9F79A4B838CFC61481EBA82030849ECF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:51:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31006_00/51d861e9-93ca-406c-abfe-876c506b8e49.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:50:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31003_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31003_00_0022B0056C9C1EF0E19EDF79F327CD3207123ABC50/E479BA24957025F897109EE4CB68ADE442AB99A1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:46:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31007_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31007_00/8d13f6c2-6662-4fbc-9709-912d61c24704.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:12:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31001_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31001_00_00F1F2BC727E1F648913BDE0B0BA25D7CC07FA9E01/06D14BB0A4C13CE8A4E9AE34A5FCDA7C0A6EBDD1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:11:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31005_00/d7467c5c-8989-4c8c-807f-d69faf98f924.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T11:09:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31491_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31491_00_008904F23EBDB92F7EE9D9F798FFB21694CF8BD8A9/4AF6F826F101470174D78614E6CD823A507DFB02.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:58:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31495_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31495_00/bd44f5be-3ef1-4217-9376-17830e6d21f5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:57:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31492_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31492_00_0053FF956A207C0446E66CDFCFF422028D08EA0FB7/923FA82496916928C74EC9AC54538ADEBA0708C7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:54:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31496_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31496_00/22c7fcf1-cf9b-43c5-b79d-d39f8ea642a2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:52:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31490_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31490_00_00CBC8614149C23EFE6DBF52CDB72BB18A3F7FFA4A/E2D77D4B49AA4A56A5EC4E71FEB1246D071402FF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:42:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31494_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31494_00/8f691f3d-aee2-454b-bc5f-4839d1085162.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-23T10:40:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33709_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33709_00/5dac2d35-da89-4d0e-af56-c363d6371f85.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T23:16:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33713_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleDetail\": \"Rocketio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33713_00_00D676DD33C88DEB101B8D62E455B871776799D286/9E40A382C4FCC86D2AA8E3C354046526C10169D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T23:12:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33712_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleDetail\": \"Rocketio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33712_00_0076F1276927D74CC84DBD3B5BFF361881DB69FC81/72C2E26F30F005692454D4F88570C5FE492B3160.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:58:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33708_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rocketio\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33708_00/ae7181dd-6aa6-4900-9374-03ecac037c80.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 3, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:53:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33693_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Calculator\", \"trophyTitleDetail\": \"Zippy the Circle Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33693_00_006FF143784856E70B3FD38FD8E70EBC53BF35C283/2002FC0ADA8B39D92AE9546ABC59F278388EAA73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:45:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33692_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Calculator\", \"trophyTitleDetail\": \"Zippy the Circle Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33692_00_009D5970344D053E4EAEC7CC26050AB424B96F1FE3/AEB4DBADCBD19F5A806D921EE64C03225DCF4A69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T22:41:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33407_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Calculator\", \"trophyTitleDetail\": \"ZJ the Ball Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33407_00_00080DC7EB163B680616489D6D193CF31C7DC1FC51/ACC9A168E0AC3C59FAB95258832146F319BB394D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T13:02:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33406_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Calculator\", \"trophyTitleDetail\": \"ZJ the Ball Calculator Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33406_00_0090635B4D48D162FBA6B0ECB79E817783393D301E/549BDB2F452E6BC08E7F96A8152AA9B1D9123F26.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-22T12:59:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Kena: Bridge of Spirits\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21924_00/617bd3b6-459d-404a-962d-bda5e59f71f4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 29, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 29, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-19T12:59:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33210_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33210_00/0f049f76-b31b-4afd-b697-879207d22e02.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T22:53:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR33213_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleDetail\": \"Driverio\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR33213_00_00CF37952B42A2DF10E800315226806BD4E76DA072/A0CBEB818F9199442A1A2F335C6CED6C81D720A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T22:23:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR33209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Driverio\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR33209_00/3851525d-533d-4caf-9bb4-9657e7e03655.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T22:19:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31000_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleDetail\": \"Tump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31000_00_009F03CA22B4A1A8FEF48A796F3839FC063AB5453F/C4EF6CD85FF130FCB723CC34FDE41838548139B1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T21:59:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31004_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31004_00/89fbf4bb-12fd-4acf-8bd0-d920df4b9c72.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-17T21:57:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31489_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleDetail\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31489_00_00119E9A97607966C06129409B7541440399C4974B/85B2334664930C5835FD46F38FC0071B0C75E1E8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-09T23:13:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31493_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Qump Jump\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31493_00/8f4ae9d5-d9a4-472c-a132-ae5174ab89f0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-09T23:11:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21691_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"OUTRIDERS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21691_00/ae3fa0ec-5ddd-44b7-b54c-e6755c9ed4a5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 38, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"progress\": 63, \"earnedTrophies\": {\"bronze\": 31, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-08T10:17:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30955_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleDetail\": \"The Football T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30955_00_002AA69A62E7D90FD96879EE4FF30B278DA979FCD7/A6956A814B6F6291826B0D1FA6172FCE9409D9A9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T18:26:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30951_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30951_00/ddc5dd3a-71cb-40ee-95ec-87bdddb1cb8f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T18:23:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31426_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31426_00_005010EB3594A58C4FE83A3802C26E5491A816126E/6CED45DA74ECC8B7E59B826687F1D6FA27F9FC72.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T17:42:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31425_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31425_00_00C667991C2C9A9E69D624FED98323540585FD6BCF/C7FAA73525955F78C52538749FABC3463F7A2113.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-07T13:54:34Z\"}], \"nextOffset\": 700, \"previousOffset\": 649, \"totalItemCount\": 1446}" } } }, @@ -987,34 +984,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:57 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28951" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "28830" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:46 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27263_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball (Machine #1) - Our Church and Halloween RPG\", \"trophyTitleDetail\": \"Pinball (Machine #1) - Our Church and Halloween RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27263_00_0077BA02E235E973D09D7509277D352A9997E3A032/CDEC073FFF3F78A270FE0BAB99E48FA74BC4FAD1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T23:18:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27262_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball (Machine #1) - Our Church and Halloween RPG\", \"trophyTitleDetail\": \"Pinball (Machine #1) - Our Church and Halloween RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27262_00_00BEC75623EEB8EE80912B60BC0D636816CBFDCB83/408A549DB3D0521FA25DC7107C49896692191E6B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T23:09:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30768_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30768_00_003C954CC98FF70E5CCC4E14BBF78FD2359AB9EDDF/6FDACD3EAB59D17C5149A5AE0FC91A109675ED9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T23:06:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30767_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30767_00_0014960EFED066C18D57082031632D0DE3CB9AFE18/C72FEBE6C03850EF948E141DA33BE68BC84B726A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T22:44:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29956_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29956_00/4924e7fe-2419-46e3-82bb-e703e955a6e4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:33:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29958_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleDetail\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29958_00_00752DA71A604378BBEF0FE75E141DC42FCB84883F/796821E9B3E16471A7C02D3B3D4189187E33877F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:28:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29959_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleDetail\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29959_00_00D10AF77DA75C499F6789410BB0B6AEA6C3EF1325/FF742796C3352AA2D85C681C5DE742CB7E2C897F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:24:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29957_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29957_00/7252381b-e0b7-4f91-aa93-8cc4381d67e4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:20:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09604_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Virginia\", \"trophyTitleDetail\": \"A selection of Trophies for the computer game known as Virginia\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09604_00_00656B24A910ED8A0A103CF92269CB45F8D99B8098/B99A5FED3253E71FF0758870C216BA12D570DEA1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T02:00:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30537_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Oriana (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Oriana (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30537_00_002F4462C0144502AF0A6EE8EADC3FA3F8003C03F1/CCE58E2236793949EF235213C61AC4D737962540.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T01:23:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30536_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Oriana (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Oriana (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30536_00_00FFBDBE1FEBB4AE74E4C262BE768020745ECCED1E/A18D38DFF91F71B6CF6BC706803F854AEF664370.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T01:19:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13335_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wreckfest\", \"trophyTitleDetail\": \"The Trophy Set of Wreckfest.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13335_00_00ABD81555C00BD51AA0CB540C3BCCD8A326DA55CC/E72FB5AEDB78CBD4C102223C55581BCCCBD51EED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 81, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 11, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T00:18:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30748_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30748_00/ba4a8510-15d7-4643-ac73-36098c657058.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:20:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30747_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Advanced\", \"trophyTitleDetail\": \"Rainbow Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30747_00_002B3076F52C238F950F4ADA078E898A5A4DFF1813/28464B1D5D3DE7D9333ED565F199EB4EF459CF39.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:19:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30746_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Advanced\", \"trophyTitleDetail\": \"Rainbow Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30746_00_00ECD5465B43835C1A6B239A961915D4DAF62FCF92/8D3F28DB0D6F98E0F7E8B3EA4D5571A1D92B058A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:17:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30745_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30745_00/2c4bdc11-a1fd-4b2d-87c8-f6c2b0252ad9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:16:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29887_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29887_00_0014EED06B5AC829A8EBFE72D270D76F9D6D075C32/451C418AE2A9109928D44751E2844110C3581890.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-06T23:59:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30614_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30614_00/dbd9153d-7b20-44ab-9002-6103fa7497dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-06T16:15:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30610_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30610_00_0089023CA1B154238469DDEF60DDAD67D8FC555EA3/909387FEF65C218FF3E8AF837DEBE066A207F5B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-06T16:13:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30611_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30611_00_0084CB058E22BF974A58C7DB7B49389940D345E0B3/1A3C439C5925BBC032B7E46558C947D8B1E7D28A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T14:27:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30615_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30615_00/62927e22-1af0-4021-8756-95c9405bf616.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T14:26:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29210_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29210_00/0b00f3db-7250-4ac4-909f-1538eea48290.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T14:01:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29209_00/0bf9911f-a266-4d54-b0c0-9e8a6dcb15a8.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T13:55:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29208_00/1196a90f-ba4c-4d87-a1ef-adf2725ddd96.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T13:48:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29206_00_0091FD69CABE419298A1A2B6C66D6178F89A07D7DE/8FDB874F142E50C52C304D1F95B5E3CAA4692EF1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T23:12:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29205_00_00815A24189C9EB0F57E610F2F864E750086E1F257/E76A66E58BD5E9B3609A8169D890C378D7E58A23.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T23:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29204_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29204_00_00CB7BD7FDCF7E0A9AB8FD238B7A693EF5A051DA9D/46E15590DF5064A226D671A7413BB2C51C2E7C4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T22:57:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30457_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30457_00_00FB3F88A195745EADA4AAE99E1C6E8ED2B390643D/272239EAB176C65C9BBD3E74BB426F64218F89DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T22:42:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18718_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Disney Classic Games: Aladdin and The Lion King\", \"trophyTitleDetail\": \"Trophy data for Disney Classic Games: Aladdin and The Lion King\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18718_00_000F4200D9277C6BF8FA1A8874F9AECCB82CA33803/397CD9A06BF8BA6A660C44B8CC40929946AF396C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-26T18:37:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30612_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30612_00/817329a8-0d61-45b5-bb28-92ff44258834.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:39:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30609_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30609_00_00F3947C3CC7CD772CA07C44FD11A46202120C41B5/97DD0F48A7280285CDD913509783836DB0E34191.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:36:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30608_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30608_00_0040CE710598C4F705B87DC8C093AA8E6C78B0C006/7D760315F4767A459C4EEDB422DC2C1AF1FE4CE4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:31:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30613_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30613_00/cf28fecb-c34b-40a3-9f71-4fe9039728d2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:26:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30497_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30497_00/5af3ec8c-5988-4db0-a60c-1140cd4dd4e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T19:33:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30494_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30494_00_001C9E30D909C920355FADA676DA7F16B968975522/9B5D3EA5CD83B1B96AB84E875C79DC227EEC5713.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T19:32:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30495_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30495_00_00339656D363D87CB67990EEAE879B7B74865EECAF/40001BBF00107348AA984224AFAF33037A9893BD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:34:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30496_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30496_00/aa3d85b5-9ba0-4aa0-b42c-50fb49850b49.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:32:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30324_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30324_00/f31ed965-6363-4d8f-a50b-a4bdaaeeacba.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:29:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30322_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30322_00_0038BB6FCCA622C1D9C0722AD32B61A1C35B13B9FC/F7D5AF4F9EF94550E8A490DCF52D7FD038FB7C0A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:25:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30323_00_0081ACB1620FCA24AEF943923AF004E89314CE61DC/E61FD701338270ADA0976AC35917BF4C24E46905.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:22:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30325_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30325_00/6770b42f-f48f-472e-9164-956c4c3e34f1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:19:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30188_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30188_00/1622d4de-9ead-4f25-a2c1-eacc6fff93dc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:58:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30187_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleDetail\": \"The trophy set of The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30187_00_00FECAA94C64430ACB8ACF6FB0A21140C986B3E383/634AA63C15BC2BC9AD9A0D89F1D99D4D8621B6CD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:55:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30186_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleDetail\": \"The trophy set of The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30186_00_00D93765C42C74745CAF88B4AEC5DDCF85884F7D07/BB8825F7646E58BA3538BA46D5D99D2232E5F98B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:43:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30189_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30189_00/2fea527c-4e6c-4db8-bc4d-ff030d964198.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:40:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30464_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30464_00/b371ed8c-1cd0-4896-a4ed-f7bc7f7ff59e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:24:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30463_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleDetail\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30463_00_00C4F7CB16132D7872BFDBF376B50AA11B47F46517/6C2126FB9C9E3360FAD9B05AF753AA0C3222F120.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:21:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30462_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleDetail\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30462_00_00D227BB0A9A1FFE882F354BEE5F7125E8444E95AF/718856EE9128C5C6CFC03CBDF7FC616E95180391.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:11:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30465_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30465_00/1b2e5da2-81fe-49d7-a6de-d197d253d8f9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:07:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30455_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30455_00_0069A2D5FD2F7C3B31C8F2A6D2D9F15C1999DBC061/EEE334745FADB52C9743615DA48C31A7F38F552A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:04:31Z\"}], \"nextOffset\": 750, \"previousOffset\": 699, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31423_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31423_00_0072CD33E12FC7A126095CAA64E4B4C9DBD15BA02A/AE452F348201C87675793B874860481A300AF329.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-06T11:33:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31424_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Organic Engine\", \"trophyTitleDetail\": \"Trophy set for Organic Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31424_00_006117DAD8277F49097A33AC2C2879FE5571D17E8C/B4490D8A2A61B9A1F77BE1586D9888361655DC11.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-06T11:20:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30954_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleDetail\": \"The Football T\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30954_00_00EB872F9A45DFB04970DE2136A415DC18FEB4BAB5/062F03DCEAB38500D7223056EA031BD48D29C031.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-05T22:46:43Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30950_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Football T\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30950_00/dd344437-e4f6-42f9-bd60-109ff44e16c7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-10-05T22:37:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30617_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30617_00/c0506abb-9412-4718-acd4-273b52fbb44f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:57:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30619_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30619_00_008C7B1C67EFB8FB9F320F5E46A086A2E228D95DD8/D7B08FA40766E3ED677888CE1934FCCA3C445A34.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:56:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30620_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30620_00_009C5EA495720FCF9C13AC5F756D8A15DA0FA63BAA/86DF5462AA74F87ECC2A53A9474444BC8F7C312D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:54:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30618_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30618_00/8b1c863b-e6e0-499e-84ae-61d40d5dd965.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:51:54Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30243_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30243_00/268f74aa-98aa-453f-9be4-27ea66a6592b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:44:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30240_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30240_00_0017BC17C356E2C104E4E93E509DA915F4DA500D93/117866FBCFD0034A147D853425EC9358175BA6A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T16:42:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30241_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleDetail\": \"Lump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30241_00_0075E6BD31A289AC263D0EB457008D9910070B9DE0/A3BD44CA2E62B6C09A2DD880348CE11488328580.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T07:08:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30242_00/20b63b6e-2f6e-43ea-9523-4234f2c17137.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T07:06:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30817_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30817_00/2b8fa587-b9e7-486b-a70c-e915f2948541.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T06:26:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30805_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30805_00_00A0FC72D771FB5E4EFC5533CC18084E610BD58374/DF91B96FE8A1EAB96B0168E332B44C2F0ACD2E75.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T06:05:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30806_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30806_00_00DB172739A746A152F00E5B9ECD2E616CA3A44BCD/9E88939EE36DA904B74EB0BC794679A992E20557.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T05:57:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30818_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30818_00/b3479fcb-3d6f-424f-be35-4fa3bcdb18c5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T02:46:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30815_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30815_00/819c3e88-01bd-4b07-9f7d-ef660d0f0df4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T02:04:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30803_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30803_00_007F8A31405B8CD842912B7654FE6850DB03A2C54F/E506A8A7C434F565B9FBCF21017458E15D6210A1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-29T01:46:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30804_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30804_00_00A1CC2475FF93065782316629D307BC0A26C799CF/A1473158FCEB74C69D6503AD02DC040F80BB2C2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T13:50:48Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30816_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 3\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30816_00/187c7e6c-b8e0-4bc6-a86b-f15cdc16ce10.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T13:21:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31246_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31246_00_00FA199DD42BE3BDB38F1A084B4400B1C55EA6431D/0C1AE946C9DF7760C60BAE63414AB246DB62E431.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T12:52:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31248_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31248_00_007647BD75966EAE31D2A9936B200DF75C8B69017D/29E8C2F9FB58D463EC709CA69816C7CF5CAF493C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-28T12:50:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07591_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"DEAD OR ALIVE 5 Last Round\", \"trophyTitleDetail\": \"Dead or Alive 5 Last Round Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07591_00_008166B473288F5F84695659AB16D48C8030E82010/B710CCE6A4DD149A3A4B497DCE5CD03382400AE1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 33, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"progress\": 28, \"earnedTrophies\": {\"bronze\": 12, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-27T18:41:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31249_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31249_00/26973edb-d387-4c1d-9eb8-2ec035f3bb55.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-16T10:51:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31247_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31247_00/a258563d-3608-438b-a110-42fc8fac7576.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-16T10:50:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31245_00/08ccf264-92d4-4e44-a59a-def92a25a866.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T01:03:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31244_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31244_00_00304E8CE87D9D1547875D0940E4D5E68E72D50228/C46339384C3B8ABF3909D7732C69A23219E121D5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T01:02:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31243_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleDetail\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31243_00_0082C45FF04178E3AF9FD568CDBB5503DBF5389AEC/9D89A758DBFA9F0A1E335F78C1555213B995C7F5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T00:58:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31242_00/fe414604-a836-4c17-af5c-0d1fde42df3c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-09T00:56:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31171_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31171_00/9959a673-f5e2-43cc-b7ac-4c89821a1f27.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:11:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31175_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleDetail\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31175_00_00841B7A134B32903E6A90F5026E2562D53F78D531/CBA8E38F405030C52C14783BD4D9CEC6E4772D6B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:10:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleDetail\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31174_00_0048E460299715426755B4990444D4D432F8B295DA/6C270232271B379861118A10EECDDB9DC13D16C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:08:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31170_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Mix\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31170_00/f47ef590-4d59-4747-8ca3-84af49545ec2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T14:07:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31212_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31212_00/1734ee3e-72eb-4893-9855-0c4ebb919447.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:28:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31216_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleDetail\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31216_00_005170EC6B75040F35CD3B5F085C1CDE1CE37F19DD/F986CB7A30633903A4B2AC59D6EE6F15F356928A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:24:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31215_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleDetail\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31215_00_00DF53A84017406C3DB0C22ACDE6AA4572EC869D13/9D0C6065D9000CC7794398BC5A76FFA3ECD77276.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:23:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31211_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pig Quiz\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31211_00/b443c1a9-c748-4d7f-83ff-57155c001fd0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:21:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31664_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31664_00/0740272c-e45b-44db-8d6a-19034c11deb0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:03:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31663_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31663_00_008FE9449AAD24A76C2445B5CBEAB91D7E2F9CC658/306CD55BB8B22A2C2F647041FD12CF75CBF29C92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:02:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31665_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31665_00_000D1AE71303D56B3ED4F2DC0670A6D1809787969C/4F85BD1BC96131AB5F149FF6F7D053609871C8A0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T12:00:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31666_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31666_00/96510ea2-b9e7-43a4-99ce-310179f885cd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:58:41Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31669_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31669_00/66232ba8-037f-46fe-b188-c396407e45b8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:55:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31667_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31667_00_000EE4F4FC4FB63968D86700391D6C166F7DC50982/AC59D2463848B97557D81842F9A73E2F716543D1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:54:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR31668_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleDetail\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR31668_00_002672618000C4200FC0265C539BD1A1CC3BFFBA39/96246FF6544EFB138FC7B0BA119F99A027F84725.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:52:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR31670_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Shapeu\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR31670_00/028a3368-5a02-4049-b3cf-5c3faf9202fa.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 16, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T11:49:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32499_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Windmill Engine\", \"trophyTitleDetail\": \"Trophy set for Windmill Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32499_00_001561D05C14F9C5E4C38F6DD5F045AF99550E02B2/6DDFAF14F1E5A2A8AD078843669F74554C8A24C2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T02:10:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32497_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Windmill Engine\", \"trophyTitleDetail\": \"Trophy set for Windmill Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32497_00_0067FB4D9BCAE9FBD9FFC187EADCD67E6963D36F72/99C31BF53D70A5DC3A59818DA6DE866E8A132647.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T02:02:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR32498_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Windmill Engine\", \"trophyTitleDetail\": \"Trophy set for Windmill Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR32498_00_00EF456609C5234CB5FC1D87F8FD248E17F7ECA935/92E6CEB0573DEF659AC7A3FC0A8A37AA1286BD5C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-06T01:53:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21361_00\", \"trophySetVersion\": \"01.07\", \"trophyTitleName\": \"Nioh\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21361_00/1b1eb0f4-64db-4d2c-8776-ed992a8ee5af.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 73, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 75, \"earnedTrophies\": {\"bronze\": 47, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-09-03T09:15:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05818_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Bloodborne\", \"trophyTitleDetail\": \"Bloodborne Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05818_00_00347A646D41E9660F4153AD7A0274E2BC597C5A27/AE3477BA91121142BEB82AB2B7E2F8BAB9B3C17A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-31T12:25:58Z\"}], \"nextOffset\": 750, \"previousOffset\": 699, \"totalItemCount\": 1446}" } } }, @@ -1050,34 +1047,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:57 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "28323" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29281" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:47 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30192_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleDetail\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30192_00_00E916182FC6E428BA410A4B7482D8016E4747C5DE/E493AD71BB8BE14A88A786B383B5FFBA89CC8EA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T21:55:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30180_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30180_00/812e0e17-3666-4f06-a44e-755bb1769e54.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T21:38:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30193_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleDetail\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30193_00_0046B9BAFDA01CB9934B4C516F43B959FA52D8FB1C/B1F6EC27287DFACA87E338E21EE49E6EB3BA90E3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T21:33:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30456_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30456_00_001C1A91CA6D1D68776D946CF2433FEA3A4B2753A4/53BDC04679208D97D934CDC568F624044316A8FF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T01:07:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23631_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STAR WARS Jedi: Fallen Order\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23631_00/ee967b85-6f76-4294-84af-ac7112dd4e7e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-22T21:28:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30181_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30181_00/7ad782a7-5683-4791-8603-2ce39877b091.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-21T00:44:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21725_00\", \"trophySetVersion\": \"01.07\", \"trophyTitleName\": \"Ghostrunner\", \"trophyTitleDetail\": \"Ghostrunner\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21725_00_001D0238D7F07216CB42A43E741830F15A09EA395D/397F3662B9996B5A324C2C79ED4EA6400A4E733C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 21, \"silver\": 19, \"gold\": 4, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-20T00:26:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21583_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel's Guardians of the Galaxy\", \"trophyTitleDetail\": \"The Trophy list for Marvel's Guardians of the Galaxy.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21583_00_000D308C0EDE9CE1355B3D5092CA8BF6BA269D35E6/95DA801AB3062B74A27832075B6FA7C95621D6E6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 54, \"silver\": 3, \"gold\": 1, \"platinum\": 1}, \"progress\": 43, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-09T10:40:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29706_00/f485223f-bea4-4e4a-be0b-c330f130a1e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:23:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29726_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleDetail\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29726_00_00E376E92B72141C064788D98ED17D0644BA926F75/4A3DF09AEC318E15A98806508E881DAC7859E0D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:12:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29707_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleDetail\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29707_00_00F383E596E58D716AA6D568C6D5A6DEC9BCFDD54D/D51F9927E57F78767467B0EF2F935F94E2124DBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:08:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29705_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29705_00/8ecccaed-9fe6-4d11-9d73-ccee502cee89.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:04:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30025_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30025_00/801cd0ae-3274-4f03-b0bc-37793875b910.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T20:40:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30023_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleDetail\": \"The trophy set of The Jumping Taco\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30023_00_00407F65A18CA83AE46AD1BC6798E57E11939ACCB1/43AACE728839FB600B9EDCB1CA1443078C9E3D96.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T12:47:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30024_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleDetail\": \"The trophy set of The Jumping Taco\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30024_00_0081F85C15D2358FB75515E67A7ED1893CF6B9963F/069F0606DE890FC5A821BC42DD97D6E4F51A5E19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T12:44:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30026_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30026_00/219b6060-c1b1-46bb-b98b-620850d489eb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T12:39:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24924_00/08bec9c4-5e76-4d03-95ca-231671575e38.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T23:01:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24928_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleDetail\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24928_00_00B005AB5C0D3A299B3A17A32EBE641A540531B4BD/FB29B043106462ADE636C79BDC537552149F54F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T22:25:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23271_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23271_00/dcb0243a-5b80-45d8-b993-eadcd8934fcd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T21:53:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21940_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleDetail\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21940_00_0023149EE54A1E97DF93FD32C217B080F79D5CD7FD/DCA76D7C133613F597398FD0EDF9EB3CD9127517.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T13:20:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21941_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleDetail\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21941_00_00E35BAC7E94C5A20876B90014E9D1F416BE66B5BE/315323E75D54AE6547ABC504B2266CA9CB1C9B1B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T12:26:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23272_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23272_00/4f82f12d-c37a-44c5-8f84-e9f66c03b92d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T11:29:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26337_00/e6267107-595a-4b1d-8c13-0b0a114c4495.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:57:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26334_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleDetail\": \"Divination\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26334_00_00D7350FA35820F633AEB029D52C4400A1CA325CDC/BCBB7F32393F9B090922052A6D22760575F417C6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:54:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26333_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleDetail\": \"Divination\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26333_00_00FED6C661D9101548EC4E25910361EB7F70600BE7/741AE9FA2C50BA79749794A3BA52E1A1B5FB3A8F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:48:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26336_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26336_00/2db8572b-6b3d-49cb-83cd-48b00d4931cc.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:45:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21870_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Call of Duty\\u00ae Vanguard\\u00ae\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21870_00/4f89fc32-db3d-4dab-95b2-0c40fd7bd643.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 32, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 12, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:27:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29616_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo 3\", \"trophyTitleDetail\": \"The great trophy collection of Mayo the third.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29616_00_002B09BE4F834CA3265520BA749030FF0F6231EA11/8E3DB3B24504EC112FAF283968FD7F6F0E181C63.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-17T12:20:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29615_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo 3\", \"trophyTitleDetail\": \"The great trophy collection of Mayo the third.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29615_00_0029CCEC9AB9F2BF0BEB4F1B0812B6CA117F4422E0/2B5BC403EBE74E21DF32F32E634A7231EF340D73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-17T07:47:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29884_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29884_00_00D8AAD85AC03A7468F19F98EBC0DC676449D7A2C3/E23381FCB4D6191FD02498BD7C412B28D23A547C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-16T22:35:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29885_00_00F2068827B265968ADD3A53F54CBE0B6669CB7AAC/0B0B8C5717515FB79D98CDD514ED9886798F4D68.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-16T22:19:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29954_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29954_00/39e9db6f-4e3c-4460-89fe-a7ffea645b9c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T22:19:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29955_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29955_00_004DB684983F18892EC57D556E13A7ED739B528134/EA51AB0BA1F08EA78EACB0B23964DE4643875FE9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T22:12:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29952_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29952_00_00FF05234706B7EABB19A5DC4CA8F9322AF654D201/2A02B1A8813DFA7F95284FB3426F1F978E01AF81.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T22:04:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29953_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29953_00/41101518-8cbe-433e-94e8-07bcad8abc10.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T21:51:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29587_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of ZJ the Ball (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of ZJ the Ball (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29587_00_0036C126155E958134242226EC128E989F0BD100FB/D97E40D1A07C5C9A36C65C049C00C4582980A535.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T04:07:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29586_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of ZJ the Ball (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of ZJ the Ball (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29586_00_0011E02CE427EF2C34A3DD716FDB48587610B01F94/C45818FFC11D92922D07D25D03A35387799E3467.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T04:06:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26992_00/0f880ba3-1821-4561-8c38-4d558b35d904.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-14T20:18:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26990_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26990_00_0042FC850CB4DDA0E3749489443941C7DDA032250B/0F0470C46A1A73C3338F5CFDBF72DE7E705D168A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-14T20:09:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25370_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25370_00/be6a6335-4081-4790-9055-b04f959da7da.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T08:47:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23060_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleDetail\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23060_00_00326CC28CA6563FBA65B71A7DBC22F8029D98BFD5/685BE961673EE584219CEC02A1377643CA6ADD80.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T07:26:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23717_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23717_00/a4c7fcfa-3ddc-4c96-9d0e-7d514fd5e271.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T02:52:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleDetail\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21786_00_00709BFFA7F76625780A1EC48161BADC2F3CF9BA63/1A7B2CD38BDE6A35A2506ED40A0FDE591B12A805.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T02:38:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleDetail\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21785_00_008EFF9BFB7C246AD3DE57782DF4360C442A0EA598/70F34C816F9D84D0C1EF9FC3A9049E3A4930A7A6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-11T06:53:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23716_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23716_00/a503e999-8d8a-4bd9-9f32-3136a25adb7f.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-11T06:34:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29533_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29533_00/b970397d-fc4e-4215-b07c-f4322e040c74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T05:31:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29534_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleDetail\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29534_00_00118447C885BBD68B2FC0D3EF1CCC58E5468E435E/DC985BA6CB77F7E6B00938CAFC375680E174387E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T05:20:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29535_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleDetail\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29535_00_0075CA09F79DAD5BD90E8151FE58055CDBC64C2909/754E6FDF5AE7821C9E89CD06D4B9EB49D2B1D329.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T05:00:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29532_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29532_00/36a3ad11-b18c-4659-8c9d-2d99a8bbd791.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T04:46:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29732_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top 2 - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top 2 - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29732_00_0097AA58DB87CCC5BC83442CA4FC573AC693960D6B/11817B337ADD73650DF53564124DFF3BE1838E55.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-08T05:44:30Z\"}], \"nextOffset\": 800, \"previousOffset\": 749, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13281_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"DARK SOULS\\u2122: REMASTERED\", \"trophyTitleDetail\": \"DARK SOULS\\u2122: REMASTERED Trophy Collection\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13281_00_00A03E8F7ED2727FADE2548E45F2781D32F5D048F6/B26EE8644603C33DBEB01C4E172FB4972D069B2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-08T20:38:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30927_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30927_00/351630e2-412c-4cea-b44b-0ec7255c539d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-05T13:42:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30923_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30923_00_0057345D5514E19F17D880E2A122CB902D4CD79B5E/20652EB1D3001D02EBBEE4D6101D6D47DE0F15A2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-05T13:38:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30924_00_007EAD65292AE6F2469B3AB544F94DEA806620EBD5/CACAC7ED8725C29958A3CBDF8A3AD8914F7BEC8E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T13:10:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30928_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30928_00/7ce654f8-6e70-47de-ab62-197bc3725337.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:48:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30926_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30926_00/8c1b2e8f-17c2-4452-bf93-e048a736b593.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:14:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30922_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30922_00_00A89512C3A9D5AA7D4E255724F209926A71005D1E/AD35D61B9C08494A9AA66C1A47660FB4D11343EE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:09:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleDetail\": \"Bump Jump\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30921_00_0080BF8DB2A23DBA1E54580A905DFE0669CEC0AF96/4E9263C07A9879577AAE56C129FA78BBCE9F1C2B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:06:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30925_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bump Jump\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30925_00/00fb7184-f842-4428-b200-ef7af948c6c0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-08-04T12:01:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14318_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"CODE VEIN\", \"trophyTitleDetail\": \"CODE VEIN Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14318_00_00ED5C9FFA150D7D17CFE2C8930CE46713949B2361/6F3920E968F334ABE84E578FBEEC838FBA158FC2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 17, \"silver\": 11, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-31T22:22:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29456_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29456_00/4d527748-94f0-49d0-b3c5-ebb6089366ce.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-23T00:27:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21685_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Language of Love\", \"trophyTitleDetail\": \"The Language of Love\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21685_00_008931D3F4CA9D2588D1A53B875C988E56EDDC2653/E707A2E802E6638A199B59B9881F9D318F38B1F8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:35:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21683_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Language of Love\", \"trophyTitleDetail\": \"The Language of Love\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21683_00_00B1B27028FBF464C70B9DD82FF6DA132624F2BD87/D4D7AA0031D5B21B5B06648B6367FA49C1B15925.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:31:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21684_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Language of Love\", \"trophyTitleDetail\": \"The Language of Love\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21684_00_00A2784EAA763B7453F8F7B63EA22B669264DD1DA5/D4CBD21B96810321BEC34C38B4F1AB42F2F82ADD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:28:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30033_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30033_00/a87547e2-631f-42a1-b526-6bb81cbf48cb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T23:05:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30029_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30029_00_006F3B6A595B2C815564B2925BCA613A51F8842313/ED5C33D8C9FDE61AE1C47651E1290ED17FC499CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T22:57:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30030_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30030_00_001DEA469334C26B36A4550BD9743F14026208A7BC/D0C6BA53D335807A13FB221D3A54E0B1A7212707.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T22:50:10Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30034_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30034_00/7c39ff16-c5a5-45fd-a7ab-af31fb2b7bf5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T21:10:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30031_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30031_00/e4831121-4f2c-47ef-a7e0-0a98d9b58f21.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T12:37:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30027_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30027_00_00F19B629A8220B0822EE3407C86040092A0C3A0A6/389F460D078997161A47CE15005B5156E615121B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T12:24:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30028_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30028_00_00D2FE999E0CAAB5857DCEC21EAC7F52FD3AA986F0/8AE8DEDF9F08D638C2DD02A1FBC20F641471CB56.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-22T01:09:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30032_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30032_00/7207615a-359f-4738-812d-d4b2c2a6db5c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-21T20:26:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30783_00/7112b71f-d8ef-4d8d-8375-acf60e9cf792.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-17T00:06:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30779_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleDetail\": \"The trophy set of The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30779_00_00F13CA91F054B307E28EB307141893640F6A460ED/AD18EB9A81E9DD945743312C109F692D4D0A464B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-17T00:02:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30780_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleDetail\": \"The trophy set of The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30780_00_00FD2A660E749E79F293BE41238C1CFEDF4D8230E7/A6010CC519A407FACC1E52F84A196096B0A693B1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:58:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30784_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Sandwich\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30784_00/a06940dd-8b30-4d91-82c5-4a54790f515d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:55:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30544_00/0060fd5d-4158-41fd-b6d6-0134b9b37ecc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:50:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30546_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleDetail\": \"The trophy set of The Jumping Soda\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30546_00_00C9783C3D42EAC4B393E24F2FE5FF6F37F0C185C6/05D2075AC9A45DCEF7B6DCF1E46F83F3CD96C26A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:46:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30547_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleDetail\": \"The trophy set of The Jumping Soda\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30547_00_00E1D37120C7E343DBFDF75C1CC7D1A177E5CECF59/B9BBA33AE52EFBAE64A82AF35AA1D9D52F161C4E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:43:01Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30543_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Soda\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30543_00/affe623d-3c8d-4880-a857-7b99f7016d9d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T23:39:22Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27563_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27563_00/1c175dae-ab51-4224-8599-1362721978c8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T22:17:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27559_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27559_00_00819D33AEE7626B2E16D2BD8E6ECF6E6304F8E594/7E5C7DE48F7D45B14CDA4BC35B4BFAB53332F418.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-16T22:08:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27558_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27558_00_00B009BCF9990DA8D634BB02E56FA03304D61D38CC/FEF84B57B6205874CBE5AA598065241166CEB249.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-15T22:29:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27562_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27562_00/2610989f-f518-4da3-a122-b5ae82bc7645.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-15T22:10:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30458_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30458_00_0090A965866343CE7A543EBE41D17647EE98A933AF/10A7FF9CEB44629564D5BFEE1FDF9D108668C5D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T21:30:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29886_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29886_00_00A447DC5FB4EA52817F388398ED201DFB05B8AC24/9CC28B5CBA4DB40483517783C026BC06E6FA15CB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T21:21:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29211_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29211_00/25b1b1f3-1260-4daf-a874-0f4c045fbf5f.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T18:37:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29207_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29207_00_007F65AEEBB0F937B8B942F1556EB2A20FD606725B/25165C5C79751B1C1D9D39F072F502331FFFDC4B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T18:31:17Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30555_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30555_00/d0de303e-1ecf-4dfa-afd2-7171bc5aeef9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T18:00:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30554_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30554_00_00D07F306F2D269C88F42D39A7B350F422AA13AD44/067441D63BAFA0C131C97F918C788BDCDF041757.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-14T17:59:15Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30557_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30557_00/c47ad1c7-da76-4e78-aaf7-6bda75592e03.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:34:31Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30558_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30558_00/7b685e5a-560e-4f2f-b0ce-b2812d9612f4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:32:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30552_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30552_00_00CA5AA89755F3D761FA7E09709B97113AB328A3C7/8D6E8610CF525ED3FC47CF3D9BB671A34A4ADD0F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:29:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30551_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30551_00_00B83E8E3C9AAD0FC9B7E4300F7245E4ADED18806C/EDBB8E2AE868D28D4FF3492C0F4D28BFE5297660.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:27:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30553_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleDetail\": \"Frogo\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30553_00_00F2F106E2DF7927CCD7F68E8F0090617A32E77271/FDFEB083A810B1AA9DAFAFD7923A9E5110AAA8D3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:25:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30556_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Frogo\\n\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30556_00/20028c5a-3d0d-4256-89f6-7070fa647920.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:23:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30795_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Engine\", \"trophyTitleDetail\": \"Trophy set for Alien Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30795_00_0026CC944E11647CDB04F4BCF98DC7E781F82915DA/1FB6A1D4AC26BF5E1BFD491BC86022816E6B9234.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:21:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30796_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Engine\", \"trophyTitleDetail\": \"Trophy set for Alien Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30796_00_00730B87CA7E9448A36BE64F664C6F9BFB1C1273C5/57FF65741170578F8FE095DB014D9F4750134A3C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-12T02:14:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27263_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball (Machine #1) - Our Church and Halloween RPG\", \"trophyTitleDetail\": \"Pinball (Machine #1) - Our Church and Halloween RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27263_00_0077BA02E235E973D09D7509277D352A9997E3A032/CDEC073FFF3F78A270FE0BAB99E48FA74BC4FAD1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T23:18:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27262_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball (Machine #1) - Our Church and Halloween RPG\", \"trophyTitleDetail\": \"Pinball (Machine #1) - Our Church and Halloween RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27262_00_00BEC75623EEB8EE80912B60BC0D636816CBFDCB83/408A549DB3D0521FA25DC7107C49896692191E6B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T23:09:45Z\"}], \"nextOffset\": 800, \"previousOffset\": 749, \"totalItemCount\": 1446}" } } }, @@ -1113,34 +1110,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:58 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "29394" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29748" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:47 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29731_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top 2 - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top 2 - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29731_00_00E0BA66CCC0A98C55BA27A4293D8180129193DD46/76138AF1DE8FEA104771BFB251F6E063A845FD93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-08T05:36:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28997_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ultra Mission (PS5, SIEA)\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28997_00/73e8cca0-3b4e-4d00-b563-b81248434621.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 36, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 4, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-03T02:58:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29743_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rock Paper Scissors - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Rock Paper Scissors - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29743_00_00A3FCD64653E71344F6C4995018D7F9440F1A4297/2021ED149A1CC7A0DA256E700F5CFF85D114D7E2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T22:57:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29744_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rock Paper Scissors - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Rock Paper Scissors - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29744_00_00E99D9FED4AD5D43C308D08AB3EF58DAB4874EF24/BE4954FADBEA2D9ADDEE3A098040523C930123A3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T22:55:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29406_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29406_00/95635dd1-a658-4739-bce1-80bf283931dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T22:45:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29409_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleDetail\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29409_00_0069617AAB1BC208A62124C750041483FFDB765CA1/B98159B7E0896EAF0DB199259FE59A475CA4C7DE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T20:50:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29407_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29407_00/6ebb92b2-3232-432c-96ab-bd8b537ea90c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-29T21:56:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29408_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleDetail\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29408_00_009A5FF519C57F8A5301A6A178B842F4F358C3F710/13F56A66A3566FBDF63C2377FF6805DA38CED867.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-29T21:53:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12128_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"Ark: Survival Evolved\", \"trophyTitleDetail\": \"Ark: Survival Evolved Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12128_00_0012880DBC94ADC820F12FC201F1A5879223A25EE0/3BFB3D7DB4D527B26388D13B567B950C95E4A0D0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 13, \"silver\": 8, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 8, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-28T04:17:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24925_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24925_00/66bcc0bd-0ca9-45b3-b88e-2d06be0dea18.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-25T00:14:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24929_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleDetail\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24929_00_00569C96898EE8FBCFEE6AA72F458F8572440E9ED4/2339BDA27058E1761E77D57E1CE246621000D2B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-24T23:45:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22197_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Snake Boat: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the trophy set for Snake Boat: Otterrific Arcade.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22197_00_00334B7421DA67A6433BE202AADD7F66EB2934DEEE/73912E21E88390B6FE405D6975A2E2294AC19635.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T05:32:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27760_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27760_00/040aeb88-6240-439c-b4f3-03c095760ec0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:48:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27759_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27759_00/2d557bd4-3b9f-4d80-9dea-28d0bde74f15.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:39:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27758_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleDetail\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27758_00_001AF30448720C057DBD3D5D0A0F8E41F6957FDB12/319493778056D85264D0BDAAE4BAD0E5E133B104.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:31:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27757_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleDetail\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27757_00_0090190C89C7B87C36773983023B29379279ED438D/98D0E88BD8FB8FE3A176406641818E60328BA824.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:23:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26923_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26923_00/4f8277ab-5899-4fa6-8763-ff43ea3360db.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:50:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleDetail\": \"The pig D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26924_00_007108DF582EE05FC5E50B1075CDDF5420ED051C81/36DF3BE6BCC34EB884001C6E921B4CD904C3EBEB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:46:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26041_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alienzix\", \"trophyTitleDetail\": \"Alienzix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26041_00_00F3F9E9E907DD1F8027546C3379F0BAA238A0A512/24A9ADBB6D604896A2341B2F195BE2E4EA3B68AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:43:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26040_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alienzix\", \"trophyTitleDetail\": \"Alienzix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26040_00_00C8C22A5C207F7263C6E913187E8FA8ED8E5596AD/066890897CB2809F29E2AF9E7B718ED382D26174.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:32:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28126_00/775c8c79-69ea-4dbf-b680-1e43cbafdf22.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T21:01:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28124_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleDetail\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28124_00_00E51FC510B07D6D16DFAAC54D6620795B27D62006/53B6D337D6239F26D0942EADCF37250EA48BCAAE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T20:59:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28125_00/c03258d3-9e73-4ded-962a-8adb3cf1c192.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T17:10:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28123_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleDetail\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28123_00_004BAE06E1CE1BCD6E58DD282878707A7560C5558C/1C76F93CE9D91A50D66A371FD15BC434B7F77DCC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T17:08:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29591_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29591_00_00009984A31B8803FD4B4D95CAC206BEC1FD0420B2/27C2FEAACDFA1584756A1FE9600B56314337A4FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T18:57:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29590_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29590_00_00B810515F9A75FA80507C5E6A634DBE5150238EDF/08501C9F451382DC160278745F8E6B686B1B6D89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T18:45:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29588_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny\", \"trophyTitleDetail\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29588_00_00923E7FF3EA098390A193180876EFEBAB4F81826F/38918D78BDBBB7EEE7010021D9812A735DD6C8BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T06:32:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29589_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny\", \"trophyTitleDetail\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29589_00_0020F71A291E87BE6B70CFE6E8A981AF185EFA1459/2E93994780C2A85E30F01BBD6D57EBDC669C13AA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T06:28:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28873_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ice Hockey - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Ice Hockey - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28873_00_001D75BDDC3436A98C3F001177C565E44452CC2437/9D33F1866B34B4AED7D2528845630AC828E7D92D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T20:02:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28872_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ice Hockey - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Ice Hockey - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28872_00_005769DAA7EFE95D988CC8AECE2FD748DDA5E86539/C0235EE7CDAA02191B049AE3F6A55FC3AC2233D5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T20:00:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27741_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27741_00/545fa227-7bec-4c52-9d00-339df6ee276f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T19:51:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27740_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27740_00/96685fe4-7464-4bb4-be4e-7b3b9eae8265.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T19:33:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27738_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleDetail\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27738_00_009A6B4B03E75F29730125619F147BEFB446B0C355/5A9808AEE504E191D77D138E82FE7BA2384FC5FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T01:12:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27739_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleDetail\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27739_00_009AE96C5053D07D6C3485B494036918DA434EB48F/0071B3B34706CA789E1898A8F51F1ADC495BB2B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-09T22:32:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27784_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27784_00/fea7732b-fb5f-446d-a2c7-cd39afa08f17.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-08T23:17:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27786_00/d6b4ebf8-652a-41f7-a685-252e6291fc22.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-08T19:07:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleDetail\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27783_00_0052A8E99A5191CECD7A1DD3EAE2085C66ABDE8239/8BA74B97A333AB41C3F24F55E0DE44AAD1061F89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T21:36:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleDetail\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27785_00_00C9287D22E6FE085F9757CDB67DFAA570E001931F/9E79CF6204CE2E935116837819D64885D563E534.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T11:44:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26064_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26064_00_00BCDACD9F75A06F0F589449E3410BE6158D63847F/B438561ADC4A45EA73FC419A9C40AC6532872A4B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:56:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26066_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26066_00_00F6CEB72E41E2965BD09190EE0F1D6CB7D302D743/8B8211A8F81D14858A076D6E2B3621CB50072866.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:51:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26065_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26065_00_001CBF98AE15CF0BDFE0A23477CFB473C9C7060B3B/DE6B1295B06A0BA864E2AA2F9756091E1B02E5FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:40:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26063_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26063_00_00D32AA2BF2C1246AD2E496CE69CFAC86E2148945A/4D0DA4F73012EE9174C58D816639E49F90C1801B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:35:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29385_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Soccer - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Soccer - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29385_00_0060D7DC3E51F9FA8F4EDC81269B56D6D2BD2C134C/26C0515C79C97354B38BE40BC25124E99B71836C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T09:29:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29386_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Soccer - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Soccer - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29386_00_00EDD6B70AFDE46E3FF8AF46C3553B2FF86403694A/56D98BD956290579D1FA50225BE9BEDAB3C49141.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T09:26:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24126_00/127b1f4d-9334-4a9f-98a8-a55fe72dc233.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-28T10:30:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22095_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleDetail\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22095_00_00ADFB353781757EA9143D0DA607C98251BFB01028/A80CDB5F663A2861E58EC21E4F63A0FAD688688B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-28T10:25:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24127_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24127_00/9f94c440-cc06-49ac-aa58-86d0e0922cf9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T23:11:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22096_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleDetail\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22096_00_009092EF6ABF22113812F2B2B873B83C725D111F7B/65AADD2A5686DA80B90534CFF84F73A4215B8453.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T23:03:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28644_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28644_00/4b7df575-742c-46d7-83fe-78a5e108c7ad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:43:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28645_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28645_00/ba7ea1b7-6e3c-42de-9c19-41ac072e6fab.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:36:03Z\"}], \"nextOffset\": 850, \"previousOffset\": 799, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30768_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30768_00_003C954CC98FF70E5CCC4E14BBF78FD2359AB9EDDF/6FDACD3EAB59D17C5149A5AE0FC91A109675ED9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T23:06:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30767_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to Jane's Story in the World of Project: Summer Ice (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30767_00_0014960EFED066C18D57082031632D0DE3CB9AFE18/C72FEBE6C03850EF948E141DA33BE68BC84B726A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-11T22:44:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29956_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29956_00/4924e7fe-2419-46e3-82bb-e703e955a6e4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:33:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29958_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleDetail\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29958_00_00752DA71A604378BBEF0FE75E141DC42FCB84883F/796821E9B3E16471A7C02D3B3D4189187E33877F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:28:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29959_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleDetail\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29959_00_00D10AF77DA75C499F6789410BB0B6AEA6C3EF1325/FF742796C3352AA2D85C681C5DE742CB7E2C897F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:24:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29957_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wine Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29957_00/7252381b-e0b7-4f91-aa93-8cc4381d67e4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T22:20:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09604_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Virginia\", \"trophyTitleDetail\": \"A selection of Trophies for the computer game known as Virginia\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09604_00_00656B24A910ED8A0A103CF92269CB45F8D99B8098/B99A5FED3253E71FF0758870C216BA12D570DEA1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T02:00:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30537_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Oriana (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Oriana (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30537_00_002F4462C0144502AF0A6EE8EADC3FA3F8003C03F1/CCE58E2236793949EF235213C61AC4D737962540.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T01:23:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30536_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Oriana (Story One) - My First Date RPG\", \"trophyTitleDetail\": \"Oriana (Story One) - My First Date RPG Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30536_00_00FFBDBE1FEBB4AE74E4C262BE768020745ECCED1E/A18D38DFF91F71B6CF6BC706803F854AEF664370.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T01:19:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13335_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wreckfest\", \"trophyTitleDetail\": \"The Trophy Set of Wreckfest.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13335_00_00ABD81555C00BD51AA0CB540C3BCCD8A326DA55CC/E72FB5AEDB78CBD4C102223C55581BCCCBD51EED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 81, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 11, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-09T00:18:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30748_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30748_00/ba4a8510-15d7-4643-ac73-36098c657058.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:20:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30747_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Advanced\", \"trophyTitleDetail\": \"Rainbow Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30747_00_002B3076F52C238F950F4ADA078E898A5A4DFF1813/28464B1D5D3DE7D9333ED565F199EB4EF459CF39.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:19:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30746_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow Advanced\", \"trophyTitleDetail\": \"Rainbow Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30746_00_00ECD5465B43835C1A6B239A961915D4DAF62FCF92/8D3F28DB0D6F98E0F7E8B3EA4D5571A1D92B058A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:17:52Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30745_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30745_00/2c4bdc11-a1fd-4b2d-87c8-f6c2b0252ad9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-07T01:16:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29887_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29887_00_0014EED06B5AC829A8EBFE72D270D76F9D6D075C32/451C418AE2A9109928D44751E2844110C3581890.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-06T23:59:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30614_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30614_00/dbd9153d-7b20-44ab-9002-6103fa7497dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-06T16:15:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30610_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30610_00_0089023CA1B154238469DDEF60DDAD67D8FC555EA3/909387FEF65C218FF3E8AF837DEBE066A207F5B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-06T16:13:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30611_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30611_00_0084CB058E22BF974A58C7DB7B49389940D345E0B3/1A3C439C5925BBC032B7E46558C947D8B1E7D28A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T14:27:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30615_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30615_00/62927e22-1af0-4021-8756-95c9405bf616.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T14:26:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29210_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29210_00/0b00f3db-7250-4ac4-909f-1538eea48290.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T14:01:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29209_00/0bf9911f-a266-4d54-b0c0-9e8a6dcb15a8.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T13:55:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29208_00/1196a90f-ba4c-4d87-a1ef-adf2725ddd96.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-05T13:48:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29206_00_0091FD69CABE419298A1A2B6C66D6178F89A07D7DE/8FDB874F142E50C52C304D1F95B5E3CAA4692EF1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T23:12:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29205_00_00815A24189C9EB0F57E610F2F864E750086E1F257/E76A66E58BD5E9B3609A8169D890C378D7E58A23.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T23:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29204_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Wolf\", \"trophyTitleDetail\": \"Black Wolf\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29204_00_00CB7BD7FDCF7E0A9AB8FD238B7A693EF5A051DA9D/46E15590DF5064A226D671A7413BB2C51C2E7C4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T22:57:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30457_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30457_00_00FB3F88A195745EADA4AAE99E1C6E8ED2B390643D/272239EAB176C65C9BBD3E74BB426F64218F89DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-07-03T22:42:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18718_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Disney Classic Games: Aladdin and The Lion King\", \"trophyTitleDetail\": \"Trophy data for Disney Classic Games: Aladdin and The Lion King\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18718_00_000F4200D9277C6BF8FA1A8874F9AECCB82CA33803/397CD9A06BF8BA6A660C44B8CC40929946AF396C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-26T18:37:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30612_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30612_00/817329a8-0d61-45b5-bb28-92ff44258834.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:39:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30609_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30609_00_00F3947C3CC7CD772CA07C44FD11A46202120C41B5/97DD0F48A7280285CDD913509783836DB0E34191.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:36:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30608_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleDetail\": \"The trophy set of The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30608_00_0040CE710598C4F705B87DC8C093AA8E6C78B0C006/7D760315F4767A459C4EEDB422DC2C1AF1FE4CE4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:31:03Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30613_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Hot Dog\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30613_00/cf28fecb-c34b-40a3-9f71-4fe9039728d2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T21:26:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30497_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30497_00/5af3ec8c-5988-4db0-a60c-1140cd4dd4e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T19:33:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30494_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30494_00_001C9E30D909C920355FADA676DA7F16B968975522/9B5D3EA5CD83B1B96AB84E875C79DC227EEC5713.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T19:32:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30495_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30495_00_00339656D363D87CB67990EEAE879B7B74865EECAF/40001BBF00107348AA984224AFAF33037A9893BD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:34:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30496_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries: TURBO\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30496_00/aa3d85b5-9ba0-4aa0-b42c-50fb49850b49.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:32:38Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30324_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30324_00/f31ed965-6363-4d8f-a50b-a4bdaaeeacba.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:29:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30322_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30322_00_0038BB6FCCA622C1D9C0722AD32B61A1C35B13B9FC/F7D5AF4F9EF94550E8A490DCF52D7FD038FB7C0A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:25:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30323_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleDetail\": \"The trophy set of The Jumping Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30323_00_0081ACB1620FCA24AEF943923AF004E89314CE61DC/E61FD701338270ADA0976AC35917BF4C24E46905.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:22:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30325_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30325_00/6770b42f-f48f-472e-9164-956c4c3e34f1.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-25T18:19:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30188_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30188_00/1622d4de-9ead-4f25-a2c1-eacc6fff93dc.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:58:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30187_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleDetail\": \"The trophy set of The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30187_00_00FECAA94C64430ACB8ACF6FB0A21140C986B3E383/634AA63C15BC2BC9AD9A0D89F1D99D4D8621B6CD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:55:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30186_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleDetail\": \"The trophy set of The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30186_00_00D93765C42C74745CAF88B4AEC5DDCF85884F7D07/BB8825F7646E58BA3538BA46D5D99D2232E5F98B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:43:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30189_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Pizza\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30189_00/2fea527c-4e6c-4db8-bc4d-ff030d964198.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:40:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30464_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30464_00/b371ed8c-1cd0-4896-a4ed-f7bc7f7ff59e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:24:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30463_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleDetail\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30463_00_00C4F7CB16132D7872BFDBF376B50AA11B47F46517/6C2126FB9C9E3360FAD9B05AF753AA0C3222F120.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:21:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30462_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleDetail\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30462_00_00D227BB0A9A1FFE882F354BEE5F7125E8444E95AF/718856EE9128C5C6CFC03CBDF7FC616E95180391.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:11:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30465_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Spidy D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30465_00/1b2e5da2-81fe-49d7-a6de-d197d253d8f9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:07:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30455_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30455_00_0069A2D5FD2F7C3B31C8F2A6D2D9F15C1999DBC061/EEE334745FADB52C9743615DA48C31A7F38F552A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T22:04:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30192_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleDetail\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30192_00_00E916182FC6E428BA410A4B7482D8016E4747C5DE/E493AD71BB8BE14A88A786B383B5FFBA89CC8EA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T21:55:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30180_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30180_00/812e0e17-3666-4f06-a44e-755bb1769e54.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T21:38:56Z\"}], \"nextOffset\": 850, \"previousOffset\": 799, \"totalItemCount\": 1446}" } } }, @@ -1176,34 +1173,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:58 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "29082" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "29459" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:48 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28646_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleDetail\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28646_00_00627AEC190F4D6A6A56A78ED8A457F6226A9314C1/792096C75B51D980F6D3AE2F3267470382ED5771.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:32:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28647_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleDetail\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28647_00_0080A1297EE38DD883A2599B5B9B3D57397BC25970/DAC7B684D14E944A3E6AE3E881517B5023692943.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:29:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25165_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"One-Eyed Lee and the Dinner Party\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25165_00/862f8aa2-9f8a-4260-8dd8-bf7d4637eb3d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:25:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27574_00/b82c101a-20b3-4a76-8cd5-c8f9336c8d44.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T11:03:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27573_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleDetail\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27573_00_006E7669098A278A15CFE5DDA2F1C4DB4AE2D1892C/8989868E86A491E9852D48BF00BD76F012BFBF89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T10:40:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27577_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27577_00/f29f6318-0dc4-4264-b20c-4697e4a43bda.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-26T19:29:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27575_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleDetail\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27575_00_0037B60744E3A859832F72ECFB42CFBB6367F10438/964048E29210F72983F9D3E65BAC649A1294D949.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-26T11:11:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"One-Eyed Lee and the Dinner Party\", \"trophyTitleDetail\": \"One-Eyed Lee and the Dinner Party\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25163_00_00A8AEFA514A3CC616549F9B989BE1818A76F08A5D/0F6B4F904B7C74ABBB0F14F7126063133976B3F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-25T23:32:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21008_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Horizon Forbidden West\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21008_00/2b1ab462-7ee0-4415-81d8-bf2632f03850.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 67, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 70, \"earnedTrophies\": {\"bronze\": 50, \"silver\": 7, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-19T21:36:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25562_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25562_00/eea9a11c-aaed-445e-aec5-32f071d7de4a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T22:08:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25561_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleDetail\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25561_00_00FCEB5AF74212CBDE1214CDB8DF39F932EC2FFEE3/A02E72D61D22B98AF012241583E4913E6FA6080A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T22:04:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25564_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25564_00/df6a2d30-c1e6-4a56-94e5-ef8169cb7994.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T21:06:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25563_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleDetail\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25563_00_007B2C132BFBD69FDF198C9563099C7E7C8787B80C/5FE1827663EC8B1A193AA7B82BB0517105FB8231.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T21:02:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28669_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28669_00/a801373f-41ac-41a9-b177-d12700514221.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T18:27:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28671_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleDetail\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28671_00_00CC5186A723B20C043082B27D9630ACC93AE80B8E/9D3C4278AE49468D103AEDD600E8305EE26DBB92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T18:22:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28668_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28668_00/06883f28-0e78-43aa-b476-f46613998b6b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T17:54:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28670_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleDetail\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28670_00_006A27C615EBF0F3BD0DF3FF57A23CDE5E35B0AD90/259059247C5808F06576946427A3EAFB026D1FDF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T17:51:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26642_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26642_00/c8024973-034c-44ae-aa0b-b1dab8c412f2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-08T11:31:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26643_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleDetail\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26643_00_004198DECD6FD44410D7E95482FC9B4BA7B93138AD/55EA3E39528D6A693048FAE3FAEEB1A55F371BE7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-08T11:29:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23856_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Destroyer\", \"trophyTitleDetail\": \"Trophy set for Alien Destroyer\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23856_00_00BD7FEF3386B5DE165FAE7A358DF0A9C015103C9A/4CA173B24F72B99B9577ACC935EA3F3C7ADF2718.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-08T09:23:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28413_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28413_00/fd217bbb-1d97-4ca1-ac68-7e13377e4c5c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T12:46:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28412_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleDetail\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28412_00_00E2CC65881E22324B6A367417C05FA152449292B5/69B816A8C1B0D7886FE7FCEBAE8253EB717B75A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T12:36:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28416_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28416_00/03ee5e50-519a-4338-998e-ca4d206832a8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T12:29:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28414_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleDetail\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28414_00_00305A2AAAE290BDEFDF1FA791C42B0249C872FD55/768F157A9E32E1C18B4C85DDB3482DFE1887E7D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T11:37:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27599_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27599_00/63e05cfc-b8a0-438c-b140-6124c2489067.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T15:03:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27598_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleDetail\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27598_00_00742A665808D511A0320682350E2046BD34B8B8ED/6963ABDDEABCACA0520E9C4C0CE05B2E32B1CDA2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T14:50:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27602_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27602_00/608297e6-7a6f-4a37-aa06-f757c88fa3b7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T12:12:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27600_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleDetail\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27600_00_0058AC764D5C2E1DCC9D3BBC67D23DF32D62B64290/90E5B5F7FD13CB2A3505972F75658C24EB5BB9B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T11:52:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28788_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Disco Cannon Airlines\", \"trophyTitleDetail\": \"Trophy set for Disco Cannon Airlines\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28788_00_00520DCB2F176F53F16B7E79701697C030D733C4A4/60B2564ADDEE5D26B30E43A36213932D1826672A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-04T22:06:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28789_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Disco Cannon Airlines\", \"trophyTitleDetail\": \"Trophy set for Disco Cannon Airlines\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28789_00_00AD8489BE35B881A92D0F9A67A25D109C6BC22CC5/C81DCCD895904FB699B74B6763F1B7F87301C17F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-04T21:58:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25369_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25369_00/2a9d3867-6c55-4596-8b8e-8d6517b8bab9.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-28T10:55:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23059_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleDetail\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23059_00_0020C7CB8281F8E89A84C6FFC2E3AB11DD42EBD10E/EF87B3BC1E19EF709D8495D65A8995129C2588D6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-27T11:56:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25368_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25368_00/a3fd8384-3b32-4b37-a869-2fb4372623b6.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T15:08:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23058_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleDetail\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23058_00_00EA9EA95002A5D9C95318F8B113C3C07277E40E27/5D77B865C21FA356F5B8348AC9C3E411DE79D964.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T13:59:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28344_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Pinball - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28344_00_0058031A8B6B3AC4EBFBAD53DC6B23C6EB2CB97B78/6860D2F5969F4466693597DB07CCB9D3F45F69F1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:47:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28659_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28659_00_00F01FB73BD118EF3A6C06A049D855B782F6413B98/BE1D1427A0AA864C132243F3BD9F6EC03A93E60B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:44:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28658_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28658_00_0078D82D8A06C8B4D269227EF7832AA965DFB248E7/46BDDFB798B7FF2ED4D485E9C019DC6384C9210E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:40:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28146_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28146_00/ee22ea29-0d0a-4009-92fa-111e7a96713c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:13:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28148_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleDetail\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28148_00_00422E2D12C84F58AF5E810D5174BF7FD956279046/1E4FC4E868866AEAA1038936B847FBF14EE52C89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:09:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28147_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28147_00/3c0d2d85-db6f-47f2-9e1d-ce3e7a37b6b6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-25T23:57:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28149_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleDetail\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28149_00_001CCA32C0411E837C2C7212BFAABE76E137A5D562/9CBD43919835D433C54CA7A05AC1C5AA12162382.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-25T23:54:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21090_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tom Clancy\\u2019s Rainbow Six\\u00ae Extraction\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21090_00/8c75e9eb-3113-400d-bf04-eebcca4f3314.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-23T20:47:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28340_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 8C, Level 9C, and Level 10C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 8C, Level 9C, and Level 10C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28340_00_00AF87D222D2080714097148D510FCA1D8CDAFA5E1/EB30987EBC7BC2B5D7CDC840E0D454542527F7DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-06T12:09:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28343_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Pinball - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28343_00_00CED45F2C91A95FA29B3FD2A388E2FAE00FAF2D1A/21103B8B29A17F4274DA7BCF4FD1E81DC98F589F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-06T11:48:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28338_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28338_00_00F4B873DF6159B969FB73859E0457364D20DD5C66/AC34D891B1FD7F0C8260FAB9D5B3AB653102113F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T19:48:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28337_00_00AD33FC013848AB9F0ACC24D8A45BE3F43B543099/F20DFE9BF1FEA7907D04B69A70DC59363699AF3F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T19:01:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28215_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3C and Level 4C)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3C and Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28215_00_0040F3F6DC63C21C4944EB1E8D30E9CB95EBB214AE/610A3FB062A06B3EE3114548623388F843295394.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T18:33:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28216_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3C and Level 4C)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3C and Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28216_00_00AFE12043AE56A2B46885FB4E6B28529BC51BDD2B/132EF654E0B4BF2AA6B222E9A4036169C6E6F544.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T17:03:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25910_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25910_00/469c8bf1-194f-463c-9960-a23584a37066.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T10:54:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24276_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleDetail\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24276_00_009B8953EAD35EAB3408C2F80F665CC56EB4BFB135/2305DA99BF9BD75142D059356EC8919DB613B16B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T10:25:02Z\"}], \"nextOffset\": 900, \"previousOffset\": 849, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30193_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleDetail\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30193_00_0046B9BAFDA01CB9934B4C516F43B959FA52D8FB1C/B1F6EC27287DFACA87E338E21EE49E6EB3BA90E3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T21:33:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30456_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cyber Engine\", \"trophyTitleDetail\": \"Trophy set for Cyber Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30456_00_001C1A91CA6D1D68776D946CF2433FEA3A4B2753A4/53BDC04679208D97D934CDC568F624044316A8FF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-24T01:07:23Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23631_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STAR WARS Jedi: Fallen Order\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23631_00/ee967b85-6f76-4294-84af-ac7112dd4e7e.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-22T21:28:30Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30181_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Weben Blocks\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30181_00/7ad782a7-5683-4791-8603-2ce39877b091.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-21T00:44:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21725_00\", \"trophySetVersion\": \"01.07\", \"trophyTitleName\": \"Ghostrunner\", \"trophyTitleDetail\": \"Ghostrunner\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21725_00_001D0238D7F07216CB42A43E741830F15A09EA395D/397F3662B9996B5A324C2C79ED4EA6400A4E733C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 21, \"silver\": 19, \"gold\": 4, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-20T00:26:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21583_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel's Guardians of the Galaxy\", \"trophyTitleDetail\": \"The Trophy list for Marvel's Guardians of the Galaxy.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21583_00_000D308C0EDE9CE1355B3D5092CA8BF6BA269D35E6/95DA801AB3062B74A27832075B6FA7C95621D6E6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 54, \"silver\": 3, \"gold\": 1, \"platinum\": 1}, \"progress\": 43, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-06-09T10:40:13Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29706_00/f485223f-bea4-4e4a-be0b-c330f130a1e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:23:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29726_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleDetail\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29726_00_00E376E92B72141C064788D98ED17D0644BA926F75/4A3DF09AEC318E15A98806508E881DAC7859E0D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:12:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29707_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleDetail\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29707_00_00F383E596E58D716AA6D568C6D5A6DEC9BCFDD54D/D51F9927E57F78767467B0EF2F935F94E2124DBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:08:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29705_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Bat D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29705_00/8ecccaed-9fe6-4d11-9d73-ccee502cee89.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-22T21:04:45Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30025_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30025_00/801cd0ae-3274-4f03-b0bc-37793875b910.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T20:40:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30023_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleDetail\": \"The trophy set of The Jumping Taco\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30023_00_00407F65A18CA83AE46AD1BC6798E57E11939ACCB1/43AACE728839FB600B9EDCB1CA1443078C9E3D96.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T12:47:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR30024_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleDetail\": \"The trophy set of The Jumping Taco\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR30024_00_0081F85C15D2358FB75515E67A7ED1893CF6B9963F/069F0606DE890FC5A821BC42DD97D6E4F51A5E19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T12:44:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR30026_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Taco\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR30026_00/219b6060-c1b1-46bb-b98b-620850d489eb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-20T12:39:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24924_00/08bec9c4-5e76-4d03-95ca-231671575e38.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T23:01:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24928_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleDetail\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24928_00_00B005AB5C0D3A299B3A17A32EBE641A540531B4BD/FB29B043106462ADE636C79BDC537552149F54F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T22:25:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23271_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23271_00/dcb0243a-5b80-45d8-b993-eadcd8934fcd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T21:53:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21940_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleDetail\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21940_00_0023149EE54A1E97DF93FD32C217B080F79D5CD7FD/DCA76D7C133613F597398FD0EDF9EB3CD9127517.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T13:20:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21941_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleDetail\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21941_00_00E35BAC7E94C5A20876B90014E9D1F416BE66B5BE/315323E75D54AE6547ABC504B2266CA9CB1C9B1B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T12:26:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23272_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunderflash\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23272_00/4f82f12d-c37a-44c5-8f84-e9f66c03b92d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-19T11:29:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26337_00/e6267107-595a-4b1d-8c13-0b0a114c4495.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:57:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26334_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleDetail\": \"Divination\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26334_00_00D7350FA35820F633AEB029D52C4400A1CA325CDC/BCBB7F32393F9B090922052A6D22760575F417C6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:54:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26333_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleDetail\": \"Divination\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26333_00_00FED6C661D9101548EC4E25910361EB7F70600BE7/741AE9FA2C50BA79749794A3BA52E1A1B5FB3A8F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:48:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26336_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Divination\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26336_00/2db8572b-6b3d-49cb-83cd-48b00d4931cc.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:45:12Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21870_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Call of Duty\\u00ae Vanguard\\u00ae\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21870_00/4f89fc32-db3d-4dab-95b2-0c40fd7bd643.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 12, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-18T04:27:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29616_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo 3\", \"trophyTitleDetail\": \"The great trophy collection of Mayo the third.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29616_00_002B09BE4F834CA3265520BA749030FF0F6231EA11/8E3DB3B24504EC112FAF283968FD7F6F0E181C63.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-17T12:20:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29615_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo 3\", \"trophyTitleDetail\": \"The great trophy collection of Mayo the third.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29615_00_0029CCEC9AB9F2BF0BEB4F1B0812B6CA117F4422E0/2B5BC403EBE74E21DF32F32E634A7231EF340D73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-17T07:47:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29884_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29884_00_00D8AAD85AC03A7468F19F98EBC0DC676449D7A2C3/E23381FCB4D6191FD02498BD7C412B28D23A547C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-16T22:35:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29885_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Steam Engine\", \"trophyTitleDetail\": \"Trophy set for Steam Engine\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29885_00_00F2068827B265968ADD3A53F54CBE0B6669CB7AAC/0B0B8C5717515FB79D98CDD514ED9886798F4D68.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-16T22:19:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29954_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29954_00/39e9db6f-4e3c-4460-89fe-a7ffea645b9c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T22:19:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29955_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29955_00_004DB684983F18892EC57D556E13A7ED739B528134/EA51AB0BA1F08EA78EACB0B23964DE4643875FE9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T22:12:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29952_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleDetail\": \"The trophy set of The Jumping Burger\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29952_00_00FF05234706B7EABB19A5DC4CA8F9322AF654D201/2A02B1A8813DFA7F95284FB3426F1F978E01AF81.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T22:04:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29953_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Jumping Burger\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29953_00/41101518-8cbe-433e-94e8-07bcad8abc10.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T21:51:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29587_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of ZJ the Ball (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of ZJ the Ball (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29587_00_0036C126155E958134242226EC128E989F0BD100FB/D97E40D1A07C5C9A36C65C049C00C4582980A535.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T04:07:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29586_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Welcome to the World of ZJ the Ball (Visual Novel)\", \"trophyTitleDetail\": \"Welcome to the World of ZJ the Ball (Visual Novel) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29586_00_0011E02CE427EF2C34A3DD716FDB48587610B01F94/C45818FFC11D92922D07D25D03A35387799E3467.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-15T04:06:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26992_00/0f880ba3-1821-4561-8c38-4d558b35d904.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-14T20:18:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26990_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26990_00_0042FC850CB4DDA0E3749489443941C7DDA032250B/0F0470C46A1A73C3338F5CFDBF72DE7E705D168A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-14T20:09:50Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25370_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25370_00/be6a6335-4081-4790-9055-b04f959da7da.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T08:47:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23060_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleDetail\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23060_00_00326CC28CA6563FBA65B71A7DBC22F8029D98BFD5/685BE961673EE584219CEC02A1377643CA6ADD80.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T07:26:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23717_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23717_00/a4c7fcfa-3ddc-4c96-9d0e-7d514fd5e271.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T02:52:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleDetail\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21786_00_00709BFFA7F76625780A1EC48161BADC2F3CF9BA63/1A7B2CD38BDE6A35A2506ED40A0FDE591B12A805.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-12T02:38:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleDetail\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21785_00_008EFF9BFB7C246AD3DE57782DF4360C442A0EA598/70F34C816F9D84D0C1EF9FC3A9049E3A4930A7A6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-11T06:53:33Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23716_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rage Among The Stars\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23716_00/a503e999-8d8a-4bd9-9f32-3136a25adb7f.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-11T06:34:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29533_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29533_00/b970397d-fc4e-4215-b07c-f4322e040c74.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T05:31:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29534_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleDetail\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29534_00_00118447C885BBD68B2FC0D3EF1CCC58E5468E435E/DC985BA6CB77F7E6B00938CAFC375680E174387E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T05:20:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29535_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleDetail\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29535_00_0075CA09F79DAD5BD90E8151FE58055CDBC64C2909/754E6FDF5AE7821C9E89CD06D4B9EB49D2B1D329.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T05:00:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29532_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Slovak Run\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29532_00/36a3ad11-b18c-4659-8c9d-2d99a8bbd791.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-09T04:46:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29732_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top 2 - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top 2 - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29732_00_0097AA58DB87CCC5BC83442CA4FC573AC693960D6B/11817B337ADD73650DF53564124DFF3BE1838E55.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-08T05:44:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29731_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top 2 - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top 2 - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29731_00_00E0BA66CCC0A98C55BA27A4293D8180129193DD46/76138AF1DE8FEA104771BFB251F6E063A845FD93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-08T05:36:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28997_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ultra Mission (PS5, SIEA)\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28997_00/73e8cca0-3b4e-4d00-b563-b81248434621.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 36, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 4, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-03T02:58:20Z\"}], \"nextOffset\": 900, \"previousOffset\": 849, \"totalItemCount\": 1446}" } } }, @@ -1239,34 +1236,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:59 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "29292" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "30421" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:48 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Round Invaders Trophy set\", \"trophyTitleDetail\": \"Round Invaders Trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28091_00_00413994CA0ACD8FB7664C44A44950520C5A8557AB/58E28AE3C45F69A50CB05925639A5071D4CA3BED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:41:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Round Invaders Trophy set\", \"trophyTitleDetail\": \"Round Invaders Trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28089_00_00BFE721AFB9169455300B665B6D494385A326E302/6B7576F356111576B6134C679CB2E4A4F5E2191F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:38:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27467_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27467_00/0f861444-19b7-49dd-9412-6a36211c3135.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:27:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27470_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleDetail\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27470_00_002A21E67FEA4B9B9EFEF46CBD3ED6822CEF54402C/93D3DE3D3D132C4C34A260149258749C83B14453.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:24:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27468_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27468_00/73329308-69e2-4af5-a509-67b59114e10d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:13:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27469_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleDetail\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27469_00_003FA9B16D69C7228CFD55CFB99C15FCC59C2C25EE/400BD325272CF901AA7590EE653C97B865EEA028.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:04:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27895_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 1C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 1C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27895_00_0022003976A06DCF22F14146D89D89A31D66F2A732/5D284EE3BEB4DBA4856F9AE149F3E17890E698C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T20:53:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27909_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 5C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 5C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27909_00_0068A051F976460169FC0EF51980CA38A491CBDF38/889000D0876A4D92F7F3668561576B263398FD49.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T20:45:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27910_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 5C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 5C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27910_00_00D1FC7FCE8CC57FA6012F092317B53CF95B762BF1/7A2A6510196B9C54BFB3890EC743185B0BCA29CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T20:02:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26498_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Finger Fitness\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26498_00/be1debb9-1163-4d41-8cc1-fe74cb0d1089.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-27T22:03:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28130_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28130_00/56ca6102-c257-4c5d-958b-775db8821321.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:37:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28133_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleDetail\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28133_00_009EC3BF7945CDDF867272B29D7FE1C2D79CADB98C/FF9DA433C7D40FD017AA2C1FFEBB479CED624F25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:34:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28131_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28131_00/454e5d62-c003-4a63-bf2c-0c89980dca36.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:24:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleDetail\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28132_00_007F0B990B517C1330597A0D6BE8A083EF58A84CC1/4ACDDB38E4D12C0D0A6D7E69DE5A87AAF0FAC6C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:21:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27907_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 4C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27907_00_00F539FFE3A524CC246A46379E4D9238365FF5E81E/8177C8181A8C61E505B2EA01E1F8808574A0A1E9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T16:41:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26443_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26443_00/033e9c38-e11c-4b0f-a929-78bce9dfd746.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-21T20:00:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26442_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleDetail\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26442_00_007D122E85234CC29DFDA9BAF4E6647E9103D5D198/5AE24B3CD43DA491376A7B4BE777DC8B9C6159AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-21T10:45:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26445_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26445_00/dba13a89-9db6-4f58-b741-b82c27cf6740.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-16T12:08:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26444_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleDetail\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26444_00_00D681F204F9E2BA9475A11B79621D641C2C1E40EC/3F97F46AB0B89BAD87511DDD089C5894AD0925FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-14T02:44:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26447_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26447_00/519ccdb6-0c81-4525-bd89-db18d172fde9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-13T22:47:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26446_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleDetail\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26446_00_002A2813B32AD8E7D6835FD688CC968E39A498E80F/F2A111725CD10BD1BDC20F0E089B4049ECEE7F15.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-12T19:09:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27608_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27608_00_001C296AEB12126D386B53D5864120B0CFDACA2373/0F5E4432649A376B8E9803826906828346E900DD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T04:29:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27950_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 1C and Level 2C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 1C and Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27950_00_00CADC8A0C0FC5F531E6363F1E080157AF5B19DE47/D16B082D1D6897AB935936D442CD210170881901.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T03:56:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 11, Level 12, and Level 13)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 11, Level 12, and Level 13) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26993_00_0014C60B285AAD550C774D90F19C60E3F1745536EF/66CCE691082A6297B1E1DD6CE350BF610CFD4E3A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T03:47:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27908_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 4C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27908_00_00FBB9C0367B6851FC6040422BD0B147D4187790CE/7842823D1BA368CF8F9EE3010E4982B795000E77.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T03:34:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27894_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 1C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 1C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27894_00_00F42DE457CFC0F331EC2A2047CA9A1A2290011545/1031003E1A1BCED4603314D843E8839038C159BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T01:11:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27898_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 3C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 3C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27898_00_00C08FB6B77DB42C9206CCBA097EB991EBC6487744/98935EA742019608D88C56BBF122C2097D79EC2C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T00:47:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 2C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27896_00_00C1116D7F46346F98120B223F9A566548D11C2357/7C07BB34CF995074C58260B12142D5AA82C80F7D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T00:36:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 22 Trophies\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25179_00/9f7d91bf-019d-4734-bbda-319bb01ca4e0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 17, \"silver\": 17, \"gold\": 3, \"platinum\": 1}, \"progress\": 10, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-10T11:37:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23352_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Grand Theft Auto: Vice City \\u2013 The Definitive Edition\", \"trophyTitleDetail\": \"Grand Theft Auto: Vice City \\u2013 The Definitive Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23352_00_00950373AC60F652D0BD6837CB0685A8487CBDF2C5/A97169846BA6B93A752464F23543E60FEABABC2F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 19, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-08T16:09:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27899_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 3C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 3C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27899_00_00180B7E542D97BEC1942564CFC1B60F0C970C2764/0EB6743BA25E8C97C6258CF98B868E3C5EE7EDF7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-02T18:28:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27949_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 1C and Level 2C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 1C and Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27949_00_00AC9BF71783A237DB73825437548839AF365A2A83/51241824CAF0287A57CEF491710E3B14039AC4BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-31T22:07:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27897_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 2C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27897_00_00A325C6296CA289BDA470397BDE32C995D0504D3F/F4643E12C325032AA76410F911A5860E30167ABC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-31T21:50:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27747_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Run\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27747_00/17594979-0947-4059-8a35-48295df06279.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-31T21:41:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15597_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"LEGO\\u00ae DC Super-Villains\", \"trophyTitleDetail\": \"LEGO\\u00ae DC Super-Villains\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15597_00_00FB3FA644712BACF0B4A82E2250FECE6B651948E0/EBF37C1EB0D637C98173684C1A7F324EE1468841.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 62, \"silver\": 10, \"gold\": 3, \"platinum\": 1}, \"progress\": 5, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-14T18:17:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25245_00/1955e1f5-aa40-4fc3-af53-8ffa71aa700d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-12T00:18:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25244_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti 2\", \"trophyTitleDetail\": \"Freddy Spaghetti 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25244_00_007F2415881767A801A4D8FD84692AD26353C6505E/3B3D5D779FB6BAD38970687939ED492872744079.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-11T15:11:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24830_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"eFootball\\u2122 2024\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24830_00/d8b85972-4a09-4cb5-b24a-8bdc2f88ff71.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T17:48:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Swim Club\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25896_00/59516b9e-55d7-47e6-a392-d343248d61dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T14:53:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25893_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Swim Club\", \"trophyTitleDetail\": \"Sakura Swim Club\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25893_00_004EE2BDDBCCFD89AF37A520D3D4A62E892A6A02EF/403ECA75FFE929A0BD16D57C595530AA0A5C3809.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T14:47:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27557_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27557_00_00CFFF59C9AB3F6AEA480D1EEB38120C0D03DCB529/7395C1D8FB4D153AD382B359658D062812580B54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T13:43:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27561_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27561_00/9b8c4c2d-40a3-4c91-b28f-2b15f793d42a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T13:09:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27269_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27269_00/d4ee3c7f-1534-47d8-a445-957ff58be7c2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T11:59:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20684_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Marvel's Spider-Man: Miles Morales\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20684_00/baa4acc4-a8e5-42f6-ae09-3ae51b6a38fb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-09T18:50:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27270_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleDetail\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27270_00_0092B8DD0656164A6F047903CBCB06F1FB4D933D21/AA337B02BE0C46E36085DF8A00D6DFC13D93B77E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-08T17:55:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Racing (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Racing (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27706_00_0053E93A5D04B15D687211BAACA591E7E329A02447/88E13EEC587D0E588CD929D804A39A0057FEB8D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-08T16:54:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27609_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27609_00_0031D6E608005332FBD63F6995FE9B795F70633B97/194D2312C5CFE1A5A54AFBFF072A8B13A8F1CBA9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-08T16:48:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19904_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Resident Evil Village\", \"trophyTitleDetail\": \"Resident Evil Village\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19904_00_00500ADADD2AA388911E637EE6A1B66B6F259FA3CA/608E2951C65C8140F5C709D6471D8B8820FE6C29.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 45, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 16, \"earnedTrophies\": {\"bronze\": 14, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-01T07:51:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26497_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Finger Fitness\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26497_00/c0e6ed59-f832-4820-8869-99be1df56cf9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T17:28:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25909_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25909_00/6f748b4a-61be-482d-927e-8a6179985eda.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T17:05:06Z\"}], \"nextOffset\": 950, \"previousOffset\": 899, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29743_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rock Paper Scissors - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Rock Paper Scissors - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29743_00_00A3FCD64653E71344F6C4995018D7F9440F1A4297/2021ED149A1CC7A0DA256E700F5CFF85D114D7E2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T22:57:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29744_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rock Paper Scissors - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Rock Paper Scissors - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29744_00_00E99D9FED4AD5D43C308D08AB3EF58DAB4874EF24/BE4954FADBEA2D9ADDEE3A098040523C930123A3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T22:55:11Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29406_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29406_00/95635dd1-a658-4739-bce1-80bf283931dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T22:45:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29409_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleDetail\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29409_00_0069617AAB1BC208A62124C750041483FFDB765CA1/B98159B7E0896EAF0DB199259FE59A475CA4C7DE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-05-02T20:50:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR29407_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR29407_00/6ebb92b2-3232-432c-96ab-bd8b537ea90c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-29T21:56:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29408_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Pigeon P\", \"trophyTitleDetail\": \"The Pigeon P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29408_00_009A5FF519C57F8A5301A6A178B842F4F358C3F710/13F56A66A3566FBDF63C2377FF6805DA38CED867.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-29T21:53:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12128_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"Ark: Survival Evolved\", \"trophyTitleDetail\": \"Ark: Survival Evolved Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12128_00_0012880DBC94ADC820F12FC201F1A5879223A25EE0/3BFB3D7DB4D527B26388D13B567B950C95E4A0D0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 13, \"silver\": 8, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 8, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-28T04:17:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24925_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24925_00/66bcc0bd-0ca9-45b3-b88e-2d06be0dea18.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-25T00:14:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24929_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX-2\", \"trophyTitleDetail\": \"Super Destronaut DX-2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24929_00_00569C96898EE8FBCFEE6AA72F458F8572440E9ED4/2339BDA27058E1761E77D57E1CE246621000D2B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-24T23:45:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22197_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Snake Boat: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the trophy set for Snake Boat: Otterrific Arcade.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22197_00_00334B7421DA67A6433BE202AADD7F66EB2934DEEE/73912E21E88390B6FE405D6975A2E2294AC19635.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T05:32:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27760_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27760_00/040aeb88-6240-439c-b4f3-03c095760ec0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:48:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27759_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27759_00/2d557bd4-3b9f-4d80-9dea-28d0bde74f15.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:39:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27758_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleDetail\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27758_00_001AF30448720C057DBD3D5D0A0F8E41F6957FDB12/319493778056D85264D0BDAAE4BAD0E5E133B104.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:31:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27757_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Santa's workshop\", \"trophyTitleDetail\": \"Santa's workshop\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27757_00_0090190C89C7B87C36773983023B29379279ED438D/98D0E88BD8FB8FE3A176406641818E60328BA824.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-22T04:23:51Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26923_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26923_00/4f8277ab-5899-4fa6-8763-ff43ea3360db.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:50:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26924_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleDetail\": \"The pig D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26924_00_007108DF582EE05FC5E50B1075CDDF5420ED051C81/36DF3BE6BCC34EB884001C6E921B4CD904C3EBEB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:46:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26041_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alienzix\", \"trophyTitleDetail\": \"Alienzix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26041_00_00F3F9E9E907DD1F8027546C3379F0BAA238A0A512/24A9ADBB6D604896A2341B2F195BE2E4EA3B68AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:43:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26040_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alienzix\", \"trophyTitleDetail\": \"Alienzix\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26040_00_00C8C22A5C207F7263C6E913187E8FA8ED8E5596AD/066890897CB2809F29E2AF9E7B718ED382D26174.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-20T22:32:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28126_00/775c8c79-69ea-4dbf-b680-1e43cbafdf22.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T21:01:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28124_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleDetail\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28124_00_00E51FC510B07D6D16DFAAC54D6620795B27D62006/53B6D337D6239F26D0942EADCF37250EA48BCAAE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T20:59:08Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28125_00/c03258d3-9e73-4ded-962a-8adb3cf1c192.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T17:10:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28123_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rainbow\", \"trophyTitleDetail\": \"Rainbow\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28123_00_004BAE06E1CE1BCD6E58DD282878707A7560C5558C/1C76F93CE9D91A50D66A371FD15BC434B7F77DCC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-18T17:08:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29591_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29591_00_00009984A31B8803FD4B4D95CAC206BEC1FD0420B2/27C2FEAACDFA1584756A1FE9600B56314337A4FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T18:57:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29590_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space 2 (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29590_00_00B810515F9A75FA80507C5E6A634DBE5150238EDF/08501C9F451382DC160278745F8E6B686B1B6D89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T18:45:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29588_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny\", \"trophyTitleDetail\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29588_00_00923E7FF3EA098390A193180876EFEBAB4F81826F/38918D78BDBBB7EEE7010021D9812A735DD6C8BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T06:32:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29589_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny\", \"trophyTitleDetail\": \"Lent's Adventure (Story One) - Lent: The Easter Bunny Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29589_00_0020F71A291E87BE6B70CFE6E8A981AF185EFA1459/2E93994780C2A85E30F01BBD6D57EBDC669C13AA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-17T06:28:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28873_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ice Hockey - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Ice Hockey - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28873_00_001D75BDDC3436A98C3F001177C565E44452CC2437/9D33F1866B34B4AED7D2528845630AC828E7D92D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T20:02:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28872_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ice Hockey - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Ice Hockey - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28872_00_005769DAA7EFE95D988CC8AECE2FD748DDA5E86539/C0235EE7CDAA02191B049AE3F6A55FC3AC2233D5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T20:00:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27741_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27741_00/545fa227-7bec-4c52-9d00-339df6ee276f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T19:51:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27740_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27740_00/96685fe4-7464-4bb4-be4e-7b3b9eae8265.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T19:33:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27738_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleDetail\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27738_00_009A6B4B03E75F29730125619F147BEFB446B0C355/5A9808AEE504E191D77D138E82FE7BA2384FC5FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-10T01:12:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27739_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Wild West Crops\", \"trophyTitleDetail\": \"Wild West Crops\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27739_00_009AE96C5053D07D6C3485B494036918DA434EB48F/0071B3B34706CA789E1898A8F51F1ADC495BB2B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-09T22:32:21Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27784_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27784_00/fea7732b-fb5f-446d-a2c7-cd39afa08f17.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-08T23:17:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27786_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27786_00/d6b4ebf8-652a-41f7-a685-252e6291fc22.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-08T19:07:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleDetail\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27783_00_0052A8E99A5191CECD7A1DD3EAE2085C66ABDE8239/8BA74B97A333AB41C3F24F55E0DE44AAD1061F89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T21:36:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27785_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mages and Treasures\", \"trophyTitleDetail\": \"Mages and Treasures\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27785_00_00C9287D22E6FE085F9757CDB67DFAA570E001931F/9E79CF6204CE2E935116837819D64885D563E534.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T11:44:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26064_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26064_00_00BCDACD9F75A06F0F589449E3410BE6158D63847F/B438561ADC4A45EA73FC419A9C40AC6532872A4B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:56:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26066_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26066_00_00F6CEB72E41E2965BD09190EE0F1D6CB7D302D743/8B8211A8F81D14858A076D6E2B3621CB50072866.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:51:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26065_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26065_00_001CBF98AE15CF0BDFE0A23477CFB473C9C7060B3B/DE6B1295B06A0BA864E2AA2F9756091E1B02E5FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:40:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26063_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Four) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26063_00_00D32AA2BF2C1246AD2E496CE69CFAC86E2148945A/4D0DA4F73012EE9174C58D816639E49F90C1801B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T10:35:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29385_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Soccer - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Soccer - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29385_00_0060D7DC3E51F9FA8F4EDC81269B56D6D2BD2C134C/26C0515C79C97354B38BE40BC25124E99B71836C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T09:29:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR29386_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Soccer - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Soccer - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR29386_00_00EDD6B70AFDE46E3FF8AF46C3553B2FF86403694A/56D98BD956290579D1FA50225BE9BEDAB3C49141.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-04-05T09:26:40Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24126_00/127b1f4d-9334-4a9f-98a8-a55fe72dc233.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-28T10:30:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22095_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleDetail\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22095_00_00ADFB353781757EA9143D0DA607C98251BFB01028/A80CDB5F663A2861E58EC21E4F63A0FAD688688B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-28T10:25:00Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24127_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24127_00/9f94c440-cc06-49ac-aa58-86d0e0922cf9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T23:11:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22096_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cross the Moon\", \"trophyTitleDetail\": \"Cross the Moon\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22096_00_009092EF6ABF22113812F2B2B873B83C725D111F7B/65AADD2A5686DA80B90534CFF84F73A4215B8453.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T23:03:32Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28644_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28644_00/4b7df575-742c-46d7-83fe-78a5e108c7ad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:43:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28645_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28645_00/ba7ea1b7-6e3c-42de-9c19-41ac072e6fab.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:36:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28646_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleDetail\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28646_00_00627AEC190F4D6A6A56A78ED8A457F6226A9314C1/792096C75B51D980F6D3AE2F3267470382ED5771.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:32:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28647_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Cow G\", \"trophyTitleDetail\": \"The Cow G\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28647_00_0080A1297EE38DD883A2599B5B9B3D57397BC25970/DAC7B684D14E944A3E6AE3E881517B5023692943.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:29:18Z\"}], \"nextOffset\": 950, \"previousOffset\": 899, \"totalItemCount\": 1446}" } } }, @@ -1302,34 +1299,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:59 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "30213" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "30201" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:49 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24275_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleDetail\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24275_00_009244560C3E4D83290BB6E6E261948BDA77ECD0CD/F6A56EADCE51122943AA74090440618BA8D5880C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T16:28:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25855_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleDetail\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25855_00_00438917DFBC3CAA1BF3250FC69DD6F8CCF93D772C/5D6F001D727ABD1EFE1A26057BC8E3DCDB3A31AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T02:23:59Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25854_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25854_00/bb6f0c44-0cfd-425b-bad1-18f185e2596b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T02:16:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25857_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25857_00/c12a4cc5-f0de-4add-ad68-86bebaeaf0e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T01:51:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25856_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleDetail\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25856_00_004EBB45E934236FC37FFD60CD2AEE265809FCE69D/C4E30D5B77A027F49D5FA221E88B2391DC47C869.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T01:44:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27290_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleDetail\": \"The pig D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27290_00_007AD42F8D0144D976D09359206732FBF2D036482D/294DD67C49CCE0A3253CD53C2433A505467C1EE2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:47:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27291_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27291_00/bd7a676c-278b-497e-9f39-0bc36acc609f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:43:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26232_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26232_00_00A6D733FBD20A8472BD117400DD356C00574453D0/2EBECC3072A73D099D6BAAEE9F6F80B4580F4ADF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:29:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26233_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26233_00_009D30976AA435723C6370594E15825B37AC858FF1/3530910E8D3C5CBF97283D4FA6F893E4BAC5CC04.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:17:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25567_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleDetail\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25567_00_00C899CB42236FCEC7782D3B5E030927E27CFABC86/58A6B2483511DF1F27B78124DE79BF3092F1C054.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T22:21:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25568_00/6883291a-215c-4877-8833-a0236eadf99c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T22:10:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25990_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Bowling - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25990_00_0073B4321E244D33BE9CABFEAB15D7B9C5C2694B1D/9820D5EF2D9E0647966AA01D298EDD55AF7A55B2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T21:34:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26230_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26230_00_00CF9A0AD6ABD793F8BE67D6C76CE0C23FE7BD0322/E56E32E4A0017A63DF6030BEA6DC59AE563E92B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T21:16:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20188_00\", \"trophySetVersion\": \"01.40\", \"trophyTitleName\": \"ASTRO\\u2019s PLAYROOM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20188_00/035a02db-e64f-4572-8653-4a3db37fe2f6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 31, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 93, \"earnedTrophies\": {\"bronze\": 27, \"silver\": 13, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-19T00:18:17Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20842_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ratchet & Clank: Rift Apart\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20842_00/693b98ed-1b2b-4111-abcd-39ad740aa941.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 36, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 36, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T22:29:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleDetail\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25569_00_00DE4B5D69599213BAE188A780594BCD3F8A15F5CC/6CCB27F0884732A6E60D4E42671276DC31BD0514.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T20:24:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25570_00/84ceae93-fd15-4898-b823-7fb0d3097450.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T20:12:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25991_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Bowling - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25991_00_002E6F0971192B9A9BC3072FD3A9F09AF562E05EF8/DED52FD5D3FF14DDAB0854BC5139D8D82AE1C804.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T18:52:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26231_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26231_00_0079CB65E04451C15D64605AF48FEE8D647218F71A/5258D626BC8EDA913EEF53B29D71571C31209DD6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T18:26:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24274_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleDetail\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24274_00_0096BE48F66DF2E7282623274052A24A5FC41209CB/DA4D3B0B67683BA8B74AAF5CD1AE4EFE7A180280.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-15T20:52:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25908_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25908_00/45df0b81-91c5-4e26-a5ae-1e44a3eba1f8.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-15T20:20:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22813_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22813_00/d2cb86a0-4292-4d9f-a6d8-ba8eba5b0e17.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T23:17:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23949_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 2\", \"trophyTitleDetail\": \"Sakura Succubus 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23949_00_00038E972F9B9E3F18B14D009E279BE392437E9077/453B29E33E2C5FCB832AB652ECB76BEBFD42FBF5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T01:37:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23951_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23951_00/8ce27c2b-2044-463f-8b4d-0657d0d7ebcb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T01:33:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22814_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22814_00/b5c427ea-435a-4486-a32c-cd0eb6f1deb4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T01:08:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Legends of Talia: Arcadia\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23337_00/24f881d7-90ec-4338-a397-c79eec32ec56.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-05T02:43:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23334_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23334_00/4ec83c29-15a6-4b50-bc66-e8425bd4c93f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-04T21:16:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26994_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 11, Level 12, and Level 13)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 11, Level 12, and Level 13) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26994_00_0079053930E28AB563D81BF79B3E52BDB75A755F58/13C24E4A87F680E1FD964D37E975183AFECF761E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-24T15:19:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15895_00\", \"trophySetVersion\": \"01.10\", \"trophyTitleName\": \"Tom Clancy\\u2019s The Division\\u00ae2\", \"trophyTitleDetail\": \"Tom Clancy\\u2019s The Division\\u00ae2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15895_00_006A250E088FDBA0DBBBF7E1289A630DDD59E23B3B/1171667E4233C7C2972D811CD7783B47A5FE4D62.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 46, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 37, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-22T22:24:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18434_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"Far Cry\\u00ae 6\", \"trophyTitleDetail\": \"Far Cry\\u00ae 6 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18434_00_008C93E3E408BD5116DE04ED0A4083FF12797AD437/7B321575B2E6A0D9F0D7270B408B55F89AC9B2FA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 81, \"silver\": 16, \"gold\": 2, \"platinum\": 1}, \"progress\": 36, \"earnedTrophies\": {\"bronze\": 37, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-21T01:01:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 8, Level 9, and Level 10)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 8, Level 9, and Level 10) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26896_00_001D01CA5D473375593A940E8E617448F05F8041E9/FF7D804E11ED27CAA23BF5692D6D74712C17DB1E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-17T16:37:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26895_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 8, Level 9, and Level 10)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 8, Level 9, and Level 10) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26895_00_00C2CB5C4F10877535462BAB1630BA073C550581D1/08D618B038EE6DCC819C4A2B553306DCA56AA5D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-17T16:29:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball Bout: Otterrific Arcade\", \"trophyTitleDetail\": \"The otterrific trophy set for Baseball Bout: Otterrific Arcade!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25921_00_007FD686985BD37D6D0B0273DDACF61DF4BE06F94B/100FB9B18C36B3D78122B23ABACD7974272C406D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-13T02:40:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26765_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 5, Level 6, and Level 7)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 5, Level 6, and Level 7) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26765_00_00DBB58B8751280932B615C43C71A8BD5AC5A3972F/754A78066B7F18DC19E567538F9BCB16B0A9E6BA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-13T00:18:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26764_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 5, Level 6, and Level 7)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 5, Level 6, and Level 7) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26764_00_0044E8EA162604E56D80DA8F1913C1FC78BA5319CD/13DD4624705DA83EC73294F38E3489B7740CF25E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-13T00:05:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16062_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sigi - A Fart for Melusina\", \"trophyTitleDetail\": \"Sigi - A Fart for Melusina\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16062_00_00F76FA4570B14EF760B94A75611CD34B2A6A1FF45/3EA7765CED9B724C677D5809A0D5958AC124B971.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-09T23:00:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25088_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"eFootball\\u21222024\", \"trophyTitleDetail\": \"eFootball\\u21222024\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25088_00_006841AC0C54A402B362ABB17C77C0881412A9FC69/2B31B69F4A987A544969399583A67C4A144290B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-03T21:56:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26619_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3 and Level 4)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3 and Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26619_00_005FCF25D1C8E7D4F99F7FE11D9231FACB4B644B6A/5C17C3FD39C71928766993C4C961E4B7157F418B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-03T12:13:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26618_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3 and Level 4)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3 and Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26618_00_00B63AFC0328271916BA9FAB234082573291E10885/0F22C3BE2714D7204CE6B672885BA99BA5360B2D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-03T11:45:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26555_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 1 and Level 2)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 1 and Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26555_00_00A946E7E16CCE47699E2E438D59419096949D1216/8487BD10B0AE6DB22A8838DAFD4F6657F909EA61.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-29T00:30:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26554_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 1 and Level 2)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 1 and Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26554_00_00E70D521F3B0C720833B286E85FA90B91B41D032B/240E9C159FCC5E1563E5F41BE744E00427625D36.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-28T13:40:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26228_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 5)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 5) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26228_00_009F9DA19693D8B1A0B38DCA4B9898F2D08AA00506/C01D8B29D2EC7A25A5B9623C3D16AEA43EC6CDB8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-12T22:48:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26229_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 5)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 5) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26229_00_00DA5AF2CE50207845D3DD4E1ECEAF5AB8D3A4064B/3A52123563CB755A652EBFA21AC6F08D0EF0067A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-12T22:40:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08268_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"God of War III Remastered\", \"trophyTitleDetail\": \"The God of War III Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08268_00_007C6460B26BBD12317E647A8F311FBF91DD928D4A/8E57416AFC918847A599DD0F7097FE4F64D1A552.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-06T04:28:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26227_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 4)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26227_00_00ECE406ED8445828385190377C0E9D85F2A737492/CBEE25ED8238B75C5B7A291053FC87959671DA7E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-05T14:48:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26226_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 4)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26226_00_00AD8E20336EECF538E1E9CD7EAC80600072205E8D/59697FFCCC4EC4D93CE5C5D5DD85CC44D4B10E6E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-05T14:41:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26114_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 3)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 3) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26114_00_00E7BA981A0C0300E03FDB83526D2DDB65E3A68722/8B5772801148FEB06D16519811C7834192723BF0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-29T17:49:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26113_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 3)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 3) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26113_00_00E54454EC320A076F42FF751FA9B894EAD506076F/287B477F0F4FE00ADD022F70114988A4306DBFC2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-29T17:42:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25728_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Intervention\", \"trophyTitleDetail\": \"Trophy set for Space Intervention\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25728_00_00B5349FF44ED541137C5C7ED52302ADCD1A190D72/AD723C9305FA4896D678C401CF8CFE2A87EC7CC3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-23T11:57:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25988_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 2)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25988_00_00E5FCC52C9001DAA1395E1AD755928D4CE15D9CE5/F3FD963DD5776C3260EC0B23718B440472CD0B6C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-22T09:52:40Z\"}], \"nextOffset\": 1000, \"previousOffset\": 949, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25165_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"One-Eyed Lee and the Dinner Party\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25165_00/862f8aa2-9f8a-4260-8dd8-bf7d4637eb3d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T22:25:28Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27574_00/b82c101a-20b3-4a76-8cd5-c8f9336c8d44.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T11:03:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27573_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleDetail\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27573_00_006E7669098A278A15CFE5DDA2F1C4DB4AE2D1892C/8989868E86A491E9852D48BF00BD76F012BFBF89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-27T10:40:49Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27577_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27577_00/f29f6318-0dc4-4264-b20c-4697e4a43bda.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-26T19:29:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27575_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Onion Boy 2\", \"trophyTitleDetail\": \"Super Onion Boy 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27575_00_0037B60744E3A859832F72ECFB42CFBB6367F10438/964048E29210F72983F9D3E65BAC649A1294D949.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-26T11:11:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25163_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"One-Eyed Lee and the Dinner Party\", \"trophyTitleDetail\": \"One-Eyed Lee and the Dinner Party\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25163_00_00A8AEFA514A3CC616549F9B989BE1818A76F08A5D/0F6B4F904B7C74ABBB0F14F7126063133976B3F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-25T23:32:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21008_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Horizon Forbidden West\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21008_00/2b1ab462-7ee0-4415-81d8-bf2632f03850.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 67, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 70, \"earnedTrophies\": {\"bronze\": 50, \"silver\": 7, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-19T21:36:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25562_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25562_00/eea9a11c-aaed-445e-aec5-32f071d7de4a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T22:08:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25561_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleDetail\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25561_00_00FCEB5AF74212CBDE1214CDB8DF39F932EC2FFEE3/A02E72D61D22B98AF012241583E4913E6FA6080A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T22:04:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25564_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25564_00/df6a2d30-c1e6-4a56-94e5-ef8169cb7994.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T21:06:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25563_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 4\", \"trophyTitleDetail\": \"Sakura Succubus 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25563_00_007B2C132BFBD69FDF198C9563099C7E7C8787B80C/5FE1827663EC8B1A193AA7B82BB0517105FB8231.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-10T21:02:02Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28669_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28669_00/a801373f-41ac-41a9-b177-d12700514221.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T18:27:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28671_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleDetail\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28671_00_00CC5186A723B20C043082B27D9630ACC93AE80B8E/9D3C4278AE49468D103AEDD600E8305EE26DBB92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T18:22:09Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28668_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28668_00/06883f28-0e78-43aa-b476-f46613998b6b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T17:54:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28670_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs Advanced\", \"trophyTitleDetail\": \"Quick Mafs Advanced\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28670_00_006A27C615EBF0F3BD0DF3FF57A23CDE5E35B0AD90/259059247C5808F06576946427A3EAFB026D1FDF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-09T17:51:37Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26642_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26642_00/c8024973-034c-44ae-aa0b-b1dab8c412f2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-08T11:31:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26643_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleDetail\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26643_00_004198DECD6FD44410D7E95482FC9B4BA7B93138AD/55EA3E39528D6A693048FAE3FAEEB1A55F371BE7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-08T11:29:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23856_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alien Destroyer\", \"trophyTitleDetail\": \"Trophy set for Alien Destroyer\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23856_00_00BD7FEF3386B5DE165FAE7A358DF0A9C015103C9A/4CA173B24F72B99B9577ACC935EA3F3C7ADF2718.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-08T09:23:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28413_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28413_00/fd217bbb-1d97-4ca1-ac68-7e13377e4c5c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T12:46:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28412_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleDetail\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28412_00_00E2CC65881E22324B6A367417C05FA152449292B5/69B816A8C1B0D7886FE7FCEBAE8253EB717B75A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T12:36:47Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28416_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28416_00/03ee5e50-519a-4338-998e-ca4d206832a8.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T12:29:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28414_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Would you like to run an idol cafe 2\", \"trophyTitleDetail\": \"Would you like to run an idol cafe 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28414_00_00305A2AAAE290BDEFDF1FA791C42B0249C872FD55/768F157A9E32E1C18B4C85DDB3482DFE1887E7D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-06T11:37:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27599_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27599_00/63e05cfc-b8a0-438c-b140-6124c2489067.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T15:03:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27598_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleDetail\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27598_00_00742A665808D511A0320682350E2046BD34B8B8ED/6963ABDDEABCACA0520E9C4C0CE05B2E32B1CDA2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T14:50:29Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27602_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27602_00/608297e6-7a6f-4a37-aa06-f757c88fa3b7.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T12:12:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27600_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Moto Roader MC\", \"trophyTitleDetail\": \"Moto Roader MC\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27600_00_0058AC764D5C2E1DCC9D3BBC67D23DF32D62B64290/90E5B5F7FD13CB2A3505972F75658C24EB5BB9B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 20, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-05T11:52:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28788_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Disco Cannon Airlines\", \"trophyTitleDetail\": \"Trophy set for Disco Cannon Airlines\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28788_00_00520DCB2F176F53F16B7E79701697C030D733C4A4/60B2564ADDEE5D26B30E43A36213932D1826672A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-04T22:06:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28789_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Disco Cannon Airlines\", \"trophyTitleDetail\": \"Trophy set for Disco Cannon Airlines\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28789_00_00AD8489BE35B881A92D0F9A67A25D109C6BC22CC5/C81DCCD895904FB699B74B6763F1B7F87301C17F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-03-04T21:58:07Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25369_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25369_00/2a9d3867-6c55-4596-8b8e-8d6517b8bab9.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-28T10:55:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23059_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleDetail\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23059_00_0020C7CB8281F8E89A84C6FFC2E3AB11DD42EBD10E/EF87B3BC1E19EF709D8495D65A8995129C2588D6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-27T11:56:57Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25368_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25368_00/a3fd8384-3b32-4b37-a869-2fb4372623b6.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T15:08:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23058_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic!\", \"trophyTitleDetail\": \"Pretty Girls Panic!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23058_00_00EA9EA95002A5D9C95318F8B113C3C07277E40E27/5D77B865C21FA356F5B8348AC9C3E411DE79D964.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T13:59:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28344_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Pinball - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28344_00_0058031A8B6B3AC4EBFBAD53DC6B23C6EB2CB97B78/6860D2F5969F4466693597DB07CCB9D3F45F69F1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:47:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28659_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28659_00_00F01FB73BD118EF3A6C06A049D855B782F6413B98/BE1D1427A0AA864C132243F3BD9F6EC03A93E60B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:44:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28658_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28658_00_0078D82D8A06C8B4D269227EF7832AA965DFB248E7/46BDDFB798B7FF2ED4D485E9C019DC6384C9210E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:40:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28146_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28146_00/ee22ea29-0d0a-4009-92fa-111e7a96713c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:13:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28148_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleDetail\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28148_00_00422E2D12C84F58AF5E810D5174BF7FD956279046/1E4FC4E868866AEAA1038936B847FBF14EE52C89.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-26T00:09:56Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28147_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28147_00/3c0d2d85-db6f-47f2-9e1d-ce3e7a37b6b6.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-25T23:57:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28149_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Chick C\", \"trophyTitleDetail\": \"The Chick C\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28149_00_001CCA32C0411E837C2C7212BFAABE76E137A5D562/9CBD43919835D433C54CA7A05AC1C5AA12162382.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-25T23:54:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR21090_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tom Clancy\\u2019s Rainbow Six\\u00ae Extraction\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR21090_00/8c75e9eb-3113-400d-bf04-eebcca4f3314.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-23T20:47:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28340_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 8C, Level 9C, and Level 10C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 8C, Level 9C, and Level 10C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28340_00_00AF87D222D2080714097148D510FCA1D8CDAFA5E1/EB30987EBC7BC2B5D7CDC840E0D454542527F7DC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-06T12:09:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28343_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pinball - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Pinball - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28343_00_00CED45F2C91A95FA29B3FD2A388E2FAE00FAF2D1A/21103B8B29A17F4274DA7BCF4FD1E81DC98F589F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-02-06T11:48:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28338_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28338_00_00F4B873DF6159B969FB73859E0457364D20DD5C66/AC34D891B1FD7F0C8260FAB9D5B3AB653102113F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T19:48:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 5C, Level 6C, and Level 7C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28337_00_00AD33FC013848AB9F0ACC24D8A45BE3F43B543099/F20DFE9BF1FEA7907D04B69A70DC59363699AF3F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T19:01:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28215_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3C and Level 4C)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3C and Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28215_00_0040F3F6DC63C21C4944EB1E8D30E9CB95EBB214AE/610A3FB062A06B3EE3114548623388F843295394.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T18:33:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28216_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3C and Level 4C)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3C and Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28216_00_00AFE12043AE56A2B46885FB4E6B28529BC51BDD2B/132EF654E0B4BF2AA6B222E9A4036169C6E6F544.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T17:03:44Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25910_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25910_00/469c8bf1-194f-463c-9960-a23584a37066.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T10:54:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24276_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleDetail\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24276_00_009B8953EAD35EAB3408C2F80F665CC56EB4BFB135/2305DA99BF9BD75142D059356EC8919DB613B16B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-31T10:25:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Round Invaders Trophy set\", \"trophyTitleDetail\": \"Round Invaders Trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28091_00_00413994CA0ACD8FB7664C44A44950520C5A8557AB/58E28AE3C45F69A50CB05925639A5071D4CA3BED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:41:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Round Invaders Trophy set\", \"trophyTitleDetail\": \"Round Invaders Trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28089_00_00BFE721AFB9169455300B665B6D494385A326E302/6B7576F356111576B6134C679CB2E4A4F5E2191F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:38:56Z\"}], \"nextOffset\": 1000, \"previousOffset\": 949, \"totalItemCount\": 1446}" } } }, @@ -1365,34 +1362,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:00 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "32202" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "30233" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:50 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25989_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 2)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25989_00_0023A768D0ECA790E481984314592219FE981CD617/DBA2420D247CBC46EA2F23E91B2367C24C1E5481.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-22T09:36:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09798_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Uncharted: Drake\\u2019s Fortune\\u2122 Remastered\", \"trophyTitleDetail\": \"Uncharted: Drake\\u2019s Fortune\\u2122 Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09798_00_0004C451BA0D520B43DBB2C20D0EB0B47AEEB9FEAF/B4203E044C57963E48475359B3DF9E0C5E3885FC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 41, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 30, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-21T20:18:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25919_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25919_00_0083B6CF347FAE19582E6B5DFC55D3F529599DBB87/C691098FD087C7CA844B73247968026C3A1F5922.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-19T03:56:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25987_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 1)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 1) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25987_00_009FC551FB83DCEB2A286FFA5342EA4DC3B2FA82EA/793B8165D6F57D29E270F9578E55276B1686E14E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-17T20:59:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17130_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"DAYS GONE\", \"trophyTitleDetail\": \"DAYS GONE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17130_00_002D14DB28AA079AB444D1AA3527D40F8F780DBAEE/81687E4B5151D16193E5EC2A558719BBCB6BD363.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 37, \"silver\": 19, \"gold\": 4, \"platinum\": 1}, \"progress\": 70, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 15, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-16T13:58:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25986_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 1)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 1) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25986_00_003422075FDACDE74E4EB84EB1C3D9A548A670EAA3/E95204E2AE081F4320B75B7FFBDED5EF56FF8D93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-15T06:23:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21219_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Tennis World Tour 2\", \"trophyTitleDetail\": \"Trophies for Tennis World Tour 2.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21219_00_005345A435DE4D4C0D3BAECD929D22C0BB804F89BB/03291C62B4997B4811C6977208CEFB305C66AE54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 16, \"silver\": 8, \"gold\": 6, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-12T22:10:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Intervention\", \"trophyTitleDetail\": \"Trophy set for Space Intervention\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25730_00_004D7DD2BDF89565F8F670831051458BAA30025FF1/AD0612581454D87296BADB26B4E4F75DB582E5A9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-11T09:20:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25918_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25918_00_008CF05FB3C4869652D0FE73048183249DF0775DC5/A0EBE73891152730D52A65877B96CD0DFACA86D0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-10T22:46:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25494_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25494_00_000A203F67EB021138E83E7C5D37E3C68508A08FB2/2F4B5365566102D134ECCA626F2B5BFBD2100EA6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-10T22:22:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09304_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Darksiders II\", \"trophyTitleDetail\": \"Awakened by the End of Days, Death, the most feared of the legendary Four Horsemen embarks on a quest to redeem his brother's name. Become the terrifying force which everything fears but nothing can escape.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09304_00_003FC56A70158BC23E7C5A7B8B97989C4AAF7E1C8B/56BC33B67701827A9F96643A7D67E18ED7F2F2FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 40, \"silver\": 6, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-10T19:06:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16416_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ice Age: Scrat's Nutty Adventure\", \"trophyTitleDetail\": \"Ice Age: Scrat's Nutty Adventure\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16416_00_00A580EA5329A2852BE50FFA909E3E7C4570426BA8/0127FAC9400EC930F13D1434484C26E3396A0D95.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 21, \"silver\": 11, \"gold\": 4, \"platinum\": 1}, \"progress\": 67, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-09T20:53:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane 2\", \"trophyTitleDetail\": \"Trophy Set for the game Memory Lane 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24209_00_00FAAD281EACF86DB3F871577103E021F2A947E379/7CBC6E6CDEFD6EA3110F17AA842AF1B602BDBD76.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-09T19:30:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25652_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tokyo Run\", \"trophyTitleDetail\": \"Trophy set for Tokyo Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25652_00_004B8E5D94CEF4000EAD090AC149EA9EE34745B147/1AA2B67199300A4DFBBAA35BADE6FCF6C7FF9C73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-04T11:02:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25653_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tokyo Run\", \"trophyTitleDetail\": \"Trophy set for Tokyo Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25653_00_00EBCB0669D1E99D3CCDA274A4B2FEAEDDE85177B7/E6587ABF32761A338D3EA23F7C1C8B65CB581A4E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-04T10:44:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25802_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25802_00_007A535B41C77A8A14CEA0318535990410A95782AC/90309900D7EBABFC9998C90998383627C0089BC6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-01T19:22:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25495_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25495_00_00222968FB33C935A8AD7FE3C78E0E1FBE3DE17098/CEC9DB16DAA3AD1A62C55D8450F7FBB05813992F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-01T19:17:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25803_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25803_00_005F28C4500C16436D15D0C69BBC7034B0C44482D1/BA0A319D6C56DEC401C5E10C939B73B20EA463A4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-01T10:32:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"It Takes Two\", \"trophyTitleDetail\": \"It Takes Two\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20783_00_00ABCCED328035CD3A5F97C330B0048280CFD60A01/D02CDCCA464AAF4631042E4FBA957F7FB1ED6E4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-24T13:05:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Funny Truck\", \"trophyTitleDetail\": \"Trophy set for Funny Truck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25329_00_00E357CEAAD50E217B069B442FE0749C2E757120CC/F9B1C9E65FDEF4D3AF7DBA7C15116F1855BA0E2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T21:15:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25330_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Funny Truck\", \"trophyTitleDetail\": \"Trophy set for Funny Truck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25330_00_0015921E50B9E7A1405CEC78174ED04EFA867410F7/9AEA8A091546F23B0E92C96D80247677F5AC0665.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T20:13:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Spectrewoods\", \"trophyTitleDetail\": \"spectrewoods trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25205_00_00AAD41B339F39868E771B4BF1F5910580DE5512D8/CD86269753B2B8D3519ED0B60C5E984DB8A6B823.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T18:09:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Spectrewoods\", \"trophyTitleDetail\": \"spectrewoods trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25206_00_0083ACCD353087D24CC04D3D141EB7DDF5F4943D98/5B7CCA2FA233568AD2E9EE6AB80D2C43AF2B9A8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T17:35:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25493_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25493_00_009005CCCF8F9D5C582EE9CAA729386C11FB2D64EC/DD3C540161FFD0F2E59B8D73D7DD0C22FD4FED01.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-12T14:18:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25492_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25492_00_007DCC8B1268137EC5AF7D5E427032C3909EEF3FEB/38F7BB35C71C84E8D84B4CEDCD23FF4B0D8CE333.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-12T13:58:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Our Church and Halloween RPG (Story One) Trophies\", \"trophyTitleDetail\": \"Our Church and Halloween RPG (Story One) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24544_00_0078FB169932F485521E0A9882797108B1EEB6B0F3/35C582F3AFC63CEDFEA55492E7A1FDA7ED191B37.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 8, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-12T11:55:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane 2\", \"trophyTitleDetail\": \"Trophy Set for the game Memory Lane 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24208_00_00CA23EE6A0547F1F6A9A1BA31BDB3F7452B7C71F1/8290F0FAE1FDF1AC67767F8FC158D2CB990D7F9B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-10T10:38:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24219_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space 2 - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space 2 - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24219_00_009861C6B92C7F2E935B21FCFA013C7AACDBD84F92/DD04C6B7D64E2A9E40D55CB4218A64E71AF0F30A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T22:31:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25194_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Racing - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Racing - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25194_00_004BCF4E3293DC54CEC41C099687780ECEBB0A808B/DF3AAF205F0149B573FD415B251ADA8014D03017.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T22:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24218_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Racing - Breakthrough Gaming Arcade Trophies\", \"trophyTitleDetail\": \"Racing - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24218_00_00AE57830B6EB420ABEE41916422F25E1B53AADB70/38952AEB574DCD2CDC632F99214896A386166B9D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T21:44:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25092_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25092_00_00ADE5261BE4C6AAA78D537B3DDEE03F16F01DDF24/5B86AF1C25D56131F25392889D113831A1A1F6FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T20:38:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25091_00_00BB071FA70FA594FA43C8AA1E65AEDC74B7CCC4D6/FF637F396517499A154E20B9765206F736F14A20.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T20:18:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20116_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Chop is Dish\", \"trophyTitleDetail\": \"Chop is Dish\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20116_00_004756F5040FD2DCC41C992804FBFC3D190F3FB666/6DD37C508CBFB8C064E8EFE7D169E12FAEB0D84A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T22:51:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25360_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25360_00_0054F322117ADB88304845C95EB023DB1971FB7633/45838C51FD51B6BE55AABDF67356DDF556B348CF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:57:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25361_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25361_00_00D52EBD76CACC1EF705529525D9FDFE8101176629/7FCB323BE8BFD2E51E0A6D68F039A33FA5C5B0B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:41:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25359_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25359_00_008CD0675FF8C71E19308E90A68AEE23CD6CB8BF88/B1DED99712D710547FD63800B71A779D6C9C399B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:34:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25362_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25362_00_000CE1AC6F6F1AED309443083573B8633FBDFDEC97/9A2C70E312EAE191B4BA2D70C1B7242FA16CB7DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:00:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25196_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25196_00_00A1814B2E8350CF7F2CEE179CE2AB5F6F0709D5A1/7C32C41B5DC364318D8C97260B397006158C8DDE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T10:21:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25195_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25195_00_00E861039ABB3319B11E6BED3FA831A7E8B0EA941A/B1DB693B4A1894C6C44835B855973E4A17C81625.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T09:47:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07897_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"DARK SOULS III\", \"trophyTitleDetail\": \"DARK SOULS III\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07897_00_00B1B88693A993473272413EDB83CC197E895B34D1/3F49215DC1A348E47575B58B205808F148F3D3A8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-03T12:48:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25003_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Track - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Track - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25003_00_00108933F995E087149E292AA34585E9A28D994D75/DC43EA490970EF7D8AD10239CE3800E3E6864630.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-29T22:59:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25002_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Track - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Track - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25002_00_000D96A71E4DA5619BAE79C7B93F4321D92ED1EB9D/6834878236CE1A9EEC2A0174818F9158A40E2F80.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-29T21:31:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alphaset by POWGI\", \"trophyTitleDetail\": \"The trophy set of Alphaset by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20993_00_00FCDCA87416C2CCF556331832FA7A3530D718575D/6BFF53A9422B5DB2270246130C9D31501CE2DE44.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-28T23:13:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24216_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Avoid Them - Breakthrough Gaming Arcade Trophies\", \"trophyTitleDetail\": \"Avoid Them - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24216_00_00405D868D9115533B764FD6D645D9C151ABA26AEF/9C44972B87F5EC31DE622AEC3F3CE1643681D7D9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-28T11:21:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25125_00_001D8C761E3EB5EE949071A1C8FFAB6DB366302805/06BEE9F54358C34D7819E8E8F18FCB5277C4A700.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:44:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25126_00_0092891C075D03523AF8B62DBA043065FF186CE825/261DC84B85205F89636E67E8FF8BD8661798460E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:35:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25269_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25269_00_00832694A648F2DADC7B4C61DC18CBEFC7CE3DF125/7D90BD738493661030666C7AF3057C18164A3967.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:20:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25268_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25268_00_0051C4586558DFB17203DA7B7D569C3C7DC00D37A8/37D47AAA2AB809E6E424B3884A70854CFD6B9283.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:10:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13387_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Battlefield\\u2122 V\", \"trophyTitleDetail\": \"Battlefield\\u2122 V Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13387_00_00D6B0FB69485C47618E10F0F190246D4D85AEC3E3/DC622399D70493741D1C282FEE3FC14327C61B25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-26T20:22:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alphaset by POWGI\", \"trophyTitleDetail\": \"The trophy set of Alphaset by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20992_00_003F9C6499CD0DED4665E87E9250A82C768111ADF5/47C7C96E29E23EDFCF7F7878C43304BF66DEEFDE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-24T17:04:42Z\"}], \"nextOffset\": 1050, \"previousOffset\": 999, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27467_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27467_00/0f861444-19b7-49dd-9412-6a36211c3135.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:27:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27470_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleDetail\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27470_00_002A21E67FEA4B9B9EFEF46CBD3ED6822CEF54402C/93D3DE3D3D132C4C34A260149258749C83B14453.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:24:24Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27468_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27468_00/73329308-69e2-4af5-a509-67b59114e10d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:13:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27469_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Ketchup Story\", \"trophyTitleDetail\": \"The Ketchup Story\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27469_00_003FA9B16D69C7228CFD55CFB99C15FCC59C2C25EE/400BD325272CF901AA7590EE653C97B865EEA028.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T21:04:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27895_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 1C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 1C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27895_00_0022003976A06DCF22F14146D89D89A31D66F2A732/5D284EE3BEB4DBA4856F9AE149F3E17890E698C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T20:53:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27909_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 5C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 5C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27909_00_0068A051F976460169FC0EF51980CA38A491CBDF38/889000D0876A4D92F7F3668561576B263398FD49.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T20:45:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27910_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 5C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 5C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27910_00_00D1FC7FCE8CC57FA6012F092317B53CF95B762BF1/7A2A6510196B9C54BFB3890EC743185B0BCA29CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-30T20:02:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26498_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Finger Fitness\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26498_00/be1debb9-1163-4d41-8cc1-fe74cb0d1089.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-27T22:03:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28130_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28130_00/56ca6102-c257-4c5d-958b-775db8821321.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:37:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28133_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleDetail\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28133_00_009EC3BF7945CDDF867272B29D7FE1C2D79CADB98C/FF9DA433C7D40FD017AA2C1FFEBB479CED624F25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:34:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR28131_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR28131_00/454e5d62-c003-4a63-bf2c-0c89980dca36.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:24:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR28132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sheep P\", \"trophyTitleDetail\": \"The Sheep P\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR28132_00_007F0B990B517C1330597A0D6BE8A083EF58A84CC1/4ACDDB38E4D12C0D0A6D7E69DE5A87AAF0FAC6C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T19:21:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27907_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 4C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27907_00_00F539FFE3A524CC246A46379E4D9238365FF5E81E/8177C8181A8C61E505B2EA01E1F8808574A0A1E9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-25T16:41:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26443_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26443_00/033e9c38-e11c-4b0f-a929-78bce9dfd746.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-21T20:00:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26442_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleDetail\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26442_00_007D122E85234CC29DFDA9BAF4E6647E9103D5D198/5AE24B3CD43DA491376A7B4BE777DC8B9C6159AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-21T10:45:53Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26445_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26445_00/dba13a89-9db6-4f58-b741-b82c27cf6740.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-16T12:08:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26444_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleDetail\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26444_00_00D681F204F9E2BA9475A11B79621D641C2C1E40EC/3F97F46AB0B89BAD87511DDD089C5894AD0925FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-14T02:44:16Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26447_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26447_00/519ccdb6-0c81-4525-bd89-db18d172fde9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-13T22:47:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26446_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A YEAR OF SPRINGS\", \"trophyTitleDetail\": \"A YEAR OF SPRINGS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26446_00_002A2813B32AD8E7D6835FD688CC968E39A498E80F/F2A111725CD10BD1BDC20F0E089B4049ECEE7F15.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-12T19:09:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27608_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27608_00_001C296AEB12126D386B53D5864120B0CFDACA2373/0F5E4432649A376B8E9803826906828346E900DD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T04:29:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27950_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 1C and Level 2C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 1C and Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27950_00_00CADC8A0C0FC5F531E6363F1E080157AF5B19DE47/D16B082D1D6897AB935936D442CD210170881901.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T03:56:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 11, Level 12, and Level 13)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 11, Level 12, and Level 13) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26993_00_0014C60B285AAD550C774D90F19C60E3F1745536EF/66CCE691082A6297B1E1DD6CE350BF610CFD4E3A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T03:47:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27908_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 4C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 4C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27908_00_00FBB9C0367B6851FC6040422BD0B147D4187790CE/7842823D1BA368CF8F9EE3010E4982B795000E77.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T03:34:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27894_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 1C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 1C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27894_00_00F42DE457CFC0F331EC2A2047CA9A1A2290011545/1031003E1A1BCED4603314D843E8839038C159BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T01:11:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27898_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 3C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 3C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27898_00_00C08FB6B77DB42C9206CCBA097EB991EBC6487744/98935EA742019608D88C56BBF122C2097D79EC2C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T00:47:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 2C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27896_00_00C1116D7F46346F98120B223F9A566548D11C2357/7C07BB34CF995074C58260B12142D5AA82C80F7D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-11T00:36:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25179_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 22 Trophies\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25179_00/9f7d91bf-019d-4734-bbda-319bb01ca4e0.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 17, \"silver\": 17, \"gold\": 3, \"platinum\": 1}, \"progress\": 10, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-10T11:37:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23352_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Grand Theft Auto: Vice City \\u2013 The Definitive Edition\", \"trophyTitleDetail\": \"Grand Theft Auto: Vice City \\u2013 The Definitive Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23352_00_00950373AC60F652D0BD6837CB0685A8487CBDF2C5/A97169846BA6B93A752464F23543E60FEABABC2F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 19, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-08T16:09:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27899_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 3C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 3C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27899_00_00180B7E542D97BEC1942564CFC1B60F0C970C2764/0EB6743BA25E8C97C6258CF98B868E3C5EE7EDF7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2022-01-02T18:28:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27949_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle Challenge (Level 1C and Level 2C)\", \"trophyTitleDetail\": \"Zippy the Circle Challenge (Level 1C and Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27949_00_00AC9BF71783A237DB73825437548839AF365A2A83/51241824CAF0287A57CEF491710E3B14039AC4BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-31T22:07:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27897_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball Challenge (Level 2C)\", \"trophyTitleDetail\": \"ZJ the Ball Challenge (Level 2C) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27897_00_00A325C6296CA289BDA470397BDE32C995D0504D3F/F4643E12C325032AA76410F911A5860E30167ABC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-31T21:50:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27747_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Run\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27747_00/17594979-0947-4059-8a35-48295df06279.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-31T21:41:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15597_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"LEGO\\u00ae DC Super-Villains\", \"trophyTitleDetail\": \"LEGO\\u00ae DC Super-Villains\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15597_00_00FB3FA644712BACF0B4A82E2250FECE6B651948E0/EBF37C1EB0D637C98173684C1A7F324EE1468841.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 7, \"definedTrophies\": {\"bronze\": 62, \"silver\": 10, \"gold\": 3, \"platinum\": 1}, \"progress\": 5, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-14T18:17:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25245_00/1955e1f5-aa40-4fc3-af53-8ffa71aa700d.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-12T00:18:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25244_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti 2\", \"trophyTitleDetail\": \"Freddy Spaghetti 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25244_00_007F2415881767A801A4D8FD84692AD26353C6505E/3B3D5D779FB6BAD38970687939ED492872744079.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 20, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-11T15:11:14Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR24830_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"eFootball\\u2122\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR24830_00/9b56defc-26a7-4272-9b47-40af01d1e139.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T17:48:18Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Swim Club\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25896_00/59516b9e-55d7-47e6-a392-d343248d61dd.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T14:53:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25893_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Swim Club\", \"trophyTitleDetail\": \"Sakura Swim Club\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25893_00_004EE2BDDBCCFD89AF37A520D3D4A62E892A6A02EF/403ECA75FFE929A0BD16D57C595530AA0A5C3809.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T14:47:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27557_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleDetail\": \"Trophy set for Space KaBAAM\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27557_00_00CFFF59C9AB3F6AEA480D1EEB38120C0D03DCB529/7395C1D8FB4D153AD382B359658D062812580B54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T13:43:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27561_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space KaBAAM\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27561_00/9b8c4c2d-40a3-4c91-b28f-2b15f793d42a.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T13:09:46Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27269_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27269_00/d4ee3c7f-1534-47d8-a445-957ff58be7c2.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-10T11:59:06Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20684_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Marvel's Spider-Man: Miles Morales\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20684_00/baa4acc4-a8e5-42f6-ae09-3ae51b6a38fb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-09T18:50:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27270_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Quick Mafs\", \"trophyTitleDetail\": \"Quick Mafs\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27270_00_0092B8DD0656164A6F047903CBCB06F1FB4D933D21/AA337B02BE0C46E36085DF8A00D6DFC13D93B77E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-08T17:55:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Racing (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Racing (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27706_00_0053E93A5D04B15D687211BAACA591E7E329A02447/88E13EEC587D0E588CD929D804A39A0057FEB8D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-08T16:54:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27609_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Avoid Them (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27609_00_0031D6E608005332FBD63F6995FE9B795F70633B97/194D2312C5CFE1A5A54AFBFF072A8B13A8F1CBA9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-08T16:48:42Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20241_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 21 Trophies\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20241_00/99c6d1c3-0dc4-48f3-9cb8-8a128c9f96ad.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 17, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-12-02T18:53:27Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR26497_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Finger Fitness\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR26497_00/c0e6ed59-f832-4820-8869-99be1df56cf9.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T17:28:55Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25909_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25909_00/6f748b4a-61be-482d-927e-8a6179985eda.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T17:05:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24275_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleDetail\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24275_00_009244560C3E4D83290BB6E6E261948BDA77ECD0CD/F6A56EADCE51122943AA74090440618BA8D5880C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T16:28:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25855_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleDetail\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25855_00_00438917DFBC3CAA1BF3250FC69DD6F8CCF93D772C/5D6F001D727ABD1EFE1A26057BC8E3DCDB3A31AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T02:23:59Z\"}], \"nextOffset\": 1050, \"previousOffset\": 999, \"totalItemCount\": 1446}" } } }, @@ -1428,34 +1425,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:01 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "30505" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "31477" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:50 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19785_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Cyberpunk 2077\", \"trophyTitleDetail\": \"Trophies available in Cyberpunk 2077\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19785_00_00157A5FE9FC5D51F15199BF5555DBA323DF24700A/A9C15439E4D4B02C86C0412D2FBA0D1394CE7C9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 17, \"gold\": 1, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-21T19:08:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24476_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dragon Break Classic\", \"trophyTitleDetail\": \"Trophy set of Dragon Break Classic.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24476_00_00BA6CC3FDCBE95CD93C4810F7E34FA6DB5B1179E5/17D6B85E57E9A7EE89AE37F25F49FB5D9DF584F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-05-05T17:01:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15386_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Assassin's Creed\\u00ae III Remastered\", \"trophyTitleDetail\": \"Assassin's Creed\\u00ae III Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15386_00_0064D75EBEAF65A7023B745B7AD7E2BA9558E1BDA4/4E0DB86EC39C09F26B69F290639B1A4A789AA053.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 7, \"gold\": 1, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-05-02T22:11:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22699_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus\", \"trophyTitleDetail\": \"Sakura Succubus\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22699_00_00E19BAE840D708C5272C4FB4C33B32ACF4E75F4DD/B2900F528C8D7A1141C83E437895F0507C8515A6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-30T04:19:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22592_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Legends of Talia: Arcadia\", \"trophyTitleDetail\": \"Legends of Talia: Arcadia\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22592_00_0096779FC6521B12AA86F7E1DE95D4C8CCD8EB112F/3606FE456533F1CEA72EFB63EB790BE6E4DC9973.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-30T00:18:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11203_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Tricky Towers\", \"trophyTitleDetail\": \"Tricky Towers Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11203_00_00831FADC9D507B3B4470ADD1E5A3DA9341D3D2DE1/E8BD2759DAF8D84289DB438AD8738BF238695D11.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 14, \"silver\": 9, \"gold\": 6, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-24T18:41:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16741_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"World War Z\", \"trophyTitleDetail\": \"Trophy set for World War Z\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16741_00_0013CA5609332275F74E6B9F27A4CDE2C90A808741/647B54BCA668FBD7C78C777ABCCF2CBD0794EFE2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-11T14:49:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Baseball - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24006_00_00F8EAA9BD88DC8A87439966D31945ED86E0ED8568/01FF83C3834AD3EA862D6E271415851A70E3B58A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-07T21:29:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24217_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Football - Breakthrough Gaming Arcade Trophies\", \"trophyTitleDetail\": \"Football - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24217_00_00BEFD0BDFF9DBE1139BB528F66D5C13D5686CB7FF/E9CFD568241AD1868296A5218F0A8876EA385F51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-04T19:26:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19366_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Football Game\", \"trophyTitleDetail\": \"Football Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19366_00_00A10AE39FE00707ACB3B72D04918BE940112A65C9/08DADB87ADCDBF929A82911F074FCA16CA660104.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 22, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-06T16:27:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22331_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dungeons & Bombs\", \"trophyTitleDetail\": \"Dungeons & Bombs\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22331_00_000FCB816DA6051D2965DB92321F85141579417D22/AB62617B906FEC6B2798634F1931F6C0C531D4EC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-05T22:28:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18310_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Paradox Soul\", \"trophyTitleDetail\": \"Paradox Soul\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18310_00_002CDB3D56B3FAE0928A50B13D15B58C41A42054F2/8E2BEE41615E5793EE5BC17F31C4A130B2A7B332.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-05T01:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22904_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Loot Hero DX\", \"trophyTitleDetail\": \"Loot Hero DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22904_00_00C3D076A445E643637AB15FC099FA49F10722089E/811A934A495147CDD0FFBD672A0E33F996B5FDE2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-04T14:05:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sinuca Attack\", \"trophyTitleDetail\": \"Sinuca Attack\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22105_00_00D25643D5CEBD95CD66EEA5FB144BF9289F0820A5/DE2D8F05E0EA292FFB7ACA26B8E8B8A6E4FFD21E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-04T10:13:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sinuca Attack\", \"trophyTitleDetail\": \"Sinuca Attack\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22106_00_0003EC92D8DEE7C7153B8CF7E87286F53DC7AE16D0/89EA3B45D61BF8551B90959669A989B2B52645BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-20T17:56:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19405_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Little Nightmares II\", \"trophyTitleDetail\": \"Little Nightmares II\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19405_00_00E4676510B6A82AB55FDC4983922C1332C1AD2D2B/D84EE2CFFE8C2F9E241E1561BF991BAFBAC8FE73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 16, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-18T19:18:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06221_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleDetail\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06221_00_00943B71B23B3A5D98EB6CA419684E0F0A07FA8707/A3E52C438318CCEC6346EB2A31DBF31164A95A25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-10T20:51:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23451_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Valentine Candy Break\", \"trophyTitleDetail\": \"Trophy set of Valentine Candy Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23451_00_00C244D161F606311FC3FDD8EE212B45C68F1039D4/245714D2E9BE0B86875F89A0544FF56F91C61E49.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-09T14:02:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23287_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Space Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23287_00_00A97A6AF91D53286187C69CF2A0449A4DF3431F83/D1EFAD525D6EE62CC6A8999053F4476550278A13.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-08T23:34:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23295_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Space Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23295_00_000106263DD8052BFD816B204ED91B63DD5A486447/677FB655E4BC193EFD44689BD5F07DCC7D78F5B4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-08T20:52:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18309_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Paradox Soul\", \"trophyTitleDetail\": \"Paradox Soul\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18309_00_0077023CDFC663FB62A5A6CB8D07F8915323C7BD23/5C5B82CE80193EDB4752BA9B01668AAF9BE3A8A5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-07T21:19:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18248_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"RESIDENT EVIL 3\", \"trophyTitleDetail\": \"RESIDENT EVIL 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18248_00_009A0106FD4DF638239D5BB0C3AA208FEEFA624963/2E4BB81396B3272EC614FA0EA1FE58CE6B29353D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-05T20:36:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07942_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Ratchet & Clank\\u2122\", \"trophyTitleDetail\": \"Trophy set for Ratchet & Clank\\u2122.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07942_00_006F781DB9EE3B1A96EB9472B006DA21899A916D8F/0A529D9F4EA9446B6946C0CDC64C5DD853DC79D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 30, \"silver\": 14, \"gold\": 2, \"platinum\": 1}, \"progress\": 25, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-31T20:52:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23103_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break\", \"trophyTitleDetail\": \"Trophy set of Space Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23103_00_0027C7F0C9879CD89BC15F85F5061F10B070ABCD05/FED19A2196537D13C441BE9201712D79346F6610.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-27T22:17:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23104_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break\", \"trophyTitleDetail\": \"Trophy set of Space Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23104_00_0070C5EFFDCBE532E697F69EE61705DCBDCA32743A/D5CAF515FBC50441A8D88D8E70846F54DF76385A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-24T00:34:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19609_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"The Dark Pictures Anthology: Little Hope\", \"trophyTitleDetail\": \"The trophy set of The Dark Pictures Anthology: Little Hope\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19609_00_009580D2C1ECEC9EFC10C714EF4929F8B50EDE1C72/9D8BE92704B5B2BCF9BF6EC1B32AB7256211E198.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 17, \"silver\": 7, \"gold\": 6, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-16T18:49:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22906_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Loot Hero DX\", \"trophyTitleDetail\": \"Loot Hero DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22906_00_00135CC510FFAC6BAD8C38C9D70BA46E77A09650A1/35E12526EE4F506A8BA762358C13FD84F6B9C3E8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-15T22:10:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23013_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Break\", \"trophyTitleDetail\": \"Trophy set of Christmas Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23013_00_00E0E8BA3CB56F87408852FA0ED2620B537EFBD668/88BB84CEEB3E49F7439460B8676AA4BC6A31EA92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-06T15:59:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16358_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle Edge\", \"trophyTitleDetail\": \"Energy Cycle Edge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16358_00_004C14187792C400D5C7FB1B31ADB723E40E1A0A3F/99F325DF567CF2313199EDC2E92EC3E9A098FCB0.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-05T22:10:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22464_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Donut Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Donut Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22464_00_00E20B99A26487549236AD1560B9836D031B9CA90A/E2A08FD69929225D23F4E37CE62DD683C8910209.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-05T04:09:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11556_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Horizon Zero Dawn\", \"trophyTitleDetail\": \"Horizon Zero Dawn trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11556_00_005122C6D8E4545DAC325B8E748CBE7180ED11F3E7/F24674E946809EB0A2E214DB490149851BCEC0EC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 65, \"silver\": 11, \"gold\": 2, \"platinum\": 1}, \"progress\": 70, \"earnedTrophies\": {\"bronze\": 48, \"silver\": 5, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-04T20:25:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16560_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crash\\u2122 Team Racing Nitro-Fueled\", \"trophyTitleDetail\": \"Crash\\u2122 Team Racing Nitro-Fueled Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16560_00_0007A02C97951137CEE4D2A048FD1C00709B5FB59B/81DBB28E72619BBDF7525F720738EC18E2E1DDFD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 35, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-03T17:32:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19733_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bucket Knight\", \"trophyTitleDetail\": \"Bucket Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19733_00_0005525E4330D4EFF8BFAF4C4D4C40A816E164FD03/16EAD282427B8A4814F980322B98A7713C19B8E6.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-03T01:25:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19731_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Explosive Jake\", \"trophyTitleDetail\": \"Explosive Jake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19731_00_00196B368BAE0700747D592E353ADCBCAABE053455/B1FFBC6F0733599C691D7EA6C42C0A0026FA4A40.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-02T14:35:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13826_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Batman: The Enemy Within\", \"trophyTitleDetail\": \"Batman: The Enemy Within Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13826_00_00AA69BD96EE40A1CAE1DD61A6563B03CE73B4DAB7/B2D7F50863D43DE7882C025D4ECA17CC421F7E69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-31T11:53:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13529_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Balance\", \"trophyTitleDetail\": \"Energy Balance\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13529_00_00AA644176798FBF5C6355007E71117B88659DC9BC/2E9F88C9013BF405699FD75F7CD800B9B717408B.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-23T12:43:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17937_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Word Wheel by POWGI\", \"trophyTitleDetail\": \"The trophy set of Word Wheel by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17937_00_00EF034F1A6A783059252151094988D22B9E7F1871/F3DC00A312B9B176EB088F4EC0BCAB7AAB0D0ACE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-20T21:35:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16566_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Darksiders III\", \"trophyTitleDetail\": \"Darksiders III\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16566_00_0017175A8558DDA522802B2968454DB124FD827385/88DA2799B0B379B0A4C2BBDEDF0855DEF75B4BFE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 36, \"silver\": 24, \"gold\": 3, \"platinum\": 1}, \"progress\": 35, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 5, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-19T15:37:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22192_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleDetail\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22192_00_00C0CC0EE160A169E7E198005E8F81D992114FD5E0/2F50F89F5C5ED593B93F31215713EB415CF3CE25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-17T20:50:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22193_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleDetail\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22193_00_002F49F140890DC1E05E0224D77A7F19332B45C8C3/BF70001A6DFA6680162920A2EF8A84669042D318.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-17T13:29:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18538_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Wiloo Demake\", \"trophyTitleDetail\": \"Super Wiloo Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18538_00_0023518EE9359B7450F3AA309B13A44B1B5DBA16A3/527C4DC75D78826CF1FEC9E73227579273D5FCFA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-15T18:22:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22690_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Halloween Candy Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Halloween Candy Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22690_00_00856652DC0DEB6ED39260FA055CE4C286F9D63121/58126C76EB6DF9F5BBDA1F3ADE7BFF259AE06D67.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-11T22:30:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22268_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Autumn's Journey\", \"trophyTitleDetail\": \"Autumn's Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22268_00_002DAE73F9B31F8AA529C11319684F72E2C6E34354/ACB4EFF7232651D230622D652ED65CCA0DF6644E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-11T22:00:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22727_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Halloween Candy Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Halloween Candy Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22727_00_0046B250D7B046E4692113609EF85B417407C0EC5B/1F9B1DC735B0B486DC58A65A15263DD7E1CC941B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-10T11:16:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22269_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Autumn's Journey\", \"trophyTitleDetail\": \"Autumn's Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22269_00_00AF8B97B37132AC0BC7BC36F7C2B9DECA463208D6/5A7723AD80E1ED4B34F253132AE5AD4FBBC1153D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-08T17:38:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22627_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Christmas Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22627_00_00E0FF2E056BFB4624C2EEF4AC8F7A3C7CB6FF2C09/9293B560CEB6925EA5DFD9EDFFF6BBE27C0B3EE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-01T15:38:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22415_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Chickens On The Road\", \"trophyTitleDetail\": \"Trophy set for Chickens On The Road\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22415_00_008C6600740D1C242A9822468465B5CDA3ECD37254/73694EF5C46178EA2C88AF5A72E4DDF086D0C183.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-01T12:39:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22416_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Chickens On The Road\", \"trophyTitleDetail\": \"Trophy set for Chickens On The Road\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22416_00_003213FB86C3723F11E2811A43DF54D4429B58E31C/8EDB4FA34AD550D96B31AACCFB8C0F1E1ED50C82.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-01T11:55:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22196_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Snake Boat: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the trophy set for Snake Boat: Otterrific Arcade.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22196_00_00C5E573078ED1B47AA0991545489A358DC83FD7C2/839AD501F7BC2791F8010A0B40F32AF5E0287E8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-28T13:44:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22628_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Christmas Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22628_00_007850EE6102CBF4B3C2BD7581B3EBDA9766C56AC5/C3A20A2AC031E1A28A17F14D6F0338992C1FAC81.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-28T10:54:44Z\"}], \"nextOffset\": 1100, \"previousOffset\": 1049, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25854_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25854_00/bb6f0c44-0cfd-425b-bad1-18f185e2596b.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T02:16:39Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25857_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25857_00/c12a4cc5-f0de-4add-ad68-86bebaeaf0e5.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T01:51:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25856_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Takorita Meets Fries\", \"trophyTitleDetail\": \"Takorita Meets Fries\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25856_00_004EBB45E934236FC37FFD60CD2AEE265809FCE69D/C4E30D5B77A027F49D5FA221E88B2391DC47C869.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T01:44:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR27290_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleDetail\": \"The pig D\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR27290_00_007AD42F8D0144D976D09359206732FBF2D036482D/294DD67C49CCE0A3253CD53C2433A505467C1EE2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:47:20Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR27291_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The pig D\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR27291_00/bd7a676c-278b-497e-9f39-0bc36acc609f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:43:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26232_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26232_00_00A6D733FBD20A8472BD117400DD356C00574453D0/2EBECC3072A73D099D6BAAEE9F6F80B4580F4ADF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:29:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26233_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26233_00_009D30976AA435723C6370594E15825B37AC858FF1/3530910E8D3C5CBF97283D4FA6F893E4BAC5CC04.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-22T00:17:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25567_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleDetail\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25567_00_00C899CB42236FCEC7782D3B5E030927E27CFABC86/58A6B2483511DF1F27B78124DE79BF3092F1C054.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T22:21:26Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25568_00/6883291a-215c-4877-8833-a0236eadf99c.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T22:10:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25990_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Bowling - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25990_00_0073B4321E244D33BE9CABFEAB15D7B9C5C2694B1D/9820D5EF2D9E0647966AA01D298EDD55AF7A55B2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T21:34:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26230_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26230_00_00CF9A0AD6ABD793F8BE67D6C76CE0C23FE7BD0322/E56E32E4A0017A63DF6030BEA6DC59AE563E92B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-20T21:16:35Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR20842_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ratchet & Clank: Rift Apart\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR20842_00/693b98ed-1b2b-4111-abcd-39ad740aa941.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 36, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 36, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T22:29:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleDetail\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25569_00_00DE4B5D69599213BAE188A780594BCD3F8A15F5CC/6CCB27F0884732A6E60D4E42671276DC31BD0514.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T20:24:19Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25570_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Marauder Chronicles: Curse Over Valdria\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25570_00/84ceae93-fd15-4898-b823-7fb0d3097450.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T20:12:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25991_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Bowling - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25991_00_002E6F0971192B9A9BC3072FD3A9F09AF562E05EF8/DED52FD5D3FF14DDAB0854BC5139D8D82AE1C804.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T18:52:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26231_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Mark Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26231_00_0079CB65E04451C15D64605AF48FEE8D647218F71A/5258D626BC8EDA913EEF53B29D71571C31209DD6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-16T18:26:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24274_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleDetail\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24274_00_0096BE48F66DF2E7282623274052A24A5FC41209CB/DA4D3B0B67683BA8B74AAF5CD1AE4EFE7A180280.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-15T20:52:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR25908_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Pretty Girls Panic! PLUS\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR25908_00/45df0b81-91c5-4e26-a5ae-1e44a3eba1f8.PNG\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 13, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-15T20:20:58Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22813_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22813_00/d2cb86a0-4292-4d9f-a6d8-ba8eba5b0e17.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T23:17:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23949_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 2\", \"trophyTitleDetail\": \"Sakura Succubus 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23949_00_00038E972F9B9E3F18B14D009E279BE392437E9077/453B29E33E2C5FCB832AB652ECB76BEBFD42FBF5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T01:37:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23951_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus 2\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23951_00/8ce27c2b-2044-463f-8b4d-0657d0d7ebcb.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T01:33:25Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR22814_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR22814_00/b5c427ea-435a-4486-a32c-cd0eb6f1deb4.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-06T01:08:05Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23337_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Legends of Talia: Arcadia\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23337_00/24f881d7-90ec-4338-a397-c79eec32ec56.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-05T02:43:36Z\"}, {\"npServiceName\": \"trophy2\", \"npCommunicationId\": \"NPWR23334_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus\", \"trophyTitleIconUrl\": \"https://psnobj.prod.dl.playstation.net/psnobj/NPWR23334_00/4ec83c29-15a6-4b50-bc66-e8425bd4c93f.png\", \"trophyTitlePlatform\": \"PS5\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-11-04T21:16:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26994_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 11, Level 12, and Level 13)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 11, Level 12, and Level 13) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26994_00_0079053930E28AB563D81BF79B3E52BDB75A755F58/13C24E4A87F680E1FD964D37E975183AFECF761E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-24T15:19:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15895_00\", \"trophySetVersion\": \"01.10\", \"trophyTitleName\": \"Tom Clancy\\u2019s The Division\\u00ae2\", \"trophyTitleDetail\": \"Tom Clancy\\u2019s The Division\\u00ae2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15895_00_006A250E088FDBA0DBBBF7E1289A630DDD59E23B3B/1171667E4233C7C2972D811CD7783B47A5FE4D62.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 7, \"definedTrophies\": {\"bronze\": 46, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 37, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-22T22:24:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18434_00\", \"trophySetVersion\": \"01.08\", \"trophyTitleName\": \"Far Cry\\u00ae 6\", \"trophyTitleDetail\": \"Far Cry\\u00ae 6 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18434_00_008C93E3E408BD5116DE04ED0A4083FF12797AD437/7B321575B2E6A0D9F0D7270B408B55F89AC9B2FA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 7, \"definedTrophies\": {\"bronze\": 81, \"silver\": 16, \"gold\": 2, \"platinum\": 1}, \"progress\": 36, \"earnedTrophies\": {\"bronze\": 37, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-21T01:01:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 8, Level 9, and Level 10)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 8, Level 9, and Level 10) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26896_00_001D01CA5D473375593A940E8E617448F05F8041E9/FF7D804E11ED27CAA23BF5692D6D74712C17DB1E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-17T16:37:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26895_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 8, Level 9, and Level 10)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 8, Level 9, and Level 10) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26895_00_00C2CB5C4F10877535462BAB1630BA073C550581D1/08D618B038EE6DCC819C4A2B553306DCA56AA5D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-17T16:29:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball Bout: Otterrific Arcade\", \"trophyTitleDetail\": \"The otterrific trophy set for Baseball Bout: Otterrific Arcade!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25921_00_007FD686985BD37D6D0B0273DDACF61DF4BE06F94B/100FB9B18C36B3D78122B23ABACD7974272C406D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-13T02:40:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26765_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 5, Level 6, and Level 7)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 5, Level 6, and Level 7) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26765_00_00DBB58B8751280932B615C43C71A8BD5AC5A3972F/754A78066B7F18DC19E567538F9BCB16B0A9E6BA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-13T00:18:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26764_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 5, Level 6, and Level 7)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 5, Level 6, and Level 7) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26764_00_0044E8EA162604E56D80DA8F1913C1FC78BA5319CD/13DD4624705DA83EC73294F38E3489B7740CF25E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-13T00:05:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16062_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sigi - A Fart for Melusina\", \"trophyTitleDetail\": \"Sigi - A Fart for Melusina\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16062_00_00F76FA4570B14EF760B94A75611CD34B2A6A1FF45/3EA7765CED9B724C677D5809A0D5958AC124B971.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-09T23:00:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25088_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"eFootball\\u2122\", \"trophyTitleDetail\": \"eFootball\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25088_00_006841AC0C54A402B362ABB17C77C0881412A9FC69/2B31B69F4A987A544969399583A67C4A144290B0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-03T21:56:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26619_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3 and Level 4)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3 and Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26619_00_005FCF25D1C8E7D4F99F7FE11D9231FACB4B644B6A/5C17C3FD39C71928766993C4C961E4B7157F418B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-03T12:13:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26618_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 3 and Level 4)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 3 and Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26618_00_00B63AFC0328271916BA9FAB234082573291E10885/0F22C3BE2714D7204CE6B672885BA99BA5360B2D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-10-03T11:45:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26555_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 1 and Level 2)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 1 and Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26555_00_00A946E7E16CCE47699E2E438D59419096949D1216/8487BD10B0AE6DB22A8838DAFD4F6657F909EA61.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-29T00:30:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26554_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zippy the Circle (Level 1 and Level 2)\", \"trophyTitleDetail\": \"Zippy the Circle (Level 1 and Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26554_00_00E70D521F3B0C720833B286E85FA90B91B41D032B/240E9C159FCC5E1563E5F41BE744E00427625D36.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-28T13:40:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26228_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 5)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 5) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26228_00_009F9DA19693D8B1A0B38DCA4B9898F2D08AA00506/C01D8B29D2EC7A25A5B9623C3D16AEA43EC6CDB8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-12T22:48:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26229_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 5)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 5) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26229_00_00DA5AF2CE50207845D3DD4E1ECEAF5AB8D3A4064B/3A52123563CB755A652EBFA21AC6F08D0EF0067A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-12T22:40:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08268_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"God of War III Remastered\", \"trophyTitleDetail\": \"The God of War III Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08268_00_007C6460B26BBD12317E647A8F311FBF91DD928D4A/8E57416AFC918847A599DD0F7097FE4F64D1A552.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 11, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-06T04:28:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26227_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 4)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26227_00_00ECE406ED8445828385190377C0E9D85F2A737492/CBEE25ED8238B75C5B7A291053FC87959671DA7E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-05T14:48:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26226_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 4)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 4) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26226_00_00AD8E20336EECF538E1E9CD7EAC80600072205E8D/59697FFCCC4EC4D93CE5C5D5DD85CC44D4B10E6E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-09-05T14:41:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26114_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 3)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 3) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26114_00_00E7BA981A0C0300E03FDB83526D2DDB65E3A68722/8B5772801148FEB06D16519811C7834192723BF0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-29T17:49:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR26113_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 3)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 3) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR26113_00_00E54454EC320A076F42FF751FA9B894EAD506076F/287B477F0F4FE00ADD022F70114988A4306DBFC2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-29T17:42:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25728_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Intervention\", \"trophyTitleDetail\": \"Trophy set for Space Intervention\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25728_00_00B5349FF44ED541137C5C7ED52302ADCD1A190D72/AD723C9305FA4896D678C401CF8CFE2A87EC7CC3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-23T11:57:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25988_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 2)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25988_00_00E5FCC52C9001DAA1395E1AD755928D4CE15D9CE5/F3FD963DD5776C3260EC0B23718B440472CD0B6C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-22T09:52:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25989_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 2)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 2) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25989_00_0023A768D0ECA790E481984314592219FE981CD617/DBA2420D247CBC46EA2F23E91B2367C24C1E5481.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-22T09:36:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09798_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Uncharted: Drake\\u2019s Fortune\\u2122 Remastered\", \"trophyTitleDetail\": \"Uncharted: Drake\\u2019s Fortune\\u2122 Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09798_00_0004C451BA0D520B43DBB2C20D0EB0B47AEEB9FEAF/B4203E044C57963E48475359B3DF9E0C5E3885FC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 41, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 30, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-21T20:18:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25919_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25919_00_0083B6CF347FAE19582E6B5DFC55D3F529599DBB87/C691098FD087C7CA844B73247968026C3A1F5922.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-19T03:56:57Z\"}], \"nextOffset\": 1100, \"previousOffset\": 1049, \"totalItemCount\": 1446}" } } }, @@ -1491,34 +1488,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:01 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "30339" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "33171" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:51 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"DRAGON BALL Z: KAKAROT\", \"trophyTitleDetail\": \"Trophies for DRAGON BALL Z: KAKAROT.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17396_00_003BB179BFA9DAABB1B540437D70B48E38DAAEDDBF/729C6EC744FEACC3C66DF0A821E907CB634BFA21.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-26T16:23:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19232_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Marvel's Spider-Man: Miles Morales\", \"trophyTitleDetail\": \"Trophy set for Marvel's Spider-Man: Miles Morales\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19232_00_009C88341624B0983231370CB7BB64811ED96AD2B3/1A3B4C3C43BA6A179ED67F4AA4E8EBD347196D9A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-24T14:20:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22204_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo 2\", \"trophyTitleDetail\": \"The stupefying, blindsighitng and really sweet trophies of one Mayo too.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22204_00_009165DC28908D3984AE48A1976A11E5B14F2A594E/43C2F62804F43E3F29718ADCFD1478FE354D4BA2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-17T13:37:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17517_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Weekend Mode\", \"trophyTitleDetail\": \"Super Weekend Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17517_00_00C773B4D5837FE14CCDE26A309F83E84BD89B4432/7C567639FEB5F456BD402348CA741A439F6945B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-17T13:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18319_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hoggy2\", \"trophyTitleDetail\": \"Hoggy2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18319_00_00274A55A87C3AFDB1378C9927276F38B71E416A0C/CF472CA7BF80FFC28F5D29C48A635A1CC02E8A9F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-16T16:22:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17214_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets\", \"trophyTitleDetail\": \"Bouncy Bullets\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17214_00_0062F82CA1B2D1584D786EE0FE6A293A1F7A5F0700/9350C65FA94ADBEAE62DDCBD809A434181A4849F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-16T12:03:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16685_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Watch Dogs\\u00ae: Legion\", \"trophyTitleDetail\": \"Trophy set for Watch Dogs\\u00ae: Legion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16685_00_00294E3876238E443D89DD0FAACFB9E512A36E63AF/4B293C0FB91CDED30CFDBD7CE87C43E442B47A3F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 25, \"silver\": 22, \"gold\": 2, \"platinum\": 1}, \"progress\": 83, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 19, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-15T22:24:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mafia II: Definitive Edition\", \"trophyTitleDetail\": \"Mafia II: Definitive Edition Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19105_00_00C23C1C953B85779AD89D6B936DD787CE160BD959/4E45E5503B06F04EA533D8DD4A9733DABF01EE38.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 51, \"silver\": 14, \"gold\": 2, \"platinum\": 1}, \"progress\": 58, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 8, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-30T07:57:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18519_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ben 10: Power Trip\", \"trophyTitleDetail\": \"Ben 10: Power Trip\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18519_00_009E69C7453A5393C99B13AB7B16CE9ED9AA3290D1/1C7E0C928204EEF60BA062F57C94AA112AB7004E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 9, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 8, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-27T00:33:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17374_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"eFootball PES 2020\", \"trophyTitleDetail\": \"eFootball PES 2020\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17374_00_009E1BA22FC5FC8B044DCA5D9592766293367FFB45/02DF1D54807653564094866A1341CA9523252BC5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 41, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 33, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-24T08:44:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11874_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"MARVEL VS. CAPCOM: INFINITE\", \"trophyTitleDetail\": \"MARVEL VS. CAPCOM: INFINITE Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11874_00_0037606859525DF1AB207F0915277E09623FC1A685/F8F628054814C987A03F3A3AE109BAC605FE2B38.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-23T04:23:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ben 10\", \"trophyTitleDetail\": \"Trophy set for Ben 10\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14005_00_00441217CD76D01E787A75010B0D5FC5B4B82322DA/C0807D031908980FEEC8DD36C3D35CCFEAE88829.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 87, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 10, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-21T03:36:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20098_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crypto by POWGI\", \"trophyTitleDetail\": \"The trophy set of Crypto by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20098_00_007F13C0784F7EA141FC0E00216A65C4EC42E2FE66/409547A3BC7144868C73E8D76566571FA0EC6B8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-18T22:18:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17217_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets\", \"trophyTitleDetail\": \"Bouncy Bullets\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17217_00_003ABAB472CBCBAB5C972EC60FDE0B101ABF679400/CAEC3C8C8327A35706491C834771E04502B70BAE.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-18T21:23:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17215_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets\", \"trophyTitleDetail\": \"Bouncy Bullets\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17215_00_00750B313C5C98C1564F452B41942DFBA7AC250802/724A636768110EE9C27F14E8A9692364CA549A26.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-18T07:01:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20100_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crypto by POWGI\", \"trophyTitleDetail\": \"The trophy set of Crypto by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20100_00_007437A3A5E8BDE6F6BEBD8DEC511362575B51C99B/84BA72FA7C4930168D5AF4135E28F18FF14DCF57.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-17T21:46:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20099_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crypto by POWGI\", \"trophyTitleDetail\": \"The trophy set of Crypto by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20099_00_001E49699B71E528E8CDFCF13295F151DA55EEA19A/56EC8F85796D8ED55EE446B74A8EE79ACA0BFE8C.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-17T20:20:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20879_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mafia: Definitive Edition\", \"trophyTitleDetail\": \"Mafia: Definitive Edition Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20879_00_008F4E8AE21A9F352A940C64BB2570995390C5A999/F7F1FBD6BAD35744975B1CFF72AA892ACE853F05.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 33, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 9, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-16T21:11:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Halloween Candy Break\", \"trophyTitleDetail\": \"Trophy set of Halloween Candy Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22174_00_00897CC53D6C9CD0C62185DA5731C47C12DE7C9E53/0C883653EB093AB517A2FC815032EABF88B2B412.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-15T07:19:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22084_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Donut Break\", \"trophyTitleDetail\": \"Trophy set of Donut Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22084_00_009117A4A72692DE8D6B70F62003ED9C0F860F3940/9381405F6CA41C3FC31AC7B38340A67168A3B385.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-13T23:17:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08934_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Assassin's Creed\\u00ae Syndicate\", \"trophyTitleDetail\": \"Trophy set for Assassin's Creed\\u00ae Syndicate\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08934_00_00E288AF3E17A5F8897811AA48E3DBE84491F57F4E/C39198C362F2E6A41CD3E5D274199D5F6E5179A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 45, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 45, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 3, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-13T21:15:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17911_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Word Wheel by POWGI\", \"trophyTitleDetail\": \"The trophy set of Word Wheel by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17911_00_008F083F14C606AD1187C8C8760B4828CF2078F382/F5F6ECC1BD27CA24F89B779B8D223981CBE669EF.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-12T03:44:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16793_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fantasy Strike\", \"trophyTitleDetail\": \"All trophies in Fantasy Strike\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16793_00_009B0D365D424D75C3E19EBA6927D9C966DE105BEE/A083C85A8082E2EC91B371A9660B54CC6B2C8D91.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 22, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 75, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 17, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-08T10:52:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18316_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just Ignore Them\", \"trophyTitleDetail\": \"Just Ignore Them\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18316_00_00522074DCB59D719D3059F184F5086878AB8D1763/9D8AF3600C94CCF16E4D1D4891D516A660BDAB04.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 7, \"gold\": 6, \"platinum\": 1}, \"progress\": 60, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-07T23:04:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20801_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jisei\", \"trophyTitleDetail\": \"Jisei\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20801_00_00587046D0618AA5EF40201D37F565AEDB8F67E508/73F00D7C91001076E64F21CED95CE9D095C6D890.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-06T22:45:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"112th Seed\", \"trophyTitleDetail\": \"112th Seed\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21105_00_00A4740215B6B91D106804B1A22BF974C1C48E6CAB/67081A03EE2472B36A6B23FE7517F4309931BD3E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-06T22:10:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17909_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Word Wheel by POWGI\", \"trophyTitleDetail\": \"The trophy set of Word Wheel by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17909_00_00723253A8F5DB85D638F3C5B700C637D08875D8AE/7CCA7A9DCC836B140540696BF955926B9F759AA6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-06T20:38:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jack N' Jill DX\", \"trophyTitleDetail\": \"Jack N' Jill DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16077_00_009D55B7B79B090E54333B8D829F68AF4F91F05FBA/B28C4235E8D1EAA674520E8889DE70C66E05A36A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T17:11:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14715_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleDetail\": \"The trophy set of LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14715_00_00D7A91A085C3ABD69E5D3D9B6C447D7F6B92ED280/6AA3D03E06BAB5DC36642C2D22C8791383BCC5B0.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T12:03:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20590_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Swordbreaker The Game\", \"trophyTitleDetail\": \"Swordbreaker The Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20590_00_00C6486AB9498B414B3644EF14E6A2A976B24F1E8D/6AB79BCB0213F4B1AF60A011931D0A833EFDD58B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T09:18:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20604_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Swordbreaker The Game\", \"trophyTitleDetail\": \"Swordbreaker The Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20604_00_00809ADA3EAA70810B075DDDF0D32AA67E429A4E83/A6BAD6704017FEB69F0CD738681638CF48FA7219.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T04:26:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20591_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Swordbreaker The Game\", \"trophyTitleDetail\": \"Swordbreaker The Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20591_00_0071711DA509F2A120378EB15BC830CA534AD94328/E04B6798951E20EFF516EA0698A70B74B8E38E17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-03T18:09:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15120_00\", \"trophySetVersion\": \"01.36\", \"trophyTitleName\": \"Ghost of Tsushima\", \"trophyTitleDetail\": \"Trophy set for Ghost of Tsushima\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15120_00_00736F40BFE5A427C57A238478A141FABB81ABA3C7/F7780A7B9141F2A1D0B68E578787D962D7F69C31.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 59, \"silver\": 13, \"gold\": 4, \"platinum\": 1}, \"progress\": 64, \"earnedTrophies\": {\"bronze\": 40, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-03T16:45:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19063_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just a Phrase by POWGI\", \"trophyTitleDetail\": \"The trophy set of Just a Phrase by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19063_00_0000C586B982D0821399A5A2FC763DA06B72941479/65E6F49B016E01CC8413C13840B5705F1A41D10B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-25T02:38:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21151_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sushi Break\", \"trophyTitleDetail\": \"Trophy set of Sushi Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21151_00_001C1E54531F8194540FCB6A4E4780D93FB110573A/55BC52A6E8A67674F18F394DDB462D963A80D530.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-25T02:09:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20671_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Strawberry Vinegar\", \"trophyTitleDetail\": \"Strawberry Vinegar\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20671_00_00CDD94FE765F49E34D76D4A6F33A3684A20AF866F/CA72DAFC98BA49DC4218113E5928F121D6BDE648.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-23T03:15:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19062_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just a Phrase by POWGI\", \"trophyTitleDetail\": \"The trophy set of Just a Phrase by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19062_00_00A6A5AA9A10D682FEEABBE791248D8B0DA62C412D/7A2378CFABB5187B4CE7C7AD4264B826BE160509.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-22T02:26:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19065_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just a Phrase by POWGI\", \"trophyTitleDetail\": \"The trophy set of Just a Phrase by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19065_00_001D31FD46F4D30617D69E3A9FFC3B48C2F47E776E/C8C9EF570C5764693C1D93BD1A1E3E8BE95372E2.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-21T21:32:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17504_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tower of Dragonasia\", \"trophyTitleDetail\": \"Trophies for Tower of Dragonasia.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17504_00_00449BB1E39B263D33BFA861F2F7956C60FA05BDAA/366AEAE63CCF2CF1159D47C4CDE2C18D68175058.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 52, \"silver\": 6, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 52, \"silver\": 6, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-21T06:17:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21201_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tamiku\", \"trophyTitleDetail\": \"Tamiku\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21201_00_00B6974E75F1D06F4BFE8096D3509012C1BE672A24/AF52A8AC980EBE6D305BB417187ACEC2F3C40C8F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-21T04:09:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16728_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"PUBG: BATTLEGROUNDS\", \"trophyTitleDetail\": \"PUBG: BATTLEGROUNDS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16728_00_00A5683B46A9D79E3EB4400A9488120FE1720C29A7/DB3F01C5DD2E2D6BF05386A93A055DD3BDF1B700.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 5, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-20T16:31:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10746_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Gem Smashers\\u2122\", \"trophyTitleDetail\": \"Trophy Set for Gem Smashers\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10746_00_0041F11DE2718BB8065092DA0E3B3BDE74E397D4B6/3B1A42F83DE0C4C40ED1B24026196039890EC851.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-17T20:31:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17018_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"F1\\u00ae 2019 Trophies\", \"trophyTitleDetail\": \"F1\\u00ae 2019 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17018_00_00ECB8962A33B430ADC1CFE8AD8C6E10E789C3036D/C80AB2C81456392F8D62690F4C4BB5106CB78667.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-17T13:46:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18663_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"AO Tennis 2\", \"trophyTitleDetail\": \"Trophies for AO Tennis 2.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18663_00_0012D1DEBE157230B80D2378D1EBD02886B1287B15/B1754D4C00BFDC3014304E4AC3D1536F80ADFA63.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 8, \"gold\": 6, \"platinum\": 1}, \"progress\": 65, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 6, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-17T03:03:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08708_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Toro Trophies\", \"trophyTitleDetail\": \"All the feats you have achieved\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08708_00_00E07795DE8A3C3F89D3D9D57EEB5113949FEE7EDC/3C8C52EC2F0F7714B602607BE61D0487C29418DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-16T14:45:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13578_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Balance\", \"trophyTitleDetail\": \"Energy Balance\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13578_00_003E30D657FFCB214AB39DA897983832BB11C07B13/709013FB1C9C609738799C855D53E68AA869A87B.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-14T13:13:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"112th Seed\", \"trophyTitleDetail\": \"112th Seed\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21106_00_00C523A9589D4D2B846C14092F8B22DFC70BFE7820/3FD0AC1055BA39E94A4465939D02553358899676.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-10T00:30:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20672_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Strawberry Vinegar\", \"trophyTitleDetail\": \"Strawberry Vinegar\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20672_00_008B08527792812DF7036D3C003DD6202A4EA94DBC/B6093BF2190688407F99786D9EBCAA4831BA5DF5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-07T00:42:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12518_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"God of War\", \"trophyTitleDetail\": \"God of War\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12518_00_009C1232E900005FE409857E926767DFE9CAC7F371/CCDC60CADE4B3970C348FEFDE0094BA95C0A802F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-06T20:16:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21716_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sushi Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Sushi Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21716_00_002B9EDD0B9EDFC66840C4D5AB223FE572D8906E83/FFFC38EBDED58D9CA6E2D42F91A4858E99A9C54D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-03T21:19:58Z\"}], \"nextOffset\": 1150, \"previousOffset\": 1099, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25987_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 1)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 1) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25987_00_009FC551FB83DCEB2A286FFA5342EA4DC3B2FA82EA/793B8165D6F57D29E270F9578E55276B1686E14E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-17T20:59:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25986_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ZJ the Ball (Level 1)\", \"trophyTitleDetail\": \"ZJ the Ball (Level 1) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25986_00_003422075FDACDE74E4EB84EB1C3D9A548A670EAA3/E95204E2AE081F4320B75B7FFBDED5EF56FF8D93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-15T06:23:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Intervention\", \"trophyTitleDetail\": \"Trophy set for Space Intervention\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25730_00_004D7DD2BDF89565F8F670831051458BAA30025FF1/AD0612581454D87296BADB26B4E4F75DB582E5A9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-11T09:20:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25918_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25918_00_008CF05FB3C4869652D0FE73048183249DF0775DC5/A0EBE73891152730D52A65877B96CD0DFACA86D0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-10T22:46:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25494_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25494_00_000A203F67EB021138E83E7C5D37E3C68508A08FB2/2F4B5365566102D134ECCA626F2B5BFBD2100EA6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-10T22:22:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09304_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Darksiders II\", \"trophyTitleDetail\": \"Awakened by the End of Days, Death, the most feared of the legendary Four Horsemen embarks on a quest to redeem his brother's name. Become the terrifying force which everything fears but nothing can escape.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09304_00_003FC56A70158BC23E7C5A7B8B97989C4AAF7E1C8B/56BC33B67701827A9F96643A7D67E18ED7F2F2FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 40, \"silver\": 6, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-10T19:06:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16416_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ice Age: Scrat's Nutty Adventure\", \"trophyTitleDetail\": \"Ice Age: Scrat's Nutty Adventure\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16416_00_00A580EA5329A2852BE50FFA909E3E7C4570426BA8/0127FAC9400EC930F13D1434484C26E3396A0D95.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 21, \"silver\": 11, \"gold\": 4, \"platinum\": 1}, \"progress\": 67, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-09T20:53:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24209_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane 2\", \"trophyTitleDetail\": \"Trophy Set for the game Memory Lane 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24209_00_00FAAD281EACF86DB3F871577103E021F2A947E379/7CBC6E6CDEFD6EA3110F17AA842AF1B602BDBD76.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-09T19:30:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25652_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tokyo Run\", \"trophyTitleDetail\": \"Trophy set for Tokyo Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25652_00_004B8E5D94CEF4000EAD090AC149EA9EE34745B147/1AA2B67199300A4DFBBAA35BADE6FCF6C7FF9C73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-04T11:02:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25653_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tokyo Run\", \"trophyTitleDetail\": \"Trophy set for Tokyo Run\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25653_00_00EBCB0669D1E99D3CCDA274A4B2FEAEDDE85177B7/E6587ABF32761A338D3EA23F7C1C8B65CB581A4E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-04T10:44:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25802_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25802_00_007A535B41C77A8A14CEA0318535990410A95782AC/90309900D7EBABFC9998C90998383627C0089BC6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-01T19:22:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25495_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25495_00_00222968FB33C935A8AD7FE3C78E0E1FBE3DE17098/CEC9DB16DAA3AD1A62C55D8450F7FBB05813992F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-01T19:17:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25803_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Three) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25803_00_005F28C4500C16436D15D0C69BBC7034B0C44482D1/BA0A319D6C56DEC401C5E10C939B73B20EA463A4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-08-01T10:32:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20783_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"It Takes Two\", \"trophyTitleDetail\": \"It Takes Two\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20783_00_00ABCCED328035CD3A5F97C330B0048280CFD60A01/D02CDCCA464AAF4631042E4FBA957F7FB1ED6E4F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-24T13:05:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25329_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Funny Truck\", \"trophyTitleDetail\": \"Trophy set for Funny Truck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25329_00_00E357CEAAD50E217B069B442FE0749C2E757120CC/F9B1C9E65FDEF4D3AF7DBA7C15116F1855BA0E2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T21:15:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25330_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Funny Truck\", \"trophyTitleDetail\": \"Trophy set for Funny Truck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25330_00_0015921E50B9E7A1405CEC78174ED04EFA867410F7/9AEA8A091546F23B0E92C96D80247677F5AC0665.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T20:13:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Spectrewoods\", \"trophyTitleDetail\": \"spectrewoods trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25205_00_00AAD41B339F39868E771B4BF1F5910580DE5512D8/CD86269753B2B8D3519ED0B60C5E984DB8A6B823.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T18:09:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Spectrewoods\", \"trophyTitleDetail\": \"spectrewoods trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25206_00_0083ACCD353087D24CC04D3D141EB7DDF5F4943D98/5B7CCA2FA233568AD2E9EE6AB80D2C43AF2B9A8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-17T17:35:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25493_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25493_00_009005CCCF8F9D5C582EE9CAA729386C11FB2D64EC/DD3C540161FFD0F2E59B8D73D7DD0C22FD4FED01.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-12T14:18:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25492_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story Two) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25492_00_007DCC8B1268137EC5AF7D5E427032C3909EEF3FEB/38F7BB35C71C84E8D84B4CEDCD23FF4B0D8CE333.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-12T13:58:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Our Church and Halloween RPG (Story One) Trophies\", \"trophyTitleDetail\": \"Our Church and Halloween RPG (Story One) Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24544_00_0078FB169932F485521E0A9882797108B1EEB6B0F3/35C582F3AFC63CEDFEA55492E7A1FDA7ED191B37.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 8, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-12T11:55:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24208_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane 2\", \"trophyTitleDetail\": \"Trophy Set for the game Memory Lane 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24208_00_00CA23EE6A0547F1F6A9A1BA31BDB3F7452B7C71F1/8290F0FAE1FDF1AC67767F8FC158D2CB990D7F9B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-10T10:38:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24219_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space 2 - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space 2 - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24219_00_009861C6B92C7F2E935B21FCFA013C7AACDBD84F92/DD04C6B7D64E2A9E40D55CB4218A64E71AF0F30A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T22:31:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25194_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Racing - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Racing - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25194_00_004BCF4E3293DC54CEC41C099687780ECEBB0A808B/DF3AAF205F0149B573FD415B251ADA8014D03017.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T22:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24218_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Racing - Breakthrough Gaming Arcade Trophies\", \"trophyTitleDetail\": \"Racing - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24218_00_00AE57830B6EB420ABEE41916422F25E1B53AADB70/38952AEB574DCD2CDC632F99214896A386166B9D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T21:44:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25092_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25092_00_00ADE5261BE4C6AAA78D537B3DDEE03F16F01DDF24/5B86AF1C25D56131F25392889D113831A1A1F6FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T20:38:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Catch the Bowling Balls - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25091_00_00BB071FA70FA594FA43C8AA1E65AEDC74B7CCC4D6/FF637F396517499A154E20B9765206F736F14A20.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-05T20:18:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20116_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Chop is Dish\", \"trophyTitleDetail\": \"Chop is Dish\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20116_00_004756F5040FD2DCC41C992804FBFC3D190F3FB666/6DD37C508CBFB8C064E8EFE7D169E12FAEB0D84A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T22:51:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25360_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25360_00_0054F322117ADB88304845C95EB023DB1971FB7633/45838C51FD51B6BE55AABDF67356DDF556B348CF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:57:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25361_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25361_00_00D52EBD76CACC1EF705529525D9FDFE8101176629/7FCB323BE8BFD2E51E0A6D68F039A33FA5C5B0B3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:41:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25359_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Jane Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25359_00_008CD0675FF8C71E19308E90A68AEE23CD6CB8BF88/B1DED99712D710547FD63800B71A779D6C9C399B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:34:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25362_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice\", \"trophyTitleDetail\": \"Bowling (Story One) (Pammy Version) - Project: Summer Ice Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25362_00_000CE1AC6F6F1AED309443083573B8633FBDFDEC97/9A2C70E312EAE191B4BA2D70C1B7242FA16CB7DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T12:00:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25196_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25196_00_00A1814B2E8350CF7F2CEE179CE2AB5F6F0709D5A1/7C32C41B5DC364318D8C97260B397006158C8DDE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T10:21:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25195_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Get to the Top - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Get to the Top - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25195_00_00E861039ABB3319B11E6BED3FA831A7E8B0EA941A/B1DB693B4A1894C6C44835B855973E4A17C81625.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-04T09:47:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07897_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"DARK SOULS III\", \"trophyTitleDetail\": \"DARK SOULS III\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07897_00_00B1B88693A993473272413EDB83CC197E895B34D1/3F49215DC1A348E47575B58B205808F148F3D3A8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-07-03T12:48:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25003_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Track - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Track - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25003_00_00108933F995E087149E292AA34585E9A28D994D75/DC43EA490970EF7D8AD10239CE3800E3E6864630.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-29T22:59:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25002_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Track - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Track - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25002_00_000D96A71E4DA5619BAE79C7B93F4321D92ED1EB9D/6834878236CE1A9EEC2A0174818F9158A40E2F80.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-29T21:31:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20993_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alphaset by POWGI\", \"trophyTitleDetail\": \"The trophy set of Alphaset by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20993_00_00FCDCA87416C2CCF556331832FA7A3530D718575D/6BFF53A9422B5DB2270246130C9D31501CE2DE44.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-28T23:13:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24216_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Avoid Them - Breakthrough Gaming Arcade Trophies\", \"trophyTitleDetail\": \"Avoid Them - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24216_00_00405D868D9115533B764FD6D645D9C151ABA26AEF/9C44972B87F5EC31DE622AEC3F3CE1643681D7D9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-28T11:21:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25125_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25125_00_001D8C761E3EB5EE949071A1C8FFAB6DB366302805/06BEE9F54358C34D7819E8E8F18FCB5277C4A700.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:44:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25126_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Baseball (Challenge Mode Edition) - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25126_00_0092891C075D03523AF8B62DBA043065FF186CE825/261DC84B85205F89636E67E8FF8BD8661798460E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:35:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25269_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25269_00_00832694A648F2DADC7B4C61DC18CBEFC7CE3DF125/7D90BD738493661030666C7AF3057C18164A3967.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:20:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR25268_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Space - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR25268_00_0051C4586558DFB17203DA7B7D569C3C7DC00D37A8/37D47AAA2AB809E6E424B3884A70854CFD6B9283.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-27T23:10:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13387_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Battlefield\\u2122 V\", \"trophyTitleDetail\": \"Battlefield\\u2122 V Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13387_00_00D6B0FB69485C47618E10F0F190246D4D85AEC3E3/DC622399D70493741D1C282FEE3FC14327C61B25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 11, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-26T20:22:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20992_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Alphaset by POWGI\", \"trophyTitleDetail\": \"The trophy set of Alphaset by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20992_00_003F9C6499CD0DED4665E87E9250A82C768111ADF5/47C7C96E29E23EDFCF7F7878C43304BF66DEEFDE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-24T17:04:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19785_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Cyberpunk 2077\", \"trophyTitleDetail\": \"Trophies available in Cyberpunk 2077\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19785_00_00157A5FE9FC5D51F15199BF5555DBA323DF24700A/A9C15439E4D4B02C86C0412D2FBA0D1394CE7C9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 17, \"gold\": 1, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-06-21T19:08:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24476_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dragon Break Classic\", \"trophyTitleDetail\": \"Trophy set of Dragon Break Classic.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24476_00_00BA6CC3FDCBE95CD93C4810F7E34FA6DB5B1179E5/17D6B85E57E9A7EE89AE37F25F49FB5D9DF584F4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-05-05T17:01:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15386_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Assassin's Creed\\u00ae III Remastered\", \"trophyTitleDetail\": \"Assassin's Creed\\u00ae III Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15386_00_0064D75EBEAF65A7023B745B7AD7E2BA9558E1BDA4/4E0DB86EC39C09F26B69F290639B1A4A789AA053.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 7, \"gold\": 1, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-05-02T22:11:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22699_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sakura Succubus\", \"trophyTitleDetail\": \"Sakura Succubus\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22699_00_00E19BAE840D708C5272C4FB4C33B32ACF4E75F4DD/B2900F528C8D7A1141C83E437895F0507C8515A6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-30T04:19:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22592_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Legends of Talia: Arcadia\", \"trophyTitleDetail\": \"Legends of Talia: Arcadia\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22592_00_0096779FC6521B12AA86F7E1DE95D4C8CCD8EB112F/3606FE456533F1CEA72EFB63EB790BE6E4DC9973.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-30T00:18:44Z\"}], \"nextOffset\": 1150, \"previousOffset\": 1099, \"totalItemCount\": 1446}" } } }, @@ -1554,34 +1551,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:02 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "29594" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "31573" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:52 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20948_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane\\n\", \"trophyTitleDetail\": \"Memory Lane Trophy Files\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20948_00_00433554391DF8E1ABEF980E5D6344C4BBD0C21D66/2A07BBCA3E108911709222A92BEFB4C08C90B533.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-02T21:06:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19464_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Active Neurons - Puzzle game\", \"trophyTitleDetail\": \"Active Neurons - Puzzle game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19464_00_0088AE7D215FA1AD90EF85186ECF824B000B12186F/7A192496B35B855D4EC2E4BB7AF7E0AEF6B747D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-29T12:09:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21676_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle\", \"trophyTitleDetail\": \"Trophy set for Road Bustle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21676_00_00D0C2F0E0D83134DC7E42B305B1467434D0AF38A8/D6754EBC0E90A102BE9CB6F5F29F41272F3D35C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-28T13:59:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17630_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Balance\", \"trophyTitleDetail\": \"Energy Balance\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17630_00_0047514DAAD44B2FFE510B9DED3048F5BA12F5EDFF/29E15A64A59B5637053501246AD936423BCE6B21.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-24T19:58:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21675_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle\", \"trophyTitleDetail\": \"Trophy set for Road Bustle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21675_00_009205FBE67B206A80C2BC52633DAF0C177B954B2B/155C60DD70489DB7E60DA233FDE4B6F7C38D25AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-22T09:59:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17143_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Awesome Pea\", \"trophyTitleDetail\": \"Awesome Pea\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17143_00_00C7147DBB8BBB4D227612CFB8F7B5A3EF10DB01C7/82EECDDAB65CF599ECA09A27DBB0C78FCF64B108.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 12, \"silver\": 17, \"gold\": 4, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-21T04:02:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19877_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Project Starship\", \"trophyTitleDetail\": \"Project Starship\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19877_00_00E6DFA5839F807C597AAB56D3D91E01B5AFAF2FAD/74F3C490FD4F8DBF035E3F4464775D18FAC15179.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-18T03:19:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20844_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jisei\", \"trophyTitleDetail\": \"Jisei\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20844_00_005127F09E7067DD98DB54C3091D9E4195A1B64001/E7A3508F340FE56B081FE3E0A705C37E1C3AF156.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-18T02:12:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17632_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle Edge\", \"trophyTitleDetail\": \"Energy Cycle Edge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17632_00_0020C4C8179467504597C6924D3B5E7CFB544C282F/DFCED9B017761FB0CAE4ED0E555DF09AB34DB0F9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-17T20:11:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17629_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17629_00_00CD67055125AE78596A8968EFD3641905D0040788/0C3BCEE696573FD60039B6C8D7A224F6772F59B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-17T06:05:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16093_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16093_00_00D2B638402A6F845EFFC4CB6CD28C0E499C4E0D37/50A015C04DD0A7827A3B559B88D58DCCA5AAE8E6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-16T22:36:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20423_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed 2\", \"trophyTitleDetail\": \"Reed 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20423_00_00F2B1D8D2DECA9CF6518C514370FDC2DB41BD40B4/83159920319FC28B3CF6736DBF53259135E3860B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-14T01:33:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20420_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed 2\", \"trophyTitleDetail\": \"Reed 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20420_00_008A0180840A5303C9ED12B3A900EA643917FE1154/CA5D4A2C0B8B60CA3D939D4EA648679110B429C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-13T20:49:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Call of Duty\\u00ae: Modern Warfare\\u00ae 2 Campaign Remastered\", \"trophyTitleDetail\": \"Call of Duty\\u00ae: Modern Warfare\\u00ae 2 Campaign Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14706_00_0029C4E3C5E3C900EE9AD926F72BCCE4ED27262D1D/599BA3A49BC4AC1CE5BE76CF35A6B606217F86ED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-12T18:56:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20943_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane\\n\", \"trophyTitleDetail\": \"Memory Lane Trophy Files\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20943_00_007C418F93E17BE2F43B83194396D43AD65B17AC33/44F0BE26D6D13D6FA916B68E959D897FA18DAC35.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-12T08:03:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15077_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"BRIKS 2\", \"trophyTitleDetail\": \"Trophy set of BRIKS 2.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15077_00_009FA22163C896D637AC6549FC6BFBA1A9B227554B/603089A1F9CC50804CEED6A09F26AA86188DAA8C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 13, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-07T21:41:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Erica\", \"trophyTitleDetail\": \"Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15896_00_00FAC3B936D631189A6A2BDCA520DBED0AAC0A1EF8/8FCC30F6B591231DE6ABA42B8E66AD588DB7C332.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 12, \"silver\": 18, \"gold\": 3, \"platinum\": 1}, \"progress\": 45, \"earnedTrophies\": {\"bronze\": 12, \"silver\": 9, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-05T00:38:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19122_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Red Bow\", \"trophyTitleDetail\": \"Red Bow\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19122_00_0072D1C46320871297D5C00DB9C16D6E6E3466E722/4CDDD5E8F1D03A3F62B7EF2595EE18C78A2AB7F0.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-01T20:28:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20802_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jisei\", \"trophyTitleDetail\": \"Jisei\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20802_00_00323A2487600EFFC417817471133BD03083272D8F/C44B75DD9917DB5E98BEF2F9CB5A5E03C9735BE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-30T18:13:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09124_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Unravel\\u2122\", \"trophyTitleDetail\": \"Unravel\\u2122 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09124_00_0081C0245874DC9B27E63C282FF13C0BEC7A6FB553/E54C44BA8969BBF703600979CB2596AB2441E293.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-29T19:24:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21104_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"112th Seed\", \"trophyTitleDetail\": \"112th Seed\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21104_00_003BF5843B42FD1236B41789E5AFDE7E6CC71FDAE6/13535BE2EA9106EDD0C64E83D4BA09C97D80E36F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-29T01:04:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14822_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Warlock's Tower\", \"trophyTitleDetail\": \"Warlock's Tower\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14822_00_00F0A5CF0695AFF82BC0CE6FB9A98C8F40EEB91DB4/EB74D391D638949F8245C9078C53C84C64DAE7FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-21T13:03:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14825_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Warlock's Tower\", \"trophyTitleDetail\": \"Warlock's Tower\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14825_00_004C10F9B0D706872E91ED504872F2D25B0FC61DF4/0DC218BD51F1F35C76A064E014B49ECFAB387369.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-20T18:35:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07028_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Uncharted 4: A Thief\\u2019s End\\u2122\", \"trophyTitleDetail\": \"Uncharted 4: A Thief\\u2019s End\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07028_00_00328912165EFFF45B65627D1975AB169F7A096025/0CAA52366C0F14C85A71FACB36BDD29122DF85D6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 56, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 25, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-20T13:44:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Neon Junctions\", \"trophyTitleDetail\": \"Neon Junctions\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18132_00_000E9F5AB82083E1CD98E5720B2DCE092771C1ABC4/BE600F987B04AB1C1C66AEDC1DA573A46635F478.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-18T22:56:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18853_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FINAL FANTASY VII REMAKE\", \"trophyTitleDetail\": \"FINAL FANTASY VII REMAKE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18853_00_00FD138430E8FD102510E0D521B664AF1D0EC90710/11B055F3D04D4F274474B3B0D2F860596ECCDCA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 44, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 34, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-16T00:42:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18320_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hoggy2\", \"trophyTitleDetail\": \"Hoggy2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18320_00_005C81828326615943675E3FE8766EC45C6CE79DFC/A6B210475DEF55D7B27992F047511BB052D4B753.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-12T20:24:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18321_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hoggy2\", \"trophyTitleDetail\": \"Hoggy2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18321_00_00551F65BD1429749232D5E36795D8FD97268E412D/F2DAA3929637540034FFDC51BB5A3D11BFF0BFBC.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-12T13:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19467_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand 2\", \"trophyTitleDetail\": \"FoxyLand 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19467_00_0068F7D8BCC4A7F7A78B0C75ECCBC5DBB4B2C44A3D/E7FC51922A3CF932413CAD737C8EE68F99C70318.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-09T00:30:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19470_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand 2\", \"trophyTitleDetail\": \"FoxyLand 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19470_00_00FC7A773DA09C61F8EE407ED053E91694BC7C3E75/2A59A74351E41D38A98730F441AFC0F371364652.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-08T01:41:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20579_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gun Crazy\", \"trophyTitleDetail\": \"Gun Crazy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20579_00_003AB14B4EDF3E92317F7DAB19356F35D0733104AC/46D3BF7EA1F5382B24264D746FFC8CA7BAC5424D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-04T18:43:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20045_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunder Paw\", \"trophyTitleDetail\": \"Thunder Paw\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20045_00_0033087739A99DF3E5D08F6E5E36CD92A61AF43CC9/455B162C8F8F73DFDDC39DFF766B59001E97D828.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-29T17:02:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Explosive Jake\", \"trophyTitleDetail\": \"Explosive Jake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19730_00_0015193ADB1A1BA0831B0DEA864A5924EAC844DB29/96816800B8042D9BE8FCFB9EB70B589C9AC84824.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-28T12:01:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20051_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Men\", \"trophyTitleDetail\": \"Blind Men\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20051_00_00B5BFB1EA3B147ED3C653B280D930A208024A7C36/12AE6C56429420F04577F03555F6E3D946A6FEBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-27T02:52:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20048_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunder Paw\", \"trophyTitleDetail\": \"Thunder Paw\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20048_00_0092DBA770BC2849788436FECAC8941FCCDDB794CA/69A5E694A96DD35484C27A4BF5A96DC7C77036A9.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-26T05:28:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20046_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunder Paw\", \"trophyTitleDetail\": \"Thunder Paw\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20046_00_002A8AEDBD6078ACC2A0C467D9387B0C7A5400FEC0/04F66489E217D0588CC0153BBE73A3DA30E3A856.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-26T02:05:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19729_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Explosive Jake\", \"trophyTitleDetail\": \"Explosive Jake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19729_00_00437316763B2B28A4F5B43983989419DF19807395/B012A690C40BDF090F1F3DAEF50180AC4A3C58BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-22T19:08:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Duck Souls+\", \"trophyTitleDetail\": \"Duck Souls+\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20245_00_00B203239FD9698A075C07F80CCA9E66196F7471CA/7A67685CE981047860A473F869A491EBCCEC920A.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-19T05:01:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20365_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Duck Souls+\", \"trophyTitleDetail\": \"Duck Souls+\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20365_00_004CC23501B6C47250A59A6CB74F492A8A5468E7FB/ED9F0C3AF0CFF9BB022D88E0968AF78211BF0D61.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-16T07:46:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rush Rover\", \"trophyTitleDetail\": \"Rush Rover\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18091_00_007D77823A5DFBA98A493CB18E613042C8CD427062/2E74B554BB06EF6852FCA8DF2EC4C8253BCC4357.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 7, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-16T00:53:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20054_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Men\", \"trophyTitleDetail\": \"Blind Men\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20054_00_0041D33F665948E9A95A14686A5E5C3796DDCD47C3/906F12355E195F3EF17272F959143A2C050C33E3.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-15T22:28:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20052_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Men\", \"trophyTitleDetail\": \"Blind Men\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20052_00_0035203FB173F2B5CAB47DA3BB747F5616B760C7C9/B8640591E29F9EC30A173F2F08E888D4FF699B2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-15T16:53:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12300_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Town of Light\", \"trophyTitleDetail\": \"Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12300_00_009D75EE14C033507A2A21E511102840FE9DE85C24/47C1B54CD264B2A65B1A086B2502327001D17406.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 12, \"gold\": 7, \"platinum\": 1}, \"progress\": 85, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 10, \"gold\": 6, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-07T02:27:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11600_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"SONIC FORCES\", \"trophyTitleDetail\": \"SONIC FORCES Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11600_00_0034B28756434970DC73A42C48945E0686BB41C601/73C512E32FA858876377C084F701EF74A74CC719.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 35, \"silver\": 10, \"gold\": 3, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-05T14:19:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"War Theatre: Blood of Winter\", \"trophyTitleDetail\": \"The Core Trophies of War Theatre: Blood of Winter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19568_00_008CB7DF8163E4AA67534A1A56A37EF6C3F52C3457/C38872A97B8371F39D353857326266AA88C9C95C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-05T13:05:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13719_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Life is Strange 2\", \"trophyTitleDetail\": \"Life is Strange 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13719_00_00A72EA534726E4CB30CF97E4D9E3A44A119E70232/0B77B8168D8436EC369E575D6FCE25DA23EAFF54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 30, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-04T02:01:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11424_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Assassin's Creed\\u00ae Origins\", \"trophyTitleDetail\": \"Trophy set for Assassin's Creed\\u00ae Origins\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11424_00_00B0C1B25B2BC046B57977D1690CE5A22AFC430A01/FD3786571EEA68F65321230E711DCAE92BC53794.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 44, \"silver\": 21, \"gold\": 2, \"platinum\": 1}, \"progress\": 71, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-30T16:38:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17659_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleDetail\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17659_00_002391766BE72DEECDBED22B79A653E137E1DB30DB/41C3106AE508B1A25DBDC0328DD960869732B6F6.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-24T17:01:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19225_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bucket Knight\", \"trophyTitleDetail\": \"Bucket Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19225_00_006C53F574CBE34FB2F98791CB4539CF753C87033B/E8C84CFCD83365A6E93F70BB85FC77E9A80E02E7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-19T23:52:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19226_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bucket Knight\", \"trophyTitleDetail\": \"Bucket Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19226_00_004D338529A2F7C306953277E171B718AA3624706B/7DBFF82BC18A07DA9B0045F42732CCA34C5E4E31.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-19T14:35:15Z\"}], \"nextOffset\": 1200, \"previousOffset\": 1149, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11203_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Tricky Towers\", \"trophyTitleDetail\": \"Tricky Towers Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11203_00_00831FADC9D507B3B4470ADD1E5A3DA9341D3D2DE1/E8BD2759DAF8D84289DB438AD8738BF238695D11.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 14, \"silver\": 9, \"gold\": 6, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-24T18:41:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20195_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 21\", \"trophyTitleDetail\": \"FIFA 21\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20195_00_005B84D81537A0B8DBD65D3F13CB99304EC013E276/F0E8BFFF595D3FEA875FF7C9B0054443FF5CB2E9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 17, \"gold\": 3, \"platinum\": 1}, \"progress\": 42, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 4, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-20T02:07:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16741_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"World War Z\", \"trophyTitleDetail\": \"Trophy set for World War Z\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16741_00_0013CA5609332275F74E6B9F27A4CDE2C90A808741/647B54BCA668FBD7C78C777ABCCF2CBD0794EFE2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-11T14:49:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Baseball - Breakthrough Gaming Arcade\", \"trophyTitleDetail\": \"Baseball - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24006_00_00F8EAA9BD88DC8A87439966D31945ED86E0ED8568/01FF83C3834AD3EA862D6E271415851A70E3B58A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-07T21:29:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR24217_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Football - Breakthrough Gaming Arcade Trophies\", \"trophyTitleDetail\": \"Football - Breakthrough Gaming Arcade Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR24217_00_00BEFD0BDFF9DBE1139BB528F66D5C13D5686CB7FF/E9CFD568241AD1868296A5218F0A8876EA385F51.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-04-04T19:26:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19366_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Football Game\", \"trophyTitleDetail\": \"Football Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19366_00_00A10AE39FE00707ACB3B72D04918BE940112A65C9/08DADB87ADCDBF929A82911F074FCA16CA660104.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 22, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-06T16:27:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22331_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Dungeons & Bombs\", \"trophyTitleDetail\": \"Dungeons & Bombs\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22331_00_000FCB816DA6051D2965DB92321F85141579417D22/AB62617B906FEC6B2798634F1931F6C0C531D4EC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-05T22:28:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18310_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Paradox Soul\", \"trophyTitleDetail\": \"Paradox Soul\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18310_00_002CDB3D56B3FAE0928A50B13D15B58C41A42054F2/8E2BEE41615E5793EE5BC17F31C4A130B2A7B332.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-05T01:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22904_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Loot Hero DX\", \"trophyTitleDetail\": \"Loot Hero DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22904_00_00C3D076A445E643637AB15FC099FA49F10722089E/811A934A495147CDD0FFBD672A0E33F996B5FDE2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-04T14:05:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sinuca Attack\", \"trophyTitleDetail\": \"Sinuca Attack\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22105_00_00D25643D5CEBD95CD66EEA5FB144BF9289F0820A5/DE2D8F05E0EA292FFB7ACA26B8E8B8A6E4FFD21E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-03-04T10:13:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sinuca Attack\", \"trophyTitleDetail\": \"Sinuca Attack\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22106_00_0003EC92D8DEE7C7153B8CF7E87286F53DC7AE16D0/89EA3B45D61BF8551B90959669A989B2B52645BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-20T17:56:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19405_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Little Nightmares II\", \"trophyTitleDetail\": \"Little Nightmares II\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19405_00_00E4676510B6A82AB55FDC4983922C1332C1AD2D2B/D84EE2CFFE8C2F9E241E1561BF991BAFBAC8FE73.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-18T19:18:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06221_00\", \"trophySetVersion\": \"01.06\", \"trophyTitleName\": \"Grand Theft Auto V\", \"trophyTitleDetail\": \"Grand Theft Auto V\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06221_00_00943B71B23B3A5D98EB6CA419684E0F0A07FA8707/A3E52C438318CCEC6346EB2A31DBF31164A95A25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 59, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-10T20:51:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23451_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Valentine Candy Break\", \"trophyTitleDetail\": \"Trophy set of Valentine Candy Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23451_00_00C244D161F606311FC3FDD8EE212B45C68F1039D4/245714D2E9BE0B86875F89A0544FF56F91C61E49.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-09T14:02:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23287_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Space Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23287_00_00A97A6AF91D53286187C69CF2A0449A4DF3431F83/D1EFAD525D6EE62CC6A8999053F4476550278A13.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-08T23:34:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23295_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Space Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23295_00_000106263DD8052BFD816B204ED91B63DD5A486447/677FB655E4BC193EFD44689BD5F07DCC7D78F5B4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-08T20:52:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18309_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Paradox Soul\", \"trophyTitleDetail\": \"Paradox Soul\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18309_00_0077023CDFC663FB62A5A6CB8D07F8915323C7BD23/5C5B82CE80193EDB4752BA9B01668AAF9BE3A8A5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-02-07T21:19:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23103_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break\", \"trophyTitleDetail\": \"Trophy set of Space Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23103_00_0027C7F0C9879CD89BC15F85F5061F10B070ABCD05/FED19A2196537D13C441BE9201712D79346F6610.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-27T22:17:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23104_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Space Break\", \"trophyTitleDetail\": \"Trophy set of Space Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23104_00_0070C5EFFDCBE532E697F69EE61705DCBDCA32743A/D5CAF515FBC50441A8D88D8E70846F54DF76385A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-24T00:34:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19609_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"The Dark Pictures Anthology: Little Hope\", \"trophyTitleDetail\": \"The trophy set of The Dark Pictures Anthology: Little Hope\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19609_00_009580D2C1ECEC9EFC10C714EF4929F8B50EDE1C72/9D8BE92704B5B2BCF9BF6EC1B32AB7256211E198.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 17, \"silver\": 7, \"gold\": 6, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-16T18:49:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22906_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Loot Hero DX\", \"trophyTitleDetail\": \"Loot Hero DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22906_00_00135CC510FFAC6BAD8C38C9D70BA46E77A09650A1/35E12526EE4F506A8BA762358C13FD84F6B9C3E8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-15T22:10:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR23013_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Break\", \"trophyTitleDetail\": \"Trophy set of Christmas Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR23013_00_00E0E8BA3CB56F87408852FA0ED2620B537EFBD668/88BB84CEEB3E49F7439460B8676AA4BC6A31EA92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-06T15:59:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16358_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle Edge\", \"trophyTitleDetail\": \"Energy Cycle Edge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16358_00_004C14187792C400D5C7FB1B31ADB723E40E1A0A3F/99F325DF567CF2313199EDC2E92EC3E9A098FCB0.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-05T22:10:45Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22464_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Donut Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Donut Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22464_00_00E20B99A26487549236AD1560B9836D031B9CA90A/E2A08FD69929225D23F4E37CE62DD683C8910209.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-05T04:09:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11556_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Horizon Zero Dawn\", \"trophyTitleDetail\": \"Horizon Zero Dawn trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11556_00_005122C6D8E4545DAC325B8E748CBE7180ED11F3E7/F24674E946809EB0A2E214DB490149851BCEC0EC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 65, \"silver\": 11, \"gold\": 2, \"platinum\": 1}, \"progress\": 70, \"earnedTrophies\": {\"bronze\": 48, \"silver\": 5, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-04T20:25:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16560_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crash\\u2122 Team Racing Nitro-Fueled\", \"trophyTitleDetail\": \"Crash\\u2122 Team Racing Nitro-Fueled Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16560_00_0007A02C97951137CEE4D2A048FD1C00709B5FB59B/81DBB28E72619BBDF7525F720738EC18E2E1DDFD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 35, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-03T17:32:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19733_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bucket Knight\", \"trophyTitleDetail\": \"Bucket Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19733_00_0005525E4330D4EFF8BFAF4C4D4C40A816E164FD03/16EAD282427B8A4814F980322B98A7713C19B8E6.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-03T01:25:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19731_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Explosive Jake\", \"trophyTitleDetail\": \"Explosive Jake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19731_00_00196B368BAE0700747D592E353ADCBCAABE053455/B1FFBC6F0733599C691D7EA6C42C0A0026FA4A40.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2021-01-02T14:35:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13826_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Batman: The Enemy Within\", \"trophyTitleDetail\": \"Batman: The Enemy Within Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13826_00_00AA69BD96EE40A1CAE1DD61A6563B03CE73B4DAB7/B2D7F50863D43DE7882C025D4ECA17CC421F7E69.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-31T11:53:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13529_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Balance\", \"trophyTitleDetail\": \"Energy Balance\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13529_00_00AA644176798FBF5C6355007E71117B88659DC9BC/2E9F88C9013BF405699FD75F7CD800B9B717408B.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-23T12:43:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17937_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Word Wheel by POWGI\", \"trophyTitleDetail\": \"The trophy set of Word Wheel by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17937_00_00EF034F1A6A783059252151094988D22B9E7F1871/F3DC00A312B9B176EB088F4EC0BCAB7AAB0D0ACE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-20T21:35:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22192_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleDetail\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22192_00_00C0CC0EE160A169E7E198005E8F81D992114FD5E0/2F50F89F5C5ED593B93F31215713EB415CF3CE25.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-17T20:50:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22193_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Freddy Spaghetti\", \"trophyTitleDetail\": \"Freddy Spaghetti\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22193_00_002F49F140890DC1E05E0224D77A7F19332B45C8C3/BF70001A6DFA6680162920A2EF8A84669042D318.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 44, \"silver\": 10, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-17T13:29:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18538_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Wiloo Demake\", \"trophyTitleDetail\": \"Super Wiloo Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18538_00_0023518EE9359B7450F3AA309B13A44B1B5DBA16A3/527C4DC75D78826CF1FEC9E73227579273D5FCFA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-15T18:22:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22690_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Halloween Candy Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Halloween Candy Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22690_00_00856652DC0DEB6ED39260FA055CE4C286F9D63121/58126C76EB6DF9F5BBDA1F3ADE7BFF259AE06D67.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-11T22:30:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22268_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Autumn's Journey\", \"trophyTitleDetail\": \"Autumn's Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22268_00_002DAE73F9B31F8AA529C11319684F72E2C6E34354/ACB4EFF7232651D230622D652ED65CCA0DF6644E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-11T22:00:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22727_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Halloween Candy Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Halloween Candy Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22727_00_0046B250D7B046E4692113609EF85B417407C0EC5B/1F9B1DC735B0B486DC58A65A15263DD7E1CC941B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-10T11:16:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22269_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Autumn's Journey\", \"trophyTitleDetail\": \"Autumn's Journey\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22269_00_00AF8B97B37132AC0BC7BC36F7C2B9DECA463208D6/5A7723AD80E1ED4B34F253132AE5AD4FBBC1153D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-08T17:38:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22627_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Christmas Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22627_00_00E0FF2E056BFB4624C2EEF4AC8F7A3C7CB6FF2C09/9293B560CEB6925EA5DFD9EDFFF6BBE27C0B3EE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-01T15:38:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22415_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Chickens On The Road\", \"trophyTitleDetail\": \"Trophy set for Chickens On The Road\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22415_00_008C6600740D1C242A9822468465B5CDA3ECD37254/73694EF5C46178EA2C88AF5A72E4DDF086D0C183.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-01T12:39:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22416_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Chickens On The Road\", \"trophyTitleDetail\": \"Trophy set for Chickens On The Road\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22416_00_003213FB86C3723F11E2811A43DF54D4429B58E31C/8EDB4FA34AD550D96B31AACCFB8C0F1E1ED50C82.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-12-01T11:55:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22196_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Snake Boat: Otterrific Arcade\", \"trophyTitleDetail\": \"This is the trophy set for Snake Boat: Otterrific Arcade.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22196_00_00C5E573078ED1B47AA0991545489A358DC83FD7C2/839AD501F7BC2791F8010A0B40F32AF5E0287E8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-28T13:44:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22628_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Christmas Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Christmas Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22628_00_007850EE6102CBF4B3C2BD7581B3EBDA9766C56AC5/C3A20A2AC031E1A28A17F14D6F0338992C1FAC81.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-28T10:54:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"DRAGON BALL Z: KAKAROT\", \"trophyTitleDetail\": \"Trophies for DRAGON BALL Z: KAKAROT.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17396_00_003BB179BFA9DAABB1B540437D70B48E38DAAEDDBF/729C6EC744FEACC3C66DF0A821E907CB634BFA21.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-26T16:23:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19232_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Marvel's Spider-Man: Miles Morales\", \"trophyTitleDetail\": \"Trophy set for Marvel's Spider-Man: Miles Morales\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19232_00_009C88341624B0983231370CB7BB64811ED96AD2B3/1A3B4C3C43BA6A179ED67F4AA4E8EBD347196D9A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 37, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-24T14:20:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22204_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo 2\", \"trophyTitleDetail\": \"The stupefying, blindsighitng and really sweet trophies of one Mayo too.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22204_00_009165DC28908D3984AE48A1976A11E5B14F2A594E/43C2F62804F43E3F29718ADCFD1478FE354D4BA2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 42, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-17T13:37:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17517_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Weekend Mode\", \"trophyTitleDetail\": \"Super Weekend Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17517_00_00C773B4D5837FE14CCDE26A309F83E84BD89B4432/7C567639FEB5F456BD402348CA741A439F6945B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-17T13:36:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18319_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hoggy2\", \"trophyTitleDetail\": \"Hoggy2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18319_00_00274A55A87C3AFDB1378C9927276F38B71E416A0C/CF472CA7BF80FFC28F5D29C48A635A1CC02E8A9F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-16T16:22:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17214_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets\", \"trophyTitleDetail\": \"Bouncy Bullets\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17214_00_0062F82CA1B2D1584D786EE0FE6A293A1F7A5F0700/9350C65FA94ADBEAE62DDCBD809A434181A4849F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-16T12:03:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16685_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Watch Dogs\\u00ae: Legion\", \"trophyTitleDetail\": \"Trophy set for Watch Dogs\\u00ae: Legion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16685_00_00294E3876238E443D89DD0FAACFB9E512A36E63AF/4B293C0FB91CDED30CFDBD7CE87C43E442B47A3F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 25, \"silver\": 22, \"gold\": 2, \"platinum\": 1}, \"progress\": 83, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 19, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-11-15T22:24:51Z\"}], \"nextOffset\": 1200, \"previousOffset\": 1149, \"totalItemCount\": 1446}" } } }, @@ -1617,34 +1614,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:02 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "29846" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "31179" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:52 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12787_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel\\u2019s Guardians of the Galaxy: The Telltale Series\", \"trophyTitleDetail\": \"Guardians of the Galaxy Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12787_00_0088A5C75B49DCBDDDEDD799779BD0C58655403181/2603A24F47E1C00DA441248537CF384E58D1F02B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T18:38:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Syrup and the Ultimate Sweet\", \"trophyTitleDetail\": \"Syrup and the Ultimate Sweet\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19637_00_004E1B156D63A31396D27DD7D1EFAC6CF32579680F/F9257750342CD1C375C54CDE565555AC3EDA2841.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T02:28:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19633_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Syrup and the Ultimate Sweet\", \"trophyTitleDetail\": \"Syrup and the Ultimate Sweet\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19633_00_00E97E8E7D3BD2F4088521FFCE2BAB1E9D2AF1F9E1/14D16FD8FE46559693DA266D12484B42AE89D3CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T01:15:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19634_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Syrup and the Ultimate Sweet\", \"trophyTitleDetail\": \"Syrup and the Ultimate Sweet\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19634_00_007187DAA7379195E2B1DB6EA68CF2BDCF4D3A61BD/6300FB6E220E840D6CDD0AF4C72624D92694E33A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T00:42:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14002_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"AO International Tennis\", \"trophyTitleDetail\": \"Trophies for AO International Tennis.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14002_00_00F054B65DF8F85FF4557AD731EC9B0419BE80A0E1/EBDA94513233B883F499F5501BDA89DC9E70F134.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 13, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"progress\": 88, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 11, \"gold\": 4, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-13T22:40:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19548_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Milo's Quest\", \"trophyTitleDetail\": \"Milo's Quest\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19548_00_00554DFA5B54C97179F2733EA3FE9BD83BD90D5915/BC8EF2116EEDC2E0562CF6189E67BED7BC2925E8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-07T05:17:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19788_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed Remastered\", \"trophyTitleDetail\": \"Reed Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19788_00_001A697FDF9A08CA8C08D63929B5630E1C9BB20548/9DAA4EAAD2DF6716F42BD7B2903AAAC0E590E33D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-07T04:59:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13736_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sims 4\", \"trophyTitleDetail\": \"The Sims 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13736_00_00D61FD6E0E86E188AE92590EA0DF2914E0B153736/CF4FB17B134A994843C56487AE77BD9655D9BED7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 41, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-06T23:35:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13017_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Peasant Knight\", \"trophyTitleDetail\": \"Peasant Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13017_00_006CBCB2833F988E1BA1B46B7876C42D21D82045AD/E1B0A7B15B5CC3246B2AE5CBB7AEFB4A04EDFD48.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-05T11:40:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10954_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Attack on Titan\", \"trophyTitleDetail\": \"Attack on Titan Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10954_00_00B65BCA71F1981874362B31741F1F40C4F3FDE4E5/493E9902D3B50BA197FBE6F67DED6938B25AA10B.PNG\", \"trophyTitlePlatform\": \"PS3,PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-04T18:22:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15091_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Adventure Time: Pirates of the Enchiridion\", \"trophyTitleDetail\": \"Adventure Time: Pirates of the Enchiridion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15091_00_002CDA3FE99AF35C4FC1300014F4357C85377C168A/77F9671604B55C282490FA97FAE4F270232CF34E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-03T12:50:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13016_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Peasant Knight\", \"trophyTitleDetail\": \"Peasant Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13016_00_00630E95A6274D645C3E2A7E357D74C36DAC24A26D/AC38F0CAA9697DEDFCA75BB84B743AAEB3BFA285.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-01T19:00:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Peasant Knight\", \"trophyTitleDetail\": \"Peasant Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13006_00_0054CEE8F787A4D66E9B593DB9685A9C844A6937C7/08CCC4CCE29668F12CEC02E1DD84D4E1EEED6386.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-01T16:22:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19791_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed Remastered\", \"trophyTitleDetail\": \"Reed Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19791_00_004B629E4083EDF7266AC3E6CFE12DF81638092CBD/BAE414A083884439EA35215F04F7DCD409AD69E5.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-29T16:33:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19789_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed Remastered\", \"trophyTitleDetail\": \"Reed Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19789_00_00A027D63162B6553E33FFE455597D669CEC4FE3FF/012E8315DAB188C2CB1248D681EA500C7A2CB122.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-29T11:24:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15142_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Mortal Kombat 11 Trophies\", \"trophyTitleDetail\": \"Mortal Kombat 11 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15142_00_00246767A718D5EDB5D5EE7BE7ED04AA97AB13D805/6006C9FD0F9A66A820BFAB7B13109CAD7A4BC83F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 50, \"silver\": 7, \"gold\": 1, \"platinum\": 1}, \"progress\": 52, \"earnedTrophies\": {\"bronze\": 35, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-27T13:38:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19878_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Project Starship\", \"trophyTitleDetail\": \"Project Starship\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19878_00_00726F76209C943E205123B6C786A31EA7E5F3392B/A295390DFE2B0FE729F7AEB72C10AB9AF96F1A09.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-27T10:48:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19551_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Milo's Quest\", \"trophyTitleDetail\": \"Milo's Quest\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19551_00_00228678EA23B78260B2DF338701FA9D5D9F0B073D/AB80C0CB57F496A61DE7D7EF6883D88ACD16968A.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-26T19:08:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19549_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Milo's Quest\", \"trophyTitleDetail\": \"Milo's Quest\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19549_00_006A515379B2B3AC2FA87D87F8090CDB07A75F56B7/B568E44A009CC9822CA63633D3349FB3CFD14B92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-26T18:06:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11159_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Jazzpunk\", \"trophyTitleDetail\": \"Have a trophy!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11159_00_00CFA7812C11E87215DF2EBEE3F362DC8E06430DD6/F5261FE9B2D308113455AE1DCFD85F3CFDA35B82.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 9, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-12T21:18:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09229_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Goat Simulator\", \"trophyTitleDetail\": \"Goat Simulator\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09229_00_0083DE905271C970376786195C3A87FD9FB5AEAF16/80A2FFBE208F77346A5CEC1C31B99A98D83E8005.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 62, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-10T20:59:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16643_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Planet RIX-13\", \"trophyTitleDetail\": \"Planet RIX-13\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16643_00_000E6A464B0B5151F04861D64C77F73D914C605A3A/45ACDCBECC1D935B40451E5510F0DFD8A060C4DE.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-08T21:00:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08983_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"NieR:Automata\", \"trophyTitleDetail\": \"NieR:Automata Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08983_00_0028401200C35DF79459606ABAD48478BB4ED49539/E1BD1DCC141217DFB0A7180EB6EFF8A63156B4AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 32, \"silver\": 13, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 32, \"silver\": 13, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-08T16:22:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STAR WARS Jedi: Fallen Order\", \"trophyTitleDetail\": \"Jedi: Fallen Order\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18921_00_007F35A3124F896460E9067DB88203B9F90D5D610E/73EB07D4EEBE8EEDFEF84DB7C30DB43941B75ED6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-29T00:18:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15712_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15712_00_00FE3002E21B9B0BB0ADDA1629AC75D9CAF7C64F2B/F70C9A4017EADF663E2C013A44A01E83EEF16D2F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-26T16:04:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17080_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stretch Trophies\\n\", \"trophyTitleDetail\": \"Stretch\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17080_00_0062FC088489991FD96E3322AA5EDEE55F7CDBA9DC/7A12F2ABEFC192453C0531CC3D58DECADE18C8FE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-24T00:13:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13242_00_000600D7DACCA59766CF450DAEEEBE7AA0F269C525/908A7064B707AC3CAC422F2C4E3CBCCF13243BC8.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-23T23:27:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19399_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Without Escape\", \"trophyTitleDetail\": \"Without Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19399_00_00A1649314E6F487BF1D1FE0013CF355570C2D0C66/8BD94D0E8EDCDD585E353AAD66A7D61ED2D0AD19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-22T17:52:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19403_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Without Escape\", \"trophyTitleDetail\": \"Without Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19403_00_0022675802260E63BDCA0EDBC5369F56EA576FAF29/BD77424982A48E58C8FF03FD134E0B8FCA0BC12E.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-18T12:54:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19400_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Without Escape\", \"trophyTitleDetail\": \"Without Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19400_00_0094F9C9E03FF6CE902DB122A3E7DEAACDCCAFEC17/503CDD57545C0527214CF3265A638A1A795C84B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-18T12:51:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17662_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleDetail\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17662_00_00A31D283CB9714A19E0CB815893DC9478145D50A7/4B829CDFE58A5060E34731ABE01D84BF80AAA752.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-11T14:03:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16838_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Daggerhood\", \"trophyTitleDetail\": \"Daggerhood\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16838_00_00895BEC36DA8EFA523859F79EFBE6693070FDD294/956AAA9C337678B82658C870B493BA8CE471E47E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-11T12:41:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18595_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"One Night Stand\", \"trophyTitleDetail\": \"One Night Stand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18595_00_006CD3AABC20F442E51F072929BA764CF38F316721/4406D8BCE686F3671FC5E5BB187EA41230B22870.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 16, \"gold\": 6, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-09T21:05:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14522_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Long Reach\", \"trophyTitleDetail\": \"The Long Reach\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14522_00_008903C29F596B337055185F580C0C4AAA1F07CB32/985BB02A6F564898A950BE8763FCC309287E0C11.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-08T14:12:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand\", \"trophyTitleDetail\": \"FoxyLand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19396_00_007BA3C57EB844F3C840CA54D0E5D48AB80D7FC255/F632E23624DE25B12413D6F4DC0067A9D2DB35DF.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T13:18:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19393_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand\", \"trophyTitleDetail\": \"FoxyLand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19393_00_00BD389C999DD12DA17F52D9123C2D128003883673/DE6CAB9A1151437688D10C42A70A03D26B4C44C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T12:55:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19394_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand\", \"trophyTitleDetail\": \"FoxyLand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19394_00_008FB03B22B0381AB187CF2E886EEAE7CD5E0D3871/C2FFCC18E8F98D12F591165828CFFC5CC2B911BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T12:24:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17658_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleDetail\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17658_00_00611F0E8BBF35C89CDBCC96294FE259184953BD91/149D9AA93FD1C3CBA2837B084BF51676E0054ED8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T11:26:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"METAGAL\", \"trophyTitleDetail\": \"METAGAL\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13005_00_00C899A56ADF068B225498E620A646EBF8D28FE63C/FDAE85386C7B360D0E65DE45B30C00750B23F8A7.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T11:28:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13014_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"METAGAL\", \"trophyTitleDetail\": \"METAGAL\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13014_00_00E29492CA8440AFD3729D0D1031CF9978707259B2/75D6ACF32AC666DFF527796A30AB8EE9C393DD1D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T10:33:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19131_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Deep Space Rush\", \"trophyTitleDetail\": \"Deep Space Rush\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19131_00_00D3938D2D0297BE0651FCD97E103741E6C561EE89/0DC0F29A84C33C4439B73703BE704EE4F1975495.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T08:10:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Deep Space Rush\", \"trophyTitleDetail\": \"Deep Space Rush\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19132_00_004D4E2FCB7F9632ECCFF7CF6C4EC00C7866065640/5BE253037E54AB0E4C063AA3493565DEC86BE86D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T07:42:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06764_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Teslagrad\", \"trophyTitleDetail\": \"Teslagrad Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06764_00_0056FF148A50D8C24D29DA01DBA9558C86CF7C429D/B4A72D8A5BAF8610F14765CF71EB536A30A8A9A1.PNG\", \"trophyTitlePlatform\": \"PS3,PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 65, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-27T05:03:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13159_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Mirror\", \"trophyTitleDetail\": \"Black Mirror\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13159_00_00B738340C136CCCC240BE36CD928807E074389CB1/B1531CD7107F6EEAA5E05D380E59A5A026ADBEA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-25T19:24:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Clockwork Tales: Of Glass and Ink\", \"trophyTitleDetail\": \"Clockwork Tales: Of Glass and Ink\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12089_00_00073A0EBCA1F8D63589859AD9978EDCB60603703B/638FCC8C7ED9F1BBE44BC7719A5219881E94C372.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-24T09:56:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11335_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"SYBERIA 3\", \"trophyTitleDetail\": \"Syberia 3 - Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11335_00_004AB5912BC80A75C7DFF58AB1AD6C6229FE8A1431/EFD15C2AA028A8401169F4E25DB5EE19B89C8FD6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 22, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-24T04:46:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11974_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Little Nightmares\", \"trophyTitleDetail\": \"Little Nightmare Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11974_00_00F8E589325CE5C9E4BC479997BE6E9AE9A3214781/61E5D1B9BE30031957EB8CBC7FB15ACD538730F2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 13, \"silver\": 5, \"gold\": 4, \"platinum\": 0}, \"progress\": 19, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-21T19:49:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Iro Hero\", \"trophyTitleDetail\": \"Iro Hero\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19077_00_00E435ADE5261669D273E57EDF573B51D517B47086/881C56CFC5D5E7A1B741541B93140B815B242394.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-19T13:10:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13463_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Call of Duty\\u00ae Modern Warfare\\u00ae\", \"trophyTitleDetail\": \"Call of Duty\\u00ae Modern Warfare\\u00ae\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13463_00_006ABB71B1E32457171EDC8FABBA39213164972DE2/BF8D1D967A7560E420CB73F41D1F845E6399F287.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 7, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 3, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-10T07:15:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06777_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Lords of the Fallen\", \"trophyTitleDetail\": \"Lords of the Fallen Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06777_00_0060D8811D41599D74D6476CB6A1B3C6F66DE05E70/D46AB4A4D1438388F80FC1B8250AF493AB646EAE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 42, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 9, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-30T21:28:40Z\"}], \"nextOffset\": 1250, \"previousOffset\": 1199, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18519_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ben 10: Power Trip\", \"trophyTitleDetail\": \"Ben 10: Power Trip\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18519_00_009E69C7453A5393C99B13AB7B16CE9ED9AA3290D1/1C7E0C928204EEF60BA062F57C94AA112AB7004E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 9, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 8, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-27T00:33:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17374_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"eFootball PES 2020\", \"trophyTitleDetail\": \"eFootball PES 2020\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17374_00_009E1BA22FC5FC8B044DCA5D9592766293367FFB45/02DF1D54807653564094866A1341CA9523252BC5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 41, \"silver\": 5, \"gold\": 3, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 33, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-24T08:44:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11874_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"MARVEL VS. CAPCOM: INFINITE\", \"trophyTitleDetail\": \"MARVEL VS. CAPCOM: INFINITE Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11874_00_0037606859525DF1AB207F0915277E09623FC1A685/F8F628054814C987A03F3A3AE109BAC605FE2B38.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-23T04:23:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Ben 10\", \"trophyTitleDetail\": \"Trophy set for Ben 10\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14005_00_00441217CD76D01E787A75010B0D5FC5B4B82322DA/C0807D031908980FEEC8DD36C3D35CCFEAE88829.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 87, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 10, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-21T03:36:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20098_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crypto by POWGI\", \"trophyTitleDetail\": \"The trophy set of Crypto by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20098_00_007F13C0784F7EA141FC0E00216A65C4EC42E2FE66/409547A3BC7144868C73E8D76566571FA0EC6B8B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-18T22:18:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17217_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets\", \"trophyTitleDetail\": \"Bouncy Bullets\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17217_00_003ABAB472CBCBAB5C972EC60FDE0B101ABF679400/CAEC3C8C8327A35706491C834771E04502B70BAE.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-18T21:23:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17215_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bouncy Bullets\", \"trophyTitleDetail\": \"Bouncy Bullets\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17215_00_00750B313C5C98C1564F452B41942DFBA7AC250802/724A636768110EE9C27F14E8A9692364CA549A26.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-18T07:01:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20100_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crypto by POWGI\", \"trophyTitleDetail\": \"The trophy set of Crypto by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20100_00_007437A3A5E8BDE6F6BEBD8DEC511362575B51C99B/84BA72FA7C4930168D5AF4135E28F18FF14DCF57.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-17T21:46:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20099_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Crypto by POWGI\", \"trophyTitleDetail\": \"The trophy set of Crypto by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20099_00_001E49699B71E528E8CDFCF13295F151DA55EEA19A/56EC8F85796D8ED55EE446B74A8EE79ACA0BFE8C.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 31, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-17T20:20:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22174_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Halloween Candy Break\", \"trophyTitleDetail\": \"Trophy set of Halloween Candy Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22174_00_00897CC53D6C9CD0C62185DA5731C47C12DE7C9E53/0C883653EB093AB517A2FC815032EABF88B2B412.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-15T07:19:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR22084_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Donut Break\", \"trophyTitleDetail\": \"Trophy set of Donut Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR22084_00_009117A4A72692DE8D6B70F62003ED9C0F860F3940/9381405F6CA41C3FC31AC7B38340A67168A3B385.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-13T23:17:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08934_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Assassin's Creed\\u00ae Syndicate\", \"trophyTitleDetail\": \"Trophy set for Assassin's Creed\\u00ae Syndicate\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08934_00_00E288AF3E17A5F8897811AA48E3DBE84491F57F4E/C39198C362F2E6A41CD3E5D274199D5F6E5179A7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 45, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 45, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 3, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-13T21:15:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17911_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Word Wheel by POWGI\", \"trophyTitleDetail\": \"The trophy set of Word Wheel by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17911_00_008F083F14C606AD1187C8C8760B4828CF2078F382/F5F6ECC1BD27CA24F89B779B8D223981CBE669EF.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-12T03:44:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16793_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fantasy Strike\", \"trophyTitleDetail\": \"All trophies in Fantasy Strike\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16793_00_009B0D365D424D75C3E19EBA6927D9C966DE105BEE/A083C85A8082E2EC91B371A9660B54CC6B2C8D91.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 22, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 75, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 17, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-08T10:52:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18316_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just Ignore Them\", \"trophyTitleDetail\": \"Just Ignore Them\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18316_00_00522074DCB59D719D3059F184F5086878AB8D1763/9D8AF3600C94CCF16E4D1D4891D516A660BDAB04.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 7, \"gold\": 6, \"platinum\": 1}, \"progress\": 60, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-07T23:04:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20801_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jisei\", \"trophyTitleDetail\": \"Jisei\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20801_00_00587046D0618AA5EF40201D37F565AEDB8F67E508/73F00D7C91001076E64F21CED95CE9D095C6D890.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-06T22:45:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21105_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"112th Seed\", \"trophyTitleDetail\": \"112th Seed\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21105_00_00A4740215B6B91D106804B1A22BF974C1C48E6CAB/67081A03EE2472B36A6B23FE7517F4309931BD3E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-06T22:10:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17909_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Word Wheel by POWGI\", \"trophyTitleDetail\": \"The trophy set of Word Wheel by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17909_00_00723253A8F5DB85D638F3C5B700C637D08875D8AE/7CCA7A9DCC836B140540696BF955926B9F759AA6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 27, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-06T20:38:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jack N' Jill DX\", \"trophyTitleDetail\": \"Jack N' Jill DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16077_00_009D55B7B79B090E54333B8D829F68AF4F91F05FBA/B28C4235E8D1EAA674520E8889DE70C66E05A36A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T17:11:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14715_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleDetail\": \"The trophy set of LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14715_00_00D7A91A085C3ABD69E5D3D9B6C447D7F6B92ED280/6AA3D03E06BAB5DC36642C2D22C8791383BCC5B0.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T12:03:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20590_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Swordbreaker The Game\", \"trophyTitleDetail\": \"Swordbreaker The Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20590_00_00C6486AB9498B414B3644EF14E6A2A976B24F1E8D/6AB79BCB0213F4B1AF60A011931D0A833EFDD58B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T09:18:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20604_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Swordbreaker The Game\", \"trophyTitleDetail\": \"Swordbreaker The Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20604_00_00809ADA3EAA70810B075DDDF0D32AA67E429A4E83/A6BAD6704017FEB69F0CD738681638CF48FA7219.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-04T04:26:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20591_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Swordbreaker The Game\", \"trophyTitleDetail\": \"Swordbreaker The Game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20591_00_0071711DA509F2A120378EB15BC830CA534AD94328/E04B6798951E20EFF516EA0698A70B74B8E38E17.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 55, \"silver\": 1, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-03T18:09:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15120_00\", \"trophySetVersion\": \"01.38\", \"trophyTitleName\": \"Ghost of Tsushima\", \"trophyTitleDetail\": \"Trophy set for Ghost of Tsushima\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15120_00_00736F40BFE5A427C57A238478A141FABB81ABA3C7/F7780A7B9141F2A1D0B68E578787D962D7F69C31.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 6, \"definedTrophies\": {\"bronze\": 59, \"silver\": 13, \"gold\": 4, \"platinum\": 1}, \"progress\": 64, \"earnedTrophies\": {\"bronze\": 40, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-10-03T16:45:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19063_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just a Phrase by POWGI\", \"trophyTitleDetail\": \"The trophy set of Just a Phrase by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19063_00_0000C586B982D0821399A5A2FC763DA06B72941479/65E6F49B016E01CC8413C13840B5705F1A41D10B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-25T02:38:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21151_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sushi Break\", \"trophyTitleDetail\": \"Trophy set of Sushi Break.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21151_00_001C1E54531F8194540FCB6A4E4780D93FB110573A/55BC52A6E8A67674F18F394DDB462D963A80D530.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-25T02:09:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20671_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Strawberry Vinegar\", \"trophyTitleDetail\": \"Strawberry Vinegar\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20671_00_00CDD94FE765F49E34D76D4A6F33A3684A20AF866F/CA72DAFC98BA49DC4218113E5928F121D6BDE648.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-23T03:15:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19062_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just a Phrase by POWGI\", \"trophyTitleDetail\": \"The trophy set of Just a Phrase by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19062_00_00A6A5AA9A10D682FEEABBE791248D8B0DA62C412D/7A2378CFABB5187B4CE7C7AD4264B826BE160509.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-22T02:26:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19065_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Just a Phrase by POWGI\", \"trophyTitleDetail\": \"The trophy set of Just a Phrase by POWGI\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19065_00_001D31FD46F4D30617D69E3A9FFC3B48C2F47E776E/C8C9EF570C5764693C1D93BD1A1E3E8BE95372E2.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-21T21:32:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17504_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tower of Dragonasia\", \"trophyTitleDetail\": \"Trophies for Tower of Dragonasia.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17504_00_00449BB1E39B263D33BFA861F2F7956C60FA05BDAA/366AEAE63CCF2CF1159D47C4CDE2C18D68175058.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 52, \"silver\": 6, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 52, \"silver\": 6, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-21T06:17:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21201_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tamiku\", \"trophyTitleDetail\": \"Tamiku\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21201_00_00B6974E75F1D06F4BFE8096D3509012C1BE672A24/AF52A8AC980EBE6D305BB417187ACEC2F3C40C8F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-21T04:09:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16728_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"PUBG: BATTLEGROUNDS\", \"trophyTitleDetail\": \"PUBG: BATTLEGROUNDS\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16728_00_00A5683B46A9D79E3EB4400A9488120FE1720C29A7/DB3F01C5DD2E2D6BF05386A93A055DD3BDF1B700.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 5, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-20T16:31:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10746_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Gem Smashers\\u2122\", \"trophyTitleDetail\": \"Trophy Set for Gem Smashers\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10746_00_0041F11DE2718BB8065092DA0E3B3BDE74E397D4B6/3B1A42F83DE0C4C40ED1B24026196039890EC851.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-17T20:31:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17018_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"F1\\u00ae 2019 Trophies\", \"trophyTitleDetail\": \"F1\\u00ae 2019 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17018_00_00ECB8962A33B430ADC1CFE8AD8C6E10E789C3036D/C80AB2C81456392F8D62690F4C4BB5106CB78667.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-17T13:46:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08708_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Toro Trophies\", \"trophyTitleDetail\": \"All the feats you have achieved\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08708_00_00E07795DE8A3C3F89D3D9D57EEB5113949FEE7EDC/3C8C52EC2F0F7714B602607BE61D0487C29418DF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 14, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-16T14:45:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13578_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Balance\", \"trophyTitleDetail\": \"Energy Balance\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13578_00_003E30D657FFCB214AB39DA897983832BB11C07B13/709013FB1C9C609738799C855D53E68AA869A87B.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-14T13:13:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21106_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"112th Seed\", \"trophyTitleDetail\": \"112th Seed\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21106_00_00C523A9589D4D2B846C14092F8B22DFC70BFE7820/3FD0AC1055BA39E94A4465939D02553358899676.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-10T00:30:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20672_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Strawberry Vinegar\", \"trophyTitleDetail\": \"Strawberry Vinegar\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20672_00_008B08527792812DF7036D3C003DD6202A4EA94DBC/B6093BF2190688407F99786D9EBCAA4831BA5DF5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-07T00:42:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12518_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"God of War\", \"trophyTitleDetail\": \"God of War\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12518_00_009C1232E900005FE409857E926767DFE9CAC7F371/CCDC60CADE4B3970C348FEFDE0094BA95C0A802F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-06T20:16:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21716_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Sushi Break Head to Head\", \"trophyTitleDetail\": \"Trophy set of Sushi Break Head to Head.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21716_00_002B9EDD0B9EDFC66840C4D5AB223FE572D8906E83/FFFC38EBDED58D9CA6E2D42F91A4858E99A9C54D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 28, \"silver\": 7, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-03T21:19:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20948_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane\\n\", \"trophyTitleDetail\": \"Memory Lane Trophy Files\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20948_00_00433554391DF8E1ABEF980E5D6344C4BBD0C21D66/2A07BBCA3E108911709222A92BEFB4C08C90B533.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-09-02T21:06:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19464_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Active Neurons - Puzzle game\", \"trophyTitleDetail\": \"Active Neurons - Puzzle game\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19464_00_0088AE7D215FA1AD90EF85186ECF824B000B12186F/7A192496B35B855D4EC2E4BB7AF7E0AEF6B747D8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-29T12:09:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21676_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle\", \"trophyTitleDetail\": \"Trophy set for Road Bustle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21676_00_00D0C2F0E0D83134DC7E42B305B1467434D0AF38A8/D6754EBC0E90A102BE9CB6F5F29F41272F3D35C0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-28T13:59:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17630_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Balance\", \"trophyTitleDetail\": \"Energy Balance\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17630_00_0047514DAAD44B2FFE510B9DED3048F5BA12F5EDFF/29E15A64A59B5637053501246AD936423BCE6B21.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-24T19:58:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21675_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Road Bustle\", \"trophyTitleDetail\": \"Trophy set for Road Bustle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21675_00_009205FBE67B206A80C2BC52633DAF0C177B954B2B/155C60DD70489DB7E60DA233FDE4B6F7C38D25AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-22T09:59:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17143_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Awesome Pea\", \"trophyTitleDetail\": \"Awesome Pea\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17143_00_00C7147DBB8BBB4D227612CFB8F7B5A3EF10DB01C7/82EECDDAB65CF599ECA09A27DBB0C78FCF64B108.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 12, \"silver\": 17, \"gold\": 4, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-21T04:02:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19877_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Project Starship\", \"trophyTitleDetail\": \"Project Starship\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19877_00_00E6DFA5839F807C597AAB56D3D91E01B5AFAF2FAD/74F3C490FD4F8DBF035E3F4464775D18FAC15179.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-18T03:19:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20844_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jisei\", \"trophyTitleDetail\": \"Jisei\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20844_00_005127F09E7067DD98DB54C3091D9E4195A1B64001/E7A3508F340FE56B081FE3E0A705C37E1C3AF156.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-18T02:12:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17632_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle Edge\", \"trophyTitleDetail\": \"Energy Cycle Edge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17632_00_0020C4C8179467504597C6924D3B5E7CFB544C282F/DFCED9B017761FB0CAE4ED0E555DF09AB34DB0F9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-17T20:11:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17629_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17629_00_00CD67055125AE78596A8968EFD3641905D0040788/0C3BCEE696573FD60039B6C8D7A224F6772F59B8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-17T06:05:29Z\"}], \"nextOffset\": 1250, \"previousOffset\": 1199, \"totalItemCount\": 1446}" } } }, @@ -1680,34 +1677,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:03 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "30468" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "30783" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:53 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15118_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fractured Minds\", \"trophyTitleDetail\": \"Completed all chapters\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15118_00_00F9180F3105B5816055DDAFE98EDB010B8B3053E7/FC152125A7A89E4FA3EE1BA54D9CD191BB168FD5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 2, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-20T10:10:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12591_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Hellblade: Senua's Sacrifice\", \"trophyTitleDetail\": \"From the makers of Heavenly Sword, Enslaved: Odyssey to the West, and DmC: Devil May Cry, comes a warrior\\u2019s brutal journey into myth and madness.\\n\\nSet in the Viking age, a broken Celtic warrior embarks on a haunting vision quest into Viking Hell to fight for the soul of her dead lover. \\n\\nCreated in collaboration with neuroscientists and people who experience psychosis, Hellblade: Senua\\u2019s Sacrifice will pull you deep into Senua\\u2019s mind.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12591_00_0037BD7D4462740EE895422284E277AAE06AC848FC/42AF55CC21C0E6E60ABACDF963589608D1218FDA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-15T22:48:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18987_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Box Land Demake\", \"trophyTitleDetail\": \"Super Box Land Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18987_00_00A929B1D0F124A4765FC88BF38D1A03742C4962A1/0CFBEF189FD19AF1362F4B9CA80B8D830D651E85.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-14T19:15:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18984_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Box Land Demake\", \"trophyTitleDetail\": \"Super Box Land Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18984_00_00E7CE041DC476BED344186E80A8609B5B074DF51F/9FD2537BF0BE1E0C5C66E8E95D4B20B8B0808161.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-14T19:10:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18985_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Box Land Demake\", \"trophyTitleDetail\": \"Super Box Land Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18985_00_002914F61D32E8CDA6F56A50C3C4578D61B6C1A3C9/2C28C983E0B0E1D2628AB2E7D79EA6212C7775B7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-13T22:19:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05212_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"WATCH_DOGS\\u2122\", \"trophyTitleDetail\": \"WATCH_DOGS\\u2122 Trophy Set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05212_00_00452624979CAE2F1D56AB42E5FEDA24608E37E706/B6B667B6C1DE7C2574F260B46EF092C230481D9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 28, \"silver\": 19, \"gold\": 2, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-10T11:56:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12285_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Cars 3: Driven to Win\", \"trophyTitleDetail\": \"Trophy Pack for Cars 3: Driven to Win\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12285_00_0034F3B5D31BF0428B52CA9C78E6982472375DCDA7/1A5EC0BC3C0B720984AB1B82856743C847E7EC6D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 28, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-04T16:39:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14751_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"A Plague Tale: Innocence\", \"trophyTitleDetail\": \"A Plague Tale: Innocence\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14751_00_002569CB2F5B3413F289EBDDCA75FFD32873DDC938/EE9463EA9F19AB4DE336E3CFC4728EE316CACCD9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-02T12:02:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15359_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Control\", \"trophyTitleDetail\": \"The game's basic trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15359_00_00D751EBF01D244B855D6F6505F39472370226458A/CA4CF82D2BDBC187FF50424C2BCCE6E88CD83DED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 50, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-09-24T14:55:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08538_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Need for Speed\\u2122\", \"trophyTitleDetail\": \"Need for Speed\\u2122 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08538_00_005BCD0C95E2E5EDAB4E272262983CCE2406A84C56/9E030E907739B174AB95B8B95645FBBDADB659BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 23, \"silver\": 19, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-09-05T16:24:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14869_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Tennis World Tour\", \"trophyTitleDetail\": \"Tennis World Tour\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14869_00_00D410FD990DC332517754D9635BF8ECC309A52562/E90F1D86AAC21A0A4AF31D7FF89110E4D39B0D2F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 6, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-09-01T21:51:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15866_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX\", \"trophyTitleDetail\": \"Super Destronaut DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15866_00_00078B6421D1D3F72F34BA8531DF9F95DAA2073C6A/5153D368B56B394685443A29D1F72997C3E993EF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-26T12:03:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17028_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drowning\", \"trophyTitleDetail\": \"Drowning\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17028_00_006D7A15B22D66885113D40DF0984805E8AD85A86E/2EF427BF36678170313A44B7E5F22B0FEFD51DC2.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-26T09:07:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18372_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mochi Mochi Boy\", \"trophyTitleDetail\": \"Mochi Mochi Boy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18372_00_006D75C76DA325DA3BA82787D123AFE47FE6F7378D/F75C291A627B1BA9930978146B3F110509D760A4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-26T00:50:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18815_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mekabolt\", \"trophyTitleDetail\": \"Mekabolt\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18815_00_001A58E12348E22ECA932D9A526378616D420E8EF3/97B6B10F49BD694613DD164123206631ADB14929.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-24T05:39:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18852_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mekabolt\", \"trophyTitleDetail\": \"Mekabolt\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18852_00_00A20FB709EB6CCA576C3E9F2DC335C79AE8DD2EB8/E61CD23AA05B026CD57084E27AAF7BAC71AFC841.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-23T03:01:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18816_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mekabolt\", \"trophyTitleDetail\": \"Mekabolt\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18816_00_0081300FCF6FA94B4C7DDA980B8DB4A52746904FA4/E7D24D8C212104B499DF0C83551F2C34D1535A6A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-23T02:13:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14855_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Slyde Trophies\", \"trophyTitleDetail\": \"Slyde\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14855_00_008646ABE1B9E332CFD421F9141FBE1E76D339A462/75A452B0098BFEF9879A45A996A9D2F83BD2280B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-22T19:09:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16357_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle Edge\", \"trophyTitleDetail\": \"Energy Cycle Edge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16357_00_003A0E852E62596DF7B0C5C5B372268FFCBA1421C5/6C28CF4D7C2773203695B795D5AD2494F5D651B3.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-22T17:22:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18703_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gravity Duck\", \"trophyTitleDetail\": \"Gravity Duck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18703_00_0090677192F999C437BEFB5A413DD5013E7EA82022/10D1AC8D292F918F127CF17CCC25A15E6B6AA609.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-20T22:44:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18542_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Wiloo Demake\", \"trophyTitleDetail\": \"Super Wiloo Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18542_00_002E72DB535C9C91C60DC7F5FB490A54812A87BD10/67FA776F100739519D04DBC4CFFA6DFE99AA6965.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-20T06:40:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18539_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Wiloo Demake\", \"trophyTitleDetail\": \"Super Wiloo Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18539_00_006C6D6673E587A091A6664A441567EB601EA4FD17/6362C83F84D775D698385A9BB98BEB1A970E99EE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T23:37:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18707_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gravity Duck\", \"trophyTitleDetail\": \"Gravity Duck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18707_00_00C744209D650D7E85E37EFA204C0026CBE691788B/1C3CF64E80C98AF69A1DF1A7A138CA591BCA98F6.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T14:00:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18302_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Attack of the Toy Tanks\", \"trophyTitleDetail\": \"Attack of the Toy Tanks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18302_00_00909F4D8F0ABC22A8049AFE639B642F1EF1DE19E7/CF147C7FE4515D8AF621F10F82B72914FB41EE3B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 29, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T14:00:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18704_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gravity Duck\", \"trophyTitleDetail\": \"Gravity Duck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18704_00_0015D2BBCD6DB094AA520A2CB1DEE4ED1DBF594E3A/642EBAACEA995D8AEE27F39E00B6A1E37D0FDF59.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T12:06:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11469_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"TEKKEN 7\", \"trophyTitleDetail\": \"TEKKEN 7 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11469_00_00342AB191B0899AC1FF3081CC92525DDA0CEF0F6D/DC6FD69B7FF02E72A30AF7553D5D0DE46E8FC176.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-12T12:06:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05799_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Amazing Spider-Man 2\\u2122\", \"trophyTitleDetail\": \"The Amazing Spider-Man 2\\u2122 trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05799_00_00650305AF76F1413D9BC1C9259BC43761C2C2072F/4B0A16F861F9D11B6694BBC8EB56A1CD631676B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 36, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 10, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-26T14:52:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05740_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"inFAMOUS Second Son\\u2122\", \"trophyTitleDetail\": \"Trophy set for inFAMOUS Second Son\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05740_00_0017967C4188CE8097C9F90449BD2673428F2F5C4E/084BD02D892260735318CE1DE2BB2FB1D42F22BD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 11, \"gold\": 2, \"platinum\": 1}, \"progress\": 66, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 9, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-19T18:30:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15015_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Horizon Chase Turbo\", \"trophyTitleDetail\": \"Trophies for Horizon Chase Turbo.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15015_00_00AA25C036CE26DF2B9411C7AC374AD37104277C66/AF3795777248FD1581F009C04DD93A8126A77050.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 32, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 5, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-19T00:25:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18299_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Attack of the Toy Tanks\", \"trophyTitleDetail\": \"Attack of the Toy Tanks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18299_00_00EE003B1D647286671F58B6114FFD9B2752ED5CFE/9D5F81A2F66DD07ABF639D928E7244117805B507.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-18T10:20:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18373_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mochi Mochi Boy\", \"trophyTitleDetail\": \"Mochi Mochi Boy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18373_00_00F96BC620B8E59B088AB6FF020B296A87C1131E30/B60B69E4C791FD422F42C7D78A5CDEB614D70063.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-17T12:27:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18375_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mochi Mochi Boy\", \"trophyTitleDetail\": \"Mochi Mochi Boy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18375_00_00C0AD07A46C96B6E31A8FEFE13C256CD5CC1CA05E/AC402A50EA66EAD537104F19457CE66EE109B436.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-17T03:11:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06510_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"LEGO\\u00ae Batman\\u2122 3\", \"trophyTitleDetail\": \"LEGO\\u00ae Batman\\u2122 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06510_00_00C40D8B4D4C52D172F09EB7AA7EAD46311B970762/9CB97ECED99A219144623D09C4806454B19C3B1B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 62, \"silver\": 4, \"gold\": 4, \"platinum\": 1}, \"progress\": 31, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-30T18:07:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09453_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Goosebumps: The Game\", \"trophyTitleDetail\": \"The trophy set for Goosebumps: The Game.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09453_00_00A5087485D327D6503CD06B5C88D8001F2085B1FC/DB31A5F0A8C0CEA149906C3A3FD7DF74AB0C8C4B.PNG\", \"trophyTitlePlatform\": \"PS3,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 21, \"silver\": 17, \"gold\": 2, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-28T11:24:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15235_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 19\", \"trophyTitleDetail\": \"FIFA 19\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15235_00_00DCA8FDAAA2EF8F9CD6F8DF54A05F86F20B15A387/0365E7A5671529C46C53E7C75233C5BF9BB01C2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 29, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 24, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-26T18:46:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10578_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Adam's Venture Origins\", \"trophyTitleDetail\": \"-\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10578_00_00F756CE21594CF8487C6A7E4DA739EA544425A1CE/F4401A44629ADA01504541CE41848F4C3EEC960B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-26T12:59:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05452_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"RESOGUN\\u2122\", \"trophyTitleDetail\": \"RESOGUN\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05452_00_00385F8A82C3F57757FD097D8369E0B5DD097F23F3/E794883A863904A5E71B98405516D297D4F50402.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 40, \"silver\": 17, \"gold\": 7, \"platinum\": 1}, \"progress\": 3, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-22T07:30:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11925_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"LocoRoco\\u2122 Remastered\", \"trophyTitleDetail\": \"LocoRoco\\u2122 Remastered trophy set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11925_00_00C6ACF20D185616E471F1B9F495A791EDF77B07E9/9ABCE9FEC2E4845C14EC7981B81C3844B5B9B5C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-22T06:03:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleDetail\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18206_00_00B385DF39A57C25C6F2EA12FCA0E4E61C9BEF9528/98FFDBF40080890263116669D43A8D28D4B152FC.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-20T05:01:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18203_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleDetail\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18203_00_000B39D1B59090D0C20C70D3E3D97AD4CE029B0530/6BB544C8D5C4819324ECA90BDAD48AA713E2B728.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-19T12:09:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16776_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Daggerhood\", \"trophyTitleDetail\": \"Daggerhood\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16776_00_00994107C94C92AF923CDEF565971EDA28CB728A70/85FAC5CA713C65EAD0FEF557E79481C55D27DCED.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-17T15:58:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16775_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Daggerhood\", \"trophyTitleDetail\": \"Daggerhood\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16775_00_0017F88236B4A0A043700514B6DD932114F630D385/57DE59EE5DC29484E98EDD4AE8BFADC46EC7C162.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-17T11:29:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09167_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Marvel's Spider-Man\", \"trophyTitleDetail\": \"Trophy set for Marvel's Spider-Man\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09167_00_007280BC379B5701D2D862A6574F73488DA1CDFBBA/871AF040ECAA2A94B7EB5534E062AEAF13D72C35.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 54, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-09T21:54:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10075_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Sherlock Holmes: The Devil's Daughter\", \"trophyTitleDetail\": \"Sherlock Holmes: The Devil's Daughter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10075_00_004192F9DC2D02D1CE9F3547E17A8A3562AAE492EF/FEB804F8AF35668B704A0E078CDF7F0BDC83184D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-06T07:53:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07158_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Hardware: Rivals\\u2122 Trophies\", \"trophyTitleDetail\": \"Trophy set for Hardware: Rivals\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07158_00_00D39FD150C9A93E29B6F81B1B15C111CA9A263308/C25B16ED16F12B60F1E09F7AE4A90FCD6435286D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 29, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 13, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-05-21T14:40:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17533_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Weekend Mode\", \"trophyTitleDetail\": \"Super Weekend Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17533_00_00877468BB2A6BBBD9AE594EDDBB93DB8BEB8554DA/CF4C6CA60F36F6004EA5B4B068DB48416F976D97.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-05-09T12:01:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17516_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Weekend Mode\", \"trophyTitleDetail\": \"Super Weekend Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17516_00_00541C4A71E2164466073AC6AE971DA5EF21644A81/30A1313ECB9B352C20FAD0C67334CCC052390AD0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-05-09T11:23:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17541_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zeroptian Invasion\", \"trophyTitleDetail\": \"Zeroptian Invasion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17541_00_002BB665D05ED34ACC6E004049E179922814657A41/13CEEDA2A003E7BED90B54C74C7F6B226FE0C6D0.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-29T21:53:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13007_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Twin Robots\", \"trophyTitleDetail\": \"Twin Robots\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13007_00_004884B74A73318DABB945BAE5BE098980E0A39A25/017841918C4693CC2837E8A688583F4794875F09.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-28T00:17:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17539_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zeroptian Invasion\", \"trophyTitleDetail\": \"Zeroptian Invasion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17539_00_00F2818987448321ADFEE0B15D984C9727AD1DCE6D/C9826FC616DD70749634A583D955322EB8156A90.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-26T21:43:37Z\"}], \"nextOffset\": 1300, \"previousOffset\": 1249, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16093_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16093_00_00D2B638402A6F845EFFC4CB6CD28C0E499C4E0D37/50A015C04DD0A7827A3B559B88D58DCCA5AAE8E6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-16T22:36:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20423_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed 2\", \"trophyTitleDetail\": \"Reed 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20423_00_00F2B1D8D2DECA9CF6518C514370FDC2DB41BD40B4/83159920319FC28B3CF6736DBF53259135E3860B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-14T01:33:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20420_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed 2\", \"trophyTitleDetail\": \"Reed 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20420_00_008A0180840A5303C9ED12B3A900EA643917FE1154/CA5D4A2C0B8B60CA3D939D4EA648679110B429C5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-13T20:49:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14706_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Call of Duty\\u00ae: Modern Warfare\\u00ae 2 Campaign Remastered\", \"trophyTitleDetail\": \"Call of Duty\\u00ae: Modern Warfare\\u00ae 2 Campaign Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14706_00_0029C4E3C5E3C900EE9AD926F72BCCE4ED27262D1D/599BA3A49BC4AC1CE5BE76CF35A6B606217F86ED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-12T18:56:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20943_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Memory Lane\\n\", \"trophyTitleDetail\": \"Memory Lane Trophy Files\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20943_00_007C418F93E17BE2F43B83194396D43AD65B17AC33/44F0BE26D6D13D6FA916B68E959D897FA18DAC35.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-12T08:03:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15077_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"BRIKS 2\", \"trophyTitleDetail\": \"Trophy set of BRIKS 2.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15077_00_009FA22163C896D637AC6549FC6BFBA1A9B227554B/603089A1F9CC50804CEED6A09F26AA86188DAA8C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 13, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 16, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-07T21:41:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15896_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Erica\", \"trophyTitleDetail\": \"Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15896_00_00FAC3B936D631189A6A2BDCA520DBED0AAC0A1EF8/8FCC30F6B591231DE6ABA42B8E66AD588DB7C332.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 12, \"silver\": 18, \"gold\": 3, \"platinum\": 1}, \"progress\": 45, \"earnedTrophies\": {\"bronze\": 12, \"silver\": 9, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-05T00:38:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19122_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Red Bow\", \"trophyTitleDetail\": \"Red Bow\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19122_00_0072D1C46320871297D5C00DB9C16D6E6E3466E722/4CDDD5E8F1D03A3F62B7EF2595EE18C78A2AB7F0.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-08-01T20:28:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20802_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jisei\", \"trophyTitleDetail\": \"Jisei\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20802_00_00323A2487600EFFC417817471133BD03083272D8F/C44B75DD9917DB5E98BEF2F9CB5A5E03C9735BE0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-30T18:13:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09124_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Unravel\\u2122\", \"trophyTitleDetail\": \"Unravel\\u2122 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09124_00_0081C0245874DC9B27E63C282FF13C0BEC7A6FB553/E54C44BA8969BBF703600979CB2596AB2441E293.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-29T19:24:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR21104_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"112th Seed\", \"trophyTitleDetail\": \"112th Seed\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR21104_00_003BF5843B42FD1236B41789E5AFDE7E6CC71FDAE6/13535BE2EA9106EDD0C64E83D4BA09C97D80E36F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-29T01:04:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14822_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Warlock's Tower\", \"trophyTitleDetail\": \"Warlock's Tower\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14822_00_00F0A5CF0695AFF82BC0CE6FB9A98C8F40EEB91DB4/EB74D391D638949F8245C9078C53C84C64DAE7FB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-21T13:03:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14825_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Warlock's Tower\", \"trophyTitleDetail\": \"Warlock's Tower\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14825_00_004C10F9B0D706872E91ED504872F2D25B0FC61DF4/0DC218BD51F1F35C76A064E014B49ECFAB387369.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-20T18:35:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Neon Junctions\", \"trophyTitleDetail\": \"Neon Junctions\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18132_00_000E9F5AB82083E1CD98E5720B2DCE092771C1ABC4/BE600F987B04AB1C1C66AEDC1DA573A46635F478.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-18T22:56:12Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17768_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"FIFA 20\", \"trophyTitleDetail\": \"FIFA 20\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17768_00_00B936C5024B6DF2FF7C57F70325E7BB14DDDE7900/0BB2A91A7138173767E4734B7CA506F6CFC5C895.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 12, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 78, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 14, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-07-10T23:07:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18853_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FINAL FANTASY VII REMAKE\", \"trophyTitleDetail\": \"FINAL FANTASY VII REMAKE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18853_00_00FD138430E8FD102510E0D521B664AF1D0EC90710/11B055F3D04D4F274474B3B0D2F860596ECCDCA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 44, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 34, \"earnedTrophies\": {\"bronze\": 24, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-16T00:42:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18320_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hoggy2\", \"trophyTitleDetail\": \"Hoggy2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18320_00_005C81828326615943675E3FE8766EC45C6CE79DFC/A6B210475DEF55D7B27992F047511BB052D4B753.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-12T20:24:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18321_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hoggy2\", \"trophyTitleDetail\": \"Hoggy2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18321_00_00551F65BD1429749232D5E36795D8FD97268E412D/F2DAA3929637540034FFDC51BB5A3D11BFF0BFBC.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-12T13:06:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19467_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand 2\", \"trophyTitleDetail\": \"FoxyLand 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19467_00_0068F7D8BCC4A7F7A78B0C75ECCBC5DBB4B2C44A3D/E7FC51922A3CF932413CAD737C8EE68F99C70318.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-09T00:30:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19470_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand 2\", \"trophyTitleDetail\": \"FoxyLand 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19470_00_00FC7A773DA09C61F8EE407ED053E91694BC7C3E75/2A59A74351E41D38A98730F441AFC0F371364652.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-08T01:41:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20579_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gun Crazy\", \"trophyTitleDetail\": \"Gun Crazy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20579_00_003AB14B4EDF3E92317F7DAB19356F35D0733104AC/46D3BF7EA1F5382B24264D746FFC8CA7BAC5424D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-05-04T18:43:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20045_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunder Paw\", \"trophyTitleDetail\": \"Thunder Paw\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20045_00_0033087739A99DF3E5D08F6E5E36CD92A61AF43CC9/455B162C8F8F73DFDDC39DFF766B59001E97D828.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-29T17:02:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19730_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Explosive Jake\", \"trophyTitleDetail\": \"Explosive Jake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19730_00_0015193ADB1A1BA0831B0DEA864A5924EAC844DB29/96816800B8042D9BE8FCFB9EB70B589C9AC84824.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-28T12:01:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20051_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Men\", \"trophyTitleDetail\": \"Blind Men\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20051_00_00B5BFB1EA3B147ED3C653B280D930A208024A7C36/12AE6C56429420F04577F03555F6E3D946A6FEBD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-27T02:52:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20048_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunder Paw\", \"trophyTitleDetail\": \"Thunder Paw\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20048_00_0092DBA770BC2849788436FECAC8941FCCDDB794CA/69A5E694A96DD35484C27A4BF5A96DC7C77036A9.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-26T05:28:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20046_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Thunder Paw\", \"trophyTitleDetail\": \"Thunder Paw\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20046_00_002A8AEDBD6078ACC2A0C467D9387B0C7A5400FEC0/04F66489E217D0588CC0153BBE73A3DA30E3A856.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-26T02:05:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19729_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Explosive Jake\", \"trophyTitleDetail\": \"Explosive Jake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19729_00_00437316763B2B28A4F5B43983989419DF19807395/B012A690C40BDF090F1F3DAEF50180AC4A3C58BE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-22T19:08:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20245_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Duck Souls+\", \"trophyTitleDetail\": \"Duck Souls+\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20245_00_00B203239FD9698A075C07F80CCA9E66196F7471CA/7A67685CE981047860A473F869A491EBCCEC920A.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-19T05:01:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20365_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Duck Souls+\", \"trophyTitleDetail\": \"Duck Souls+\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20365_00_004CC23501B6C47250A59A6CB74F492A8A5468E7FB/ED9F0C3AF0CFF9BB022D88E0968AF78211BF0D61.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-16T07:46:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18091_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Rush Rover\", \"trophyTitleDetail\": \"Rush Rover\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18091_00_007D77823A5DFBA98A493CB18E613042C8CD427062/2E74B554BB06EF6852FCA8DF2EC4C8253BCC4357.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 7, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-16T00:53:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20054_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Men\", \"trophyTitleDetail\": \"Blind Men\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20054_00_0041D33F665948E9A95A14686A5E5C3796DDCD47C3/906F12355E195F3EF17272F959143A2C050C33E3.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-15T22:28:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR20052_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Blind Men\", \"trophyTitleDetail\": \"Blind Men\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR20052_00_0035203FB173F2B5CAB47DA3BB747F5616B760C7C9/B8640591E29F9EC30A173F2F08E888D4FF699B2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-15T16:53:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12300_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Town of Light\", \"trophyTitleDetail\": \"Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12300_00_009D75EE14C033507A2A21E511102840FE9DE85C24/47C1B54CD264B2A65B1A086B2502327001D17406.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 12, \"gold\": 7, \"platinum\": 1}, \"progress\": 85, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 10, \"gold\": 6, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-07T02:27:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11600_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"SONIC FORCES\", \"trophyTitleDetail\": \"SONIC FORCES Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11600_00_0034B28756434970DC73A42C48945E0686BB41C601/73C512E32FA858876377C084F701EF74A74CC719.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 35, \"silver\": 10, \"gold\": 3, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-05T14:19:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19568_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"War Theatre: Blood of Winter\", \"trophyTitleDetail\": \"The Core Trophies of War Theatre: Blood of Winter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19568_00_008CB7DF8163E4AA67534A1A56A37EF6C3F52C3457/C38872A97B8371F39D353857326266AA88C9C95C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-05T13:05:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13719_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Life is Strange 2\", \"trophyTitleDetail\": \"Life is Strange 2\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13719_00_00A72EA534726E4CB30CF97E4D9E3A44A119E70232/0B77B8168D8436EC369E575D6FCE25DA23EAFF54.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 30, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 30, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-04-04T02:01:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11424_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Assassin's Creed\\u00ae Origins\", \"trophyTitleDetail\": \"Trophy set for Assassin's Creed\\u00ae Origins\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11424_00_00B0C1B25B2BC046B57977D1690CE5A22AFC430A01/FD3786571EEA68F65321230E711DCAE92BC53794.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 44, \"silver\": 21, \"gold\": 2, \"platinum\": 1}, \"progress\": 71, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 15, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-30T16:38:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17659_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleDetail\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17659_00_002391766BE72DEECDBED22B79A653E137E1DB30DB/41C3106AE508B1A25DBDC0328DD960869732B6F6.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-24T17:01:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19225_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bucket Knight\", \"trophyTitleDetail\": \"Bucket Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19225_00_006C53F574CBE34FB2F98791CB4539CF753C87033B/E8C84CFCD83365A6E93F70BB85FC77E9A80E02E7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-19T23:52:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19226_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Bucket Knight\", \"trophyTitleDetail\": \"Bucket Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19226_00_004D338529A2F7C306953277E171B718AA3624706B/7DBFF82BC18A07DA9B0045F42732CCA34C5E4E31.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 20, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-19T14:35:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12787_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Marvel\\u2019s Guardians of the Galaxy: The Telltale Series\", \"trophyTitleDetail\": \"Guardians of the Galaxy Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12787_00_0088A5C75B49DCBDDDEDD799779BD0C58655403181/2603A24F47E1C00DA441248537CF384E58D1F02B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 2, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T18:38:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19637_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Syrup and the Ultimate Sweet\", \"trophyTitleDetail\": \"Syrup and the Ultimate Sweet\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19637_00_004E1B156D63A31396D27DD7D1EFAC6CF32579680F/F9257750342CD1C375C54CDE565555AC3EDA2841.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T02:28:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19633_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Syrup and the Ultimate Sweet\", \"trophyTitleDetail\": \"Syrup and the Ultimate Sweet\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19633_00_00E97E8E7D3BD2F4088521FFCE2BAB1E9D2AF1F9E1/14D16FD8FE46559693DA266D12484B42AE89D3CC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T01:15:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19634_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Syrup and the Ultimate Sweet\", \"trophyTitleDetail\": \"Syrup and the Ultimate Sweet\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19634_00_007187DAA7379195E2B1DB6EA68CF2BDCF4D3A61BD/6300FB6E220E840D6CDD0AF4C72624D92694E33A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-14T00:42:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19548_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Milo's Quest\", \"trophyTitleDetail\": \"Milo's Quest\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19548_00_00554DFA5B54C97179F2733EA3FE9BD83BD90D5915/BC8EF2116EEDC2E0562CF6189E67BED7BC2925E8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-07T05:17:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19788_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed Remastered\", \"trophyTitleDetail\": \"Reed Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19788_00_001A697FDF9A08CA8C08D63929B5630E1C9BB20548/9DAA4EAAD2DF6716F42BD7B2903AAAC0E590E33D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-07T04:59:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13736_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Sims 4\", \"trophyTitleDetail\": \"The Sims 4\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13736_00_00D61FD6E0E86E188AE92590EA0DF2914E0B153736/CF4FB17B134A994843C56487AE77BD9655D9BED7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 41, \"silver\": 7, \"gold\": 2, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-06T23:35:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13017_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Peasant Knight\", \"trophyTitleDetail\": \"Peasant Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13017_00_006CBCB2833F988E1BA1B46B7876C42D21D82045AD/E1B0A7B15B5CC3246B2AE5CBB7AEFB4A04EDFD48.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-05T11:40:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10954_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Attack on Titan\", \"trophyTitleDetail\": \"Attack on Titan Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10954_00_00B65BCA71F1981874362B31741F1F40C4F3FDE4E5/493E9902D3B50BA197FBE6F67DED6938B25AA10B.PNG\", \"trophyTitlePlatform\": \"PS3,PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-04T18:22:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15091_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Adventure Time: Pirates of the Enchiridion\", \"trophyTitleDetail\": \"Adventure Time: Pirates of the Enchiridion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15091_00_002CDA3FE99AF35C4FC1300014F4357C85377C168A/77F9671604B55C282490FA97FAE4F270232CF34E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-03T12:50:05Z\"}], \"nextOffset\": 1300, \"previousOffset\": 1249, \"totalItemCount\": 1446}" } } }, @@ -1743,34 +1740,34 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:04 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "30064" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" + "31231" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:53 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17031_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drowning\", \"trophyTitleDetail\": \"Drowning\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17031_00_00CBFE26254E8B8B5E36E469CD60BE1D4384D85D6B/C301EB2B34CC5C3C27B1EBAD6ACB435A65C3D945.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-26T00:13:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17030_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drowning\", \"trophyTitleDetail\": \"Drowning\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17030_00_0032793A864148BFDF0473E43C81FB1201A64A0249/40D0F9B8E5CC61D2623B8F9A442E0E807243FA1E.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-25T10:01:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"36 Fragments of Midnight\", \"trophyTitleDetail\": \"36 Fragments of Midnight\\n\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14205_00_009F0C0D38EEC0179F9D4E5BA643156594922F3262/52117F9AEA01B859E121DBD719D165066F38D9A1.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 45, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-11T21:52:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15284_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tetra's Escape\", \"trophyTitleDetail\": \"Tetra's Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15284_00_006BA1FE0A7A13ACDCBA99A8E95B584C36936200ED/2312896CD9E62BEF5C0B8E6D05B020AF58069C56.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-06T13:00:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15867_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX\", \"trophyTitleDetail\": \"Super Destronaut DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15867_00_00471C1351F2CD3D76DBFF50E42F401FFCD367FADF/512048B794ABF26B4258791EF625ACE0D6923940.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-06T06:44:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13574_00_006FBF127E50B74F3F58F39FBE1CA9212FD2DB3092/539F207B530CCBDA8E6F39115C39626E32183173.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-05T13:54:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14641_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Midnight Deluxe\", \"trophyTitleDetail\": \"Midnight Deluxe\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14641_00_00BEC8E413B03509C398F4557927F18B1871D51C82/1C0B4B43E7F3EE62B7B7C200A21ED9961B3F1B51.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-04T21:49:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16080_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jack N' Jill DX\", \"trophyTitleDetail\": \"Jack N' Jill DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16080_00_006C3D53679936E52E3A7013494D89F3FDC77C9837/D94DC7DC289FD60F35E48A5E87125519E87B90A4.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-03T23:10:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11881_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo\", \"trophyTitleDetail\": \"Glorious trophies for My Name is Mayo! \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11881_00_001DD30435132CA06759263D5F5914B309118A2BAE/F39EB6FF641E001AFEEC78132A49C906718E859B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-03T20:18:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15713_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15713_00_00EAA0C122F64732D74DE2066952E11DF5DB788CD5/BD02BAD8EF365B2680E06816E431B512A4C9DA04.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-03T17:29:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15914_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wardrobe\", \"trophyTitleDetail\": \"The Wardrobe trophies list\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15914_00_00ADADB60A7E31F1D2AAE165B5A27AE94BEA1EE5E4/9330A21501B38CA4136DD46E25B23DB0A23A658D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 7, \"silver\": 13, \"gold\": 6, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-10-27T06:09:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15711_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15711_00_00BA9FDA474AAECBEC10CA1FF07EEEC63CCCA4CB9E/AD38B6639BD73F1A85EEDD2DE2186F5E207676EB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-29T13:51:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15865_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX\", \"trophyTitleDetail\": \"Super Destronaut DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15865_00_0053383E1EE00136896DF1095287CD0B0F2596D23E/2897315393E8D4D757870CA2790B8969D2DE2B66.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-29T09:46:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15281_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tetra's Escape\", \"trophyTitleDetail\": \"Tetra's Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15281_00_00AF5AD0CC3F1BD8E3D39AA8CC0EC94EB4D0E6CB0C/05F02AA9848583504E3710E59084E6E1DB87276E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-29T04:59:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16078_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jack N' Jill DX\", \"trophyTitleDetail\": \"Jack N' Jill DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16078_00_00A7D00ECD35A5AB51F24B66C2C904129796BBC424/54DCB38B068C510FAE765FCD0821175CF11C674D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-28T13:37:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07882_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Game of Thrones\", \"trophyTitleDetail\": \"Game of Thrones\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07882_00_00902BCC5CC70246568073BDB3A48831E120D4D456/11ACFF657C71CA36E16F3A6AEA555BDD47CC0246.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-17T04:15:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07240_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wolf Among Us\", \"trophyTitleDetail\": \"The Wolf Among Us\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07240_00_00EC221A2B777FCF1F4741C64DB773D61703B9C3FE/10EA1AB61FD9D753289CDA233B3306CB86928EC5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 25, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 10, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-08-12T01:24:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05335_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Need for Speed\\u2122 Rivals\", \"trophyTitleDetail\": \"Need for Speed\\u2122 Rivals Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05335_00_00FB540A0E89C57873255969C9151095BC35A939CD/E79D28A0D064F9AB8B3D08F3933690E0C5F4C47D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-30T11:33:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14250_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"NORTH\", \"trophyTitleDetail\": \"NORTH\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14250_00_00158240DCB7937FCF6BEEF2832200CA66D0BAE61F/B2EB8F3BD352C11894D0F40D37E9674C44AD8BC0.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"progress\": 15, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-09T17:35:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15588_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hex Tunnel Touch\", \"trophyTitleDetail\": \"Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15588_00_009CA93EFE83A9450BE987F63D2DD62E48B348CFCD/D7D66773825FC645A728A0051895731E9F6B6418.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-08T18:42:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14802_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Metropolis: Lux Obscura\", \"trophyTitleDetail\": \"Metropolis: Lux Obscura\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14802_00_0036F6033EC3FE7AE079C3E083CFED678E36BC0142/4E907329EC1432E58D29FED6BC78A059A0B3DC3C.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-08T18:17:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Planet of the Eyes\", \"trophyTitleDetail\": \"Planet of the Eyes\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12569_00_00C116751FCAF3BACB05C89D20A30616C362413282/5BB4557644282DCC72FE380601DAC13C3F6E418B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-06T11:15:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06616_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Order: 1886\", \"trophyTitleDetail\": \"The Order: 1886 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06616_00_00EB277B7EC4BA4D93F39512B611F38502780E7821/7188BC1FEF2CBD47B77122FFE78EF742011117FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-04-22T19:58:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13011_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Twin Robots\", \"trophyTitleDetail\": \"Twin Robots\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13011_00_00295A4BF68FE81884EAE37BABE12A04B7624F5E9F/6D363DE46FE618D9EDC300157336516706D1DBE7.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-04-15T11:35:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11243_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Batman\", \"trophyTitleDetail\": \"Batman Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11243_00_00BA59038C4D483C5AA9817CAFD98B3DA960E696D2/7BFFC34724C6B792D74A8FE8A11456B33C54F6D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-04-07T21:13:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14252_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Spiral Splatter\", \"trophyTitleDetail\": \"Spiral Splatter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14252_00_00D11A3DB0F688CCDC11D239B75D1F11F9D25C6872/82EE50B01BC417904F06CBB794E6BCDE576AEBD3.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-30T08:08:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12786_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Jak 3\", \"trophyTitleDetail\": \"Incredible trophies for Jak 3. Collect them all!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12786_00_00419731C4F05F453AD825D6D9677036A553AB4BE4/2338E14F1CDF4E7B895E14BE7F489AA2584DB545.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 88, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 8, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-25T08:07:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12370_00\", \"trophySetVersion\": \"01.25\", \"trophyTitleName\": \"Human Fall Flat\", \"trophyTitleDetail\": \"Human Fall Flat\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12370_00_00CC2A33F0B7088B2E1BAD7AD022D128CFFEED7168/941C13F067055781644015C6111117724222DBBC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 84, \"silver\": 14, \"gold\": 1, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-24T20:01:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12791_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jak II\", \"trophyTitleDetail\": \"Awesome trophies for Jak II. Collect them all!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12791_00_00F656AC2612B9EF66FEC2BBBBD2D51F5F00E1ECFD/CA72AED2E7AE925E608F9FA8E033C0C562CE6BB8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 26, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-24T11:59:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13406_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"BRIKS\", \"trophyTitleDetail\": \"Trophy set of BRIKS.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13406_00_00AC33590008AE54C6DDC4A7B0AC6E630EBE65ABBB/B044573BC4593EA49ACEFB8F351F557222A6BEFD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 9, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-21T18:08:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11474_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"RiME\", \"trophyTitleDetail\": \"RiME Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11474_00_00527F6C667B1CCF29F046004D690C21E134F3D444/94A73387AE355A3E6CB17A173CEF08B4EEBFB84B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 14, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-14T08:27:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14535_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Invasion\", \"trophyTitleDetail\": \"Energy Invasion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14535_00_000C471504CED8EF2E82FAEE2E0BE545A6FE8F75D0/470799729FD7A96354AC31E9657232A929FC9182.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 90, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 7, \"gold\": 7, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-10T17:56:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14714_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleDetail\": \"The trophy set of LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14714_00_000780E10EF95AB9D7193947B4E52A024EDEC7C2D5/73C63DAD502C329F94453FD51096E3DEE610DB2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-08T01:16:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14639_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Midnight Deluxe\", \"trophyTitleDetail\": \"Midnight Deluxe\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14639_00_006CBC7E352BD5F4956F1517BE860B0D6609C8B82F/D9C348113941C34480E57145C36D7559C0BA5852.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-07T12:26:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09391_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Day of the Tentacle Remastered\", \"trophyTitleDetail\": \"Trophies for Day of the Tentacle Remastered.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09391_00_003C2CA9BF7AB9FE5A27EBAB622C334E4B0F1C538C/85C838A213DF9C6317481A84E17C58D4373B2405.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 53, \"silver\": 3, \"gold\": 1, \"platinum\": 1}, \"progress\": 27, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-03T19:14:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11987_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Lara Croft GO\", \"trophyTitleDetail\": \"Lara Croft GO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11987_00_00BB5A4D22C1B2938A65354EA462361C7691962994/2C5AA5F87CC47A9BEC05D369A674EEFF98759FB7.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 3, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-02T13:06:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07466_00\", \"trophySetVersion\": \"01.85\", \"trophyTitleName\": \"Rocket League\\u00ae\", \"trophyTitleDetail\": \"Rocket League\\u00ae Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07466_00_002B372EA023E6E03E3194E148C0B2BF285AD8CE49/7E97D451B278DACDDD0CA8D59AFF7BF62E1A6560.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 51, \"silver\": 24, \"gold\": 12, \"platinum\": 1}, \"progress\": 46, \"earnedTrophies\": {\"bronze\": 29, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-16T13:22:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10801_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"KNACK 2 Trophy Set\", \"trophyTitleDetail\": \"This is the KNACK 2 trophy set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10801_00_00C91EE944342F4730FA455266FCCFF954F920F05A/89F8887805D9B1D280DA33FA2F34F8DFE25F8E85.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 27, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 7, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-14T11:06:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07731_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Tom Clancy's The Division\\u2122\", \"trophyTitleDetail\": \"Tom Clancy's The Division\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07731_00_0005CB40540B74C7C1D25734106ADC4DD7D8EE46A2/E4398EED8ECF86D2C830A6B22B778BD5288BA589.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 48, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 3, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-08T19:28:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14816_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"36 Fragments of Midnight\", \"trophyTitleDetail\": \"36 Fragments of Midnight\\n\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14816_00_007B6AC2FDE65DAD7CA2972EB6186265E8ABACA6A7/A809D374BA7B2B40CD8029704D909A6FD69F817E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-07T20:05:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13354_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Life is Strange: Before the Storm\", \"trophyTitleDetail\": \"Trophies for Life is Strange: Before the Storm\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13354_00_00A381C4CD43B1C0C316597E9B59F8A4AFF55EF018/20410E91FCB5A22B12C588FCD7F217A36271FD1A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 15, \"silver\": 15, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 15, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-12-21T12:25:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09965_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ARCADE GAME SERIES: Ms. PAC-MAN\", \"trophyTitleDetail\": \"ARCADE GAME SERIES: Ms. PAC-MAN\\u3000Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09965_00_0098564427CF86F90C1DB77E908AB26E32CB5EF4F2/4A5D9AA025741C3F0CD8FABC0D05956969500F93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-20T09:24:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10765_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Koi\", \"trophyTitleDetail\": \"Koi Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10765_00_001EF42BF865F52B3A8032FD26811B959590FAF06D/36E35EA280887938F4738F82327F000DB4484E99.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 17, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"progress\": 95, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-20T09:12:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13544_00_00C433FA00F515A6086B9C618F739FBF2D0ACB3572/6F4BEA8E6FE443500D048FFBF0BFAF699518E4FB.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-19T07:51:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07228_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Tales from the Borderlands\", \"trophyTitleDetail\": \"Awards from your trip to Pandora\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07228_00_00912E8D33E128E6DA27E9041254DD5CC878F676D4/5C8E0E69C5A0FD407CBE4F107C5E86D280031759.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-18T14:12:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12765_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Late Shift\", \"trophyTitleDetail\": \"Late Shift\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12765_00_00D7E62B6C42386C003BDC816D485A05CAAD5E2172/903CB0957B8A6114EF1F5CE7A02116B3A6F92EA0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-16T10:18:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10328_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Hitman GO: Definitive Edition\", \"trophyTitleDetail\": \"Trophies for Hitman GO: Definitive Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10328_00_0052D50FD46ED07458C0550CAC3B6552B3703E90DE/3C29D90F9202F08D75D0DE6A5A46472E2ED280AA.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-15T11:10:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11491_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Nubla\", \"trophyTitleDetail\": \"Nubla\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11491_00_00B4D12A461CC79897245CFB164D7DBCF460CE774C/A467226B144B174A8578F555D63ADD040687ABD4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-12T08:22:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12624_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mr. Massagy\", \"trophyTitleDetail\": \"Trophies for the glorious Mr. Massagy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12624_00_004F81DB70BFDFC010FBAACB19B756F90B02D0FB3E/860C00E76A8E00F00CB7C0200E6EA4432EAF0AFE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-06T08:18:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07875_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Life Is Strange\\u2122\", \"trophyTitleDetail\": \"The trophy set of Life Is Strange\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07875_00_0026D95B298228B7F693D8DDBFF42C4F4BCC3FF2D2/ACC2A8C6C222E9B89D76B7A10E7209EDF1F56E0C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 59, \"silver\": 0, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 59, \"silver\": 0, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-05T19:32:54Z\"}], \"nextOffset\": 1350, \"previousOffset\": 1299, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13016_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Peasant Knight\", \"trophyTitleDetail\": \"Peasant Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13016_00_00630E95A6274D645C3E2A7E357D74C36DAC24A26D/AC38F0CAA9697DEDFCA75BB84B743AAEB3BFA285.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-01T19:00:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13006_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Peasant Knight\", \"trophyTitleDetail\": \"Peasant Knight\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13006_00_0054CEE8F787A4D66E9B593DB9685A9C844A6937C7/08CCC4CCE29668F12CEC02E1DD84D4E1EEED6386.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-03-01T16:22:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19791_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed Remastered\", \"trophyTitleDetail\": \"Reed Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19791_00_004B629E4083EDF7266AC3E6CFE12DF81638092CBD/BAE414A083884439EA35215F04F7DCD409AD69E5.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-29T16:33:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19789_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Reed Remastered\", \"trophyTitleDetail\": \"Reed Remastered\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19789_00_00A027D63162B6553E33FFE455597D669CEC4FE3FF/012E8315DAB188C2CB1248D681EA500C7A2CB122.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-29T11:24:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15142_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Mortal Kombat 11 Trophies\", \"trophyTitleDetail\": \"Mortal Kombat 11 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15142_00_00246767A718D5EDB5D5EE7BE7ED04AA97AB13D805/6006C9FD0F9A66A820BFAB7B13109CAD7A4BC83F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 50, \"silver\": 7, \"gold\": 1, \"platinum\": 1}, \"progress\": 52, \"earnedTrophies\": {\"bronze\": 35, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-27T13:38:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19878_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Project Starship\", \"trophyTitleDetail\": \"Project Starship\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19878_00_00726F76209C943E205123B6C786A31EA7E5F3392B/A295390DFE2B0FE729F7AEB72C10AB9AF96F1A09.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-27T10:48:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19551_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Milo's Quest\", \"trophyTitleDetail\": \"Milo's Quest\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19551_00_00228678EA23B78260B2DF338701FA9D5D9F0B073D/AB80C0CB57F496A61DE7D7EF6883D88ACD16968A.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-26T19:08:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19549_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Milo's Quest\", \"trophyTitleDetail\": \"Milo's Quest\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19549_00_006A515379B2B3AC2FA87D87F8090CDB07A75F56B7/B568E44A009CC9822CA63633D3349FB3CFD14B92.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-26T18:06:20Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11159_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Jazzpunk\", \"trophyTitleDetail\": \"Have a trophy!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11159_00_00CFA7812C11E87215DF2EBEE3F362DC8E06430DD6/F5261FE9B2D308113455AE1DCFD85F3CFDA35B82.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 9, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-12T21:18:00Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09229_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Goat Simulator\", \"trophyTitleDetail\": \"Goat Simulator\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09229_00_0083DE905271C970376786195C3A87FD9FB5AEAF16/80A2FFBE208F77346A5CEC1C31B99A98D83E8005.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 5, \"definedTrophies\": {\"bronze\": 62, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-10T20:59:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16643_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Planet RIX-13\", \"trophyTitleDetail\": \"Planet RIX-13\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16643_00_000E6A464B0B5151F04861D64C77F73D914C605A3A/45ACDCBECC1D935B40451E5510F0DFD8A060C4DE.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-08T21:00:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08983_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"NieR:Automata\", \"trophyTitleDetail\": \"NieR:Automata Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08983_00_0028401200C35DF79459606ABAD48478BB4ED49539/E1BD1DCC141217DFB0A7180EB6EFF8A63156B4AC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 13, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 32, \"silver\": 13, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-02-08T16:22:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18921_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"STAR WARS Jedi: Fallen Order\", \"trophyTitleDetail\": \"Jedi: Fallen Order\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18921_00_007F35A3124F896460E9067DB88203B9F90D5D610E/73EB07D4EEBE8EEDFEF84DB7C30DB43941B75ED6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 25, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-29T00:18:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15712_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15712_00_00FE3002E21B9B0BB0ADDA1629AC75D9CAF7C64F2B/F70C9A4017EADF663E2C013A44A01E83EEF16D2F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-26T16:04:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17080_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Stretch Trophies\\n\", \"trophyTitleDetail\": \"Stretch\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17080_00_0062FC088489991FD96E3322AA5EDEE55F7CDBA9DC/7A12F2ABEFC192453C0531CC3D58DECADE18C8FE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-24T00:13:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13242_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13242_00_000600D7DACCA59766CF450DAEEEBE7AA0F269C525/908A7064B707AC3CAC422F2C4E3CBCCF13243BC8.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-23T23:27:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19399_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Without Escape\", \"trophyTitleDetail\": \"Without Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19399_00_00A1649314E6F487BF1D1FE0013CF355570C2D0C66/8BD94D0E8EDCDD585E353AAD66A7D61ED2D0AD19.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-22T17:52:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19403_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Without Escape\", \"trophyTitleDetail\": \"Without Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19403_00_0022675802260E63BDCA0EDBC5369F56EA576FAF29/BD77424982A48E58C8FF03FD134E0B8FCA0BC12E.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-18T12:54:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19400_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Without Escape\", \"trophyTitleDetail\": \"Without Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19400_00_0094F9C9E03FF6CE902DB122A3E7DEAACDCCAFEC17/503CDD57545C0527214CF3265A638A1A795C84B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-18T12:51:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17662_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleDetail\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17662_00_00A31D283CB9714A19E0CB815893DC9478145D50A7/4B829CDFE58A5060E34731ABE01D84BF80AAA752.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-11T14:03:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16838_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Daggerhood\", \"trophyTitleDetail\": \"Daggerhood\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16838_00_00895BEC36DA8EFA523859F79EFBE6693070FDD294/956AAA9C337678B82658C870B493BA8CE471E47E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-11T12:41:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18595_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"One Night Stand\", \"trophyTitleDetail\": \"One Night Stand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18595_00_006CD3AABC20F442E51F072929BA764CF38F316721/4406D8BCE686F3671FC5E5BB187EA41230B22870.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 16, \"gold\": 6, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-09T21:05:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14522_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Long Reach\", \"trophyTitleDetail\": \"The Long Reach\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14522_00_008903C29F596B337055185F580C0C4AAA1F07CB32/985BB02A6F564898A950BE8763FCC309287E0C11.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 10, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2020-01-08T14:12:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19396_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand\", \"trophyTitleDetail\": \"FoxyLand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19396_00_007BA3C57EB844F3C840CA54D0E5D48AB80D7FC255/F632E23624DE25B12413D6F4DC0067A9D2DB35DF.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T13:18:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19393_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand\", \"trophyTitleDetail\": \"FoxyLand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19393_00_00BD389C999DD12DA17F52D9123C2D128003883673/DE6CAB9A1151437688D10C42A70A03D26B4C44C1.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T12:55:47Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19394_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FoxyLand\", \"trophyTitleDetail\": \"FoxyLand\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19394_00_008FB03B22B0381AB187CF2E886EEAE7CD5E0D3871/C2FFCC18E8F98D12F591165828CFFC5CC2B911BC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T12:24:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17658_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"A Winter's Daydream\", \"trophyTitleDetail\": \"A Winter's Daydream\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17658_00_00611F0E8BBF35C89CDBCC96294FE259184953BD91/149D9AA93FD1C3CBA2837B084BF51676E0054ED8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-30T11:26:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13005_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"METAGAL\", \"trophyTitleDetail\": \"METAGAL\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13005_00_00C899A56ADF068B225498E620A646EBF8D28FE63C/FDAE85386C7B360D0E65DE45B30C00750B23F8A7.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T11:28:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13014_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"METAGAL\", \"trophyTitleDetail\": \"METAGAL\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13014_00_00E29492CA8440AFD3729D0D1031CF9978707259B2/75D6ACF32AC666DFF527796A30AB8EE9C393DD1D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T10:33:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19131_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Deep Space Rush\", \"trophyTitleDetail\": \"Deep Space Rush\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19131_00_00D3938D2D0297BE0651FCD97E103741E6C561EE89/0DC0F29A84C33C4439B73703BE704EE4F1975495.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T08:10:09Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19132_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Deep Space Rush\", \"trophyTitleDetail\": \"Deep Space Rush\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19132_00_004D4E2FCB7F9632ECCFF7CF6C4EC00C7866065640/5BE253037E54AB0E4C063AA3493565DEC86BE86D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-28T07:42:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06764_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Teslagrad\", \"trophyTitleDetail\": \"Teslagrad Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06764_00_0056FF148A50D8C24D29DA01DBA9558C86CF7C429D/B4A72D8A5BAF8610F14765CF71EB536A30A8A9A1.PNG\", \"trophyTitlePlatform\": \"PS3,PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 24, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 65, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 6, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-27T05:03:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13159_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Black Mirror\", \"trophyTitleDetail\": \"Black Mirror\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13159_00_00B738340C136CCCC240BE36CD928807E074389CB1/B1531CD7107F6EEAA5E05D380E59A5A026ADBEA4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-25T19:24:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12089_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Clockwork Tales: Of Glass and Ink\", \"trophyTitleDetail\": \"Clockwork Tales: Of Glass and Ink\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12089_00_00073A0EBCA1F8D63589859AD9978EDCB60603703B/638FCC8C7ED9F1BBE44BC7719A5219881E94C372.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 0, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-24T09:56:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11335_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"SYBERIA 3\", \"trophyTitleDetail\": \"Syberia 3 - Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11335_00_004AB5912BC80A75C7DFF58AB1AD6C6229FE8A1431/EFD15C2AA028A8401169F4E25DB5EE19B89C8FD6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 22, \"silver\": 15, \"gold\": 3, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-24T04:46:04Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11974_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Little Nightmares\", \"trophyTitleDetail\": \"Little Nightmare Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11974_00_00F8E589325CE5C9E4BC479997BE6E9AE9A3214781/61E5D1B9BE30031957EB8CBC7FB15ACD538730F2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 13, \"silver\": 5, \"gold\": 4, \"platinum\": 0}, \"progress\": 19, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-21T19:49:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR19077_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Iro Hero\", \"trophyTitleDetail\": \"Iro Hero\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR19077_00_00E435ADE5261669D273E57EDF573B51D517B47086/881C56CFC5D5E7A1B741541B93140B815B242394.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-19T13:10:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13463_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Call of Duty\\u00ae Modern Warfare\\u00ae\", \"trophyTitleDetail\": \"Call of Duty\\u00ae Modern Warfare\\u00ae\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13463_00_006ABB71B1E32457171EDC8FABBA39213164972DE2/BF8D1D967A7560E420CB73F41D1F845E6399F287.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 7, \"silver\": 15, \"gold\": 5, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 3, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-12-10T07:15:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06777_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Lords of the Fallen\", \"trophyTitleDetail\": \"Lords of the Fallen Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06777_00_0060D8811D41599D74D6476CB6A1B3C6F66DE05E70/D46AB4A4D1438388F80FC1B8250AF493AB646EAE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 42, \"silver\": 11, \"gold\": 3, \"platinum\": 1}, \"progress\": 9, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-30T21:28:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15118_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Fractured Minds\", \"trophyTitleDetail\": \"Completed all chapters\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15118_00_00F9180F3105B5816055DDAFE98EDB010B8B3053E7/FC152125A7A89E4FA3EE1BA54D9CD191BB168FD5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 2, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 1, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-20T10:10:05Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12591_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Hellblade: Senua's Sacrifice\", \"trophyTitleDetail\": \"From the makers of Heavenly Sword, Enslaved: Odyssey to the West, and DmC: Devil May Cry, comes a warrior\\u2019s brutal journey into myth and madness.\\n\\nSet in the Viking age, a broken Celtic warrior embarks on a haunting vision quest into Viking Hell to fight for the soul of her dead lover. \\n\\nCreated in collaboration with neuroscientists and people who experience psychosis, Hellblade: Senua\\u2019s Sacrifice will pull you deep into Senua\\u2019s mind.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12591_00_0037BD7D4462740EE895422284E277AAE06AC848FC/42AF55CC21C0E6E60ABACDF963589608D1218FDA.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-15T22:48:46Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18987_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Box Land Demake\", \"trophyTitleDetail\": \"Super Box Land Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18987_00_00A929B1D0F124A4765FC88BF38D1A03742C4962A1/0CFBEF189FD19AF1362F4B9CA80B8D830D651E85.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-14T19:15:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18984_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Box Land Demake\", \"trophyTitleDetail\": \"Super Box Land Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18984_00_00E7CE041DC476BED344186E80A8609B5B074DF51F/9FD2537BF0BE1E0C5C66E8E95D4B20B8B0808161.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-14T19:10:25Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18985_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Box Land Demake\", \"trophyTitleDetail\": \"Super Box Land Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18985_00_002914F61D32E8CDA6F56A50C3C4578D61B6C1A3C9/2C28C983E0B0E1D2628AB2E7D79EA6212C7775B7.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-13T22:19:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05212_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"WATCH_DOGS\\u2122\", \"trophyTitleDetail\": \"WATCH_DOGS\\u2122 Trophy Set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05212_00_00452624979CAE2F1D56AB42E5FEDA24608E37E706/B6B667B6C1DE7C2574F260B46EF092C230481D9C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 28, \"silver\": 19, \"gold\": 2, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-10T11:56:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12285_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Cars 3: Driven to Win\", \"trophyTitleDetail\": \"Trophy Pack for Cars 3: Driven to Win\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12285_00_0034F3B5D31BF0428B52CA9C78E6982472375DCDA7/1A5EC0BC3C0B720984AB1B82856743C847E7EC6D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 28, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 10, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-04T16:39:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14751_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"A Plague Tale: Innocence\", \"trophyTitleDetail\": \"A Plague Tale: Innocence\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14751_00_002569CB2F5B3413F289EBDDCA75FFD32873DDC938/EE9463EA9F19AB4DE336E3CFC4728EE316CACCD9.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 9, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-11-02T12:02:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15359_00\", \"trophySetVersion\": \"01.04\", \"trophyTitleName\": \"Control\", \"trophyTitleDetail\": \"The game's basic trophy set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15359_00_00D751EBF01D244B855D6F6505F39472370226458A/CA4CF82D2BDBC187FF50424C2BCCE6E88CD83DED.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 50, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 72, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-09-24T14:55:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR08538_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Need for Speed\\u2122\", \"trophyTitleDetail\": \"Need for Speed\\u2122 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR08538_00_005BCD0C95E2E5EDAB4E272262983CCE2406A84C56/9E030E907739B174AB95B8B95645FBBDADB659BB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 3, \"definedTrophies\": {\"bronze\": 23, \"silver\": 19, \"gold\": 3, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-09-05T16:24:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14869_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Tennis World Tour\", \"trophyTitleDetail\": \"Tennis World Tour\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14869_00_00D410FD990DC332517754D9635BF8ECC309A52562/E90F1D86AAC21A0A4AF31D7FF89110E4D39B0D2F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 18, \"silver\": 5, \"gold\": 6, \"platinum\": 1}, \"progress\": 20, \"earnedTrophies\": {\"bronze\": 11, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-09-01T21:51:07Z\"}], \"nextOffset\": 1350, \"previousOffset\": 1299, \"totalItemCount\": 1446}" } } }, @@ -1806,34 +1803,97 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:19:04 GMT" + ], + "Cache-Control": [ + "private" ], "Server": [ "Apache" ], - "Cache-Control": [ - "private" + "Connection": [ + "keep-alive" ], + "Set-Cookie": "REDACTED", "Content-Length": [ - "4327" + "30963" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Strict-Transport-Security": [ "max-age=63072000; includeSubDomains" ], + "Content-Type": [ + "application/json" + ] + }, + "body": { + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15866_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX\", \"trophyTitleDetail\": \"Super Destronaut DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15866_00_00078B6421D1D3F72F34BA8531DF9F95DAA2073C6A/5153D368B56B394685443A29D1F72997C3E993EF.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-26T12:03:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17028_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drowning\", \"trophyTitleDetail\": \"Drowning\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17028_00_006D7A15B22D66885113D40DF0984805E8AD85A86E/2EF427BF36678170313A44B7E5F22B0FEFD51DC2.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-26T09:07:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18372_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mochi Mochi Boy\", \"trophyTitleDetail\": \"Mochi Mochi Boy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18372_00_006D75C76DA325DA3BA82787D123AFE47FE6F7378D/F75C291A627B1BA9930978146B3F110509D760A4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-26T00:50:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18815_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mekabolt\", \"trophyTitleDetail\": \"Mekabolt\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18815_00_001A58E12348E22ECA932D9A526378616D420E8EF3/97B6B10F49BD694613DD164123206631ADB14929.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-24T05:39:55Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18852_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mekabolt\", \"trophyTitleDetail\": \"Mekabolt\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18852_00_00A20FB709EB6CCA576C3E9F2DC335C79AE8DD2EB8/E61CD23AA05B026CD57084E27AAF7BAC71AFC841.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-23T03:01:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18816_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mekabolt\", \"trophyTitleDetail\": \"Mekabolt\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18816_00_0081300FCF6FA94B4C7DDA980B8DB4A52746904FA4/E7D24D8C212104B499DF0C83551F2C34D1535A6A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-23T02:13:24Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14855_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Slyde Trophies\", \"trophyTitleDetail\": \"Slyde\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14855_00_008646ABE1B9E332CFD421F9141FBE1E76D339A462/75A452B0098BFEF9879A45A996A9D2F83BD2280B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-22T19:09:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16357_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle Edge\", \"trophyTitleDetail\": \"Energy Cycle Edge\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16357_00_003A0E852E62596DF7B0C5C5B372268FFCBA1421C5/6C28CF4D7C2773203695B795D5AD2494F5D651B3.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-22T17:22:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18703_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gravity Duck\", \"trophyTitleDetail\": \"Gravity Duck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18703_00_0090677192F999C437BEFB5A413DD5013E7EA82022/10D1AC8D292F918F127CF17CCC25A15E6B6AA609.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-20T22:44:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18542_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Wiloo Demake\", \"trophyTitleDetail\": \"Super Wiloo Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18542_00_002E72DB535C9C91C60DC7F5FB490A54812A87BD10/67FA776F100739519D04DBC4CFFA6DFE99AA6965.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-20T06:40:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18539_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Wiloo Demake\", \"trophyTitleDetail\": \"Super Wiloo Demake\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18539_00_006C6D6673E587A091A6664A441567EB601EA4FD17/6362C83F84D775D698385A9BB98BEB1A970E99EE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 7, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T23:37:23Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18707_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gravity Duck\", \"trophyTitleDetail\": \"Gravity Duck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18707_00_00C744209D650D7E85E37EFA204C0026CBE691788B/1C3CF64E80C98AF69A1DF1A7A138CA591BCA98F6.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T14:00:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18302_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Attack of the Toy Tanks\", \"trophyTitleDetail\": \"Attack of the Toy Tanks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18302_00_00909F4D8F0ABC22A8049AFE639B642F1EF1DE19E7/CF147C7FE4515D8AF621F10F82B72914FB41EE3B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 29, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 3, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T14:00:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18704_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Gravity Duck\", \"trophyTitleDetail\": \"Gravity Duck\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18704_00_0015D2BBCD6DB094AA520A2CB1DEE4ED1DBF594E3A/642EBAACEA995D8AEE27F39E00B6A1E37D0FDF59.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-17T12:06:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11469_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"TEKKEN 7\", \"trophyTitleDetail\": \"TEKKEN 7 Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11469_00_00342AB191B0899AC1FF3081CC92525DDA0CEF0F6D/DC6FD69B7FF02E72A30AF7553D5D0DE46E8FC176.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 13, \"gold\": 3, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-08-12T12:06:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05799_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"The Amazing Spider-Man 2\\u2122\", \"trophyTitleDetail\": \"The Amazing Spider-Man 2\\u2122 trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05799_00_00650305AF76F1413D9BC1C9259BC43761C2C2072F/4B0A16F861F9D11B6694BBC8EB56A1CD631676B6.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 36, \"silver\": 7, \"gold\": 3, \"platinum\": 1}, \"progress\": 10, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-26T14:52:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15015_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Horizon Chase Turbo\", \"trophyTitleDetail\": \"Trophies for Horizon Chase Turbo.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15015_00_00AA25C036CE26DF2B9411C7AC374AD37104277C66/AF3795777248FD1581F009C04DD93A8126A77050.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 32, \"silver\": 12, \"gold\": 4, \"platinum\": 1}, \"progress\": 5, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-19T00:25:16Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18299_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Attack of the Toy Tanks\", \"trophyTitleDetail\": \"Attack of the Toy Tanks\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18299_00_00EE003B1D647286671F58B6114FFD9B2752ED5CFE/9D5F81A2F66DD07ABF639D928E7244117805B507.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 1, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-18T10:20:32Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18373_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mochi Mochi Boy\", \"trophyTitleDetail\": \"Mochi Mochi Boy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18373_00_00F96BC620B8E59B088AB6FF020B296A87C1131E30/B60B69E4C791FD422F42C7D78A5CDEB614D70063.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-17T12:27:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18375_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mochi Mochi Boy\", \"trophyTitleDetail\": \"Mochi Mochi Boy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18375_00_00C0AD07A46C96B6E31A8FEFE13C256CD5CC1CA05E/AC402A50EA66EAD537104F19457CE66EE109B436.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-07-17T03:11:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06510_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"LEGO\\u00ae Batman\\u2122 3\", \"trophyTitleDetail\": \"LEGO\\u00ae Batman\\u2122 3\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06510_00_00C40D8B4D4C52D172F09EB7AA7EAD46311B970762/9CB97ECED99A219144623D09C4806454B19C3B1B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 7, \"definedTrophies\": {\"bronze\": 62, \"silver\": 4, \"gold\": 4, \"platinum\": 1}, \"progress\": 31, \"earnedTrophies\": {\"bronze\": 22, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-30T18:07:40Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09453_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Goosebumps: The Game\", \"trophyTitleDetail\": \"The trophy set for Goosebumps: The Game.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09453_00_00A5087485D327D6503CD06B5C88D8001F2085B1FC/DB31A5F0A8C0CEA149906C3A3FD7DF74AB0C8C4B.PNG\", \"trophyTitlePlatform\": \"PS3,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 21, \"silver\": 17, \"gold\": 2, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-28T11:24:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15235_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 19\", \"trophyTitleDetail\": \"FIFA 19\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15235_00_00DCA8FDAAA2EF8F9CD6F8DF54A05F86F20B15A387/0365E7A5671529C46C53E7C75233C5BF9BB01C2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 29, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 24, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 1, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-26T18:46:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10578_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Adam's Venture Origins\", \"trophyTitleDetail\": \"-\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10578_00_00F756CE21594CF8487C6A7E4DA739EA544425A1CE/F4401A44629ADA01504541CE41848F4C3EEC960B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 4, \"gold\": 10, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-26T12:59:10Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05452_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"RESOGUN\\u2122\", \"trophyTitleDetail\": \"RESOGUN\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05452_00_00385F8A82C3F57757FD097D8369E0B5DD097F23F3/E794883A863904A5E71B98405516D297D4F50402.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 5, \"definedTrophies\": {\"bronze\": 40, \"silver\": 17, \"gold\": 7, \"platinum\": 1}, \"progress\": 3, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-22T07:30:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11925_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"LocoRoco\\u2122 Remastered\", \"trophyTitleDetail\": \"LocoRoco\\u2122 Remastered trophy set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11925_00_00C6ACF20D185616E471F1B9F495A791EDF77B07E9/9ABCE9FEC2E4845C14EC7981B81C3844B5B9B5C3.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 11, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 4, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-22T06:03:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18206_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleDetail\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18206_00_00B385DF39A57C25C6F2EA12FCA0E4E61C9BEF9528/98FFDBF40080890263116669D43A8D28D4B152FC.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-20T05:01:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR18203_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleDetail\": \"Cybarian: The Time Travelling Warrior\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR18203_00_000B39D1B59090D0C20C70D3E3D97AD4CE029B0530/6BB544C8D5C4819324ECA90BDAD48AA713E2B728.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-19T12:09:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16776_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Daggerhood\", \"trophyTitleDetail\": \"Daggerhood\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16776_00_00994107C94C92AF923CDEF565971EDA28CB728A70/85FAC5CA713C65EAD0FEF557E79481C55D27DCED.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-17T15:58:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16775_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Daggerhood\", \"trophyTitleDetail\": \"Daggerhood\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16775_00_0017F88236B4A0A043700514B6DD932114F630D385/57DE59EE5DC29484E98EDD4AE8BFADC46EC7C162.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-17T11:29:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09167_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Marvel's Spider-Man\", \"trophyTitleDetail\": \"Trophy set for Marvel's Spider-Man\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09167_00_007280BC379B5701D2D862A6574F73488DA1CDFBBA/871AF040ECAA2A94B7EB5534E062AEAF13D72C35.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 5, \"definedTrophies\": {\"bronze\": 54, \"silver\": 14, \"gold\": 5, \"platinum\": 1}, \"progress\": 62, \"earnedTrophies\": {\"bronze\": 38, \"silver\": 10, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-09T21:54:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10075_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Sherlock Holmes: The Devil's Daughter\", \"trophyTitleDetail\": \"Sherlock Holmes: The Devil's Daughter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10075_00_004192F9DC2D02D1CE9F3547E17A8A3562AAE492EF/FEB804F8AF35668B704A0E078CDF7F0BDC83184D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-06-06T07:53:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07158_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Hardware: Rivals\\u2122 Trophies\", \"trophyTitleDetail\": \"Trophy set for Hardware: Rivals\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07158_00_00D39FD150C9A93E29B6F81B1B15C111CA9A263308/C25B16ED16F12B60F1E09F7AE4A90FCD6435286D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 29, \"silver\": 8, \"gold\": 4, \"platinum\": 1}, \"progress\": 13, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-05-21T14:40:26Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17533_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Weekend Mode\", \"trophyTitleDetail\": \"Super Weekend Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17533_00_00877468BB2A6BBBD9AE594EDDBB93DB8BEB8554DA/CF4C6CA60F36F6004EA5B4B068DB48416F976D97.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-05-09T12:01:41Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17516_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Weekend Mode\", \"trophyTitleDetail\": \"Super Weekend Mode\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17516_00_00541C4A71E2164466073AC6AE971DA5EF21644A81/30A1313ECB9B352C20FAD0C67334CCC052390AD0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-05-09T11:23:57Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17541_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zeroptian Invasion\", \"trophyTitleDetail\": \"Zeroptian Invasion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17541_00_002BB665D05ED34ACC6E004049E179922814657A41/13CEEDA2A003E7BED90B54C74C7F6B226FE0C6D0.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-29T21:53:34Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13007_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Twin Robots\", \"trophyTitleDetail\": \"Twin Robots\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13007_00_004884B74A73318DABB945BAE5BE098980E0A39A25/017841918C4693CC2837E8A688583F4794875F09.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-28T00:17:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17539_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Zeroptian Invasion\", \"trophyTitleDetail\": \"Zeroptian Invasion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17539_00_00F2818987448321ADFEE0B15D984C9727AD1DCE6D/C9826FC616DD70749634A583D955322EB8156A90.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-26T21:43:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17031_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drowning\", \"trophyTitleDetail\": \"Drowning\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17031_00_00CBFE26254E8B8B5E36E469CD60BE1D4384D85D6B/C301EB2B34CC5C3C27B1EBAD6ACB435A65C3D945.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-26T00:13:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR17030_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Drowning\", \"trophyTitleDetail\": \"Drowning\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR17030_00_0032793A864148BFDF0473E43C81FB1201A64A0249/40D0F9B8E5CC61D2623B8F9A442E0E807243FA1E.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-25T10:01:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14205_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"36 Fragments of Midnight\", \"trophyTitleDetail\": \"36 Fragments of Midnight\\n\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14205_00_009F0C0D38EEC0179F9D4E5BA643156594922F3262/52117F9AEA01B859E121DBD719D165066F38D9A1.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 45, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 5, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2019-04-11T21:52:18Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15284_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tetra's Escape\", \"trophyTitleDetail\": \"Tetra's Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15284_00_006BA1FE0A7A13ACDCBA99A8E95B584C36936200ED/2312896CD9E62BEF5C0B8E6D05B020AF58069C56.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-06T13:00:49Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15867_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX\", \"trophyTitleDetail\": \"Super Destronaut DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15867_00_00471C1351F2CD3D76DBFF50E42F401FFCD367FADF/512048B794ABF26B4258791EF625ACE0D6923940.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-06T06:44:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13574_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13574_00_006FBF127E50B74F3F58F39FBE1CA9212FD2DB3092/539F207B530CCBDA8E6F39115C39626E32183173.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-05T13:54:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14641_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Midnight Deluxe\", \"trophyTitleDetail\": \"Midnight Deluxe\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14641_00_00BEC8E413B03509C398F4557927F18B1871D51C82/1C0B4B43E7F3EE62B7B7C200A21ED9961B3F1B51.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-04T21:49:01Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16080_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jack N' Jill DX\", \"trophyTitleDetail\": \"Jack N' Jill DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16080_00_006C3D53679936E52E3A7013494D89F3FDC77C9837/D94DC7DC289FD60F35E48A5E87125519E87B90A4.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-03T23:10:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11881_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo\", \"trophyTitleDetail\": \"Glorious trophies for My Name is Mayo! \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11881_00_001DD30435132CA06759263D5F5914B309118A2BAE/F39EB6FF641E001AFEEC78132A49C906718E859B.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-03T20:18:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15713_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15713_00_00EAA0C122F64732D74DE2066952E11DF5DB788CD5/BD02BAD8EF365B2680E06816E431B512A4C9DA04.PNG\", \"trophyTitlePlatform\": \"PSVITA\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-12-03T17:29:11Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15914_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wardrobe\", \"trophyTitleDetail\": \"The Wardrobe trophies list\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15914_00_00ADADB60A7E31F1D2AAE165B5A27AE94BEA1EE5E4/9330A21501B38CA4136DD46E25B23DB0A23A658D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 7, \"silver\": 13, \"gold\": 6, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-10-27T06:09:08Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15711_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FullBlast\", \"trophyTitleDetail\": \"FullBlast\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15711_00_00BA9FDA474AAECBEC10CA1FF07EEEC63CCCA4CB9E/AD38B6639BD73F1A85EEDD2DE2186F5E207676EB.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-29T13:51:16Z\"}], \"nextOffset\": 1400, \"previousOffset\": 1349, \"totalItemCount\": 1446}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://m.np.playstation.com/api/trophy/v1/users/93330175277685226/trophyTitles?limit=50&offset=1400", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Sun, 12 Jan 2025 03:19:04 GMT" + ], + "Cache-Control": [ + "private" + ], + "Server": [ + "Apache" + ], + "Connection": [ + "keep-alive" + ], + "Set-Cookie": "REDACTED", + "Content-Length": [ + "28811" + ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], "Content-Type": [ "application/json" - ], - "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:54 GMT" ] }, "body": { - "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10882_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Table Top Racing: World Tour\", \"trophyTitleDetail\": \"Take the TTR Trophy challenge and see if you can win that Platinum!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10882_00_00F2FCD788E370D2F7214DF22C0E350C437ECBF284/03BE8D5FEE87176823C5BE0BE33C693CCC7B2516.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 18, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-05T00:07:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09685_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 17\", \"trophyTitleDetail\": \"FIFA 17\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09685_00_007FD31D8986A531650BA5B71EE31565D864CE8A50/D1DC076E090ADB57543472A35E29F5BCB136D1D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 30, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-20T19:49:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13106_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"PRO EVOLUTION SOCCER 2018\", \"trophyTitleDetail\": \"PRO EVOLUTION SOCCER 2018\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13106_00_00E7AC7BB982580BE66F65608DB4C582CD475ED5F4/595D238DA0B2A0EFA54FD2961798296ABB228622.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 40, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-19T06:28:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12476_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Crash Bandicoot\", \"trophyTitleDetail\": \"Crash Bandicoot\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12476_00_00E1AF50FB3CB9DF4438C2BCF096EDB614FA7511DB/F787409C58420CD25FC87DD5EE5B34BFBDA7835A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 8, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 18, \"earnedTrophies\": {\"bronze\": 7, \"silver\": 0, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-07T10:19:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13347_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Crash Bandicoot: Warped\", \"trophyTitleDetail\": \"Crash Bandicoot: Warped\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13347_00_0036293E6DD67F13C7646A36FFE992312CE5954D69/ED518435C5134121DA5A702898FAD47A38197536.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"definedTrophies\": {\"bronze\": 8, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-06T11:33:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10358_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Walking Dead: Michonne\", \"trophyTitleDetail\": \"The Walking Dead: Michonne Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10358_00_00DD909E648BAF60D2BCD7D83381FDA0D3FB3D3DE8/A4A9395D69B3F83F0BDE98F02F0677B0F7DCD83F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 21, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-07-24T10:13:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11880_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo\", \"trophyTitleDetail\": \"Glorious trophies for My Name is Mayo! \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11880_00_006F82D27943086EF245545D58A6784A07676E363A/22C215247822FB9D3EB42D4FE668D572B272283E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"definedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-07-20T12:42:09Z\"}], \"previousOffset\": 1349, \"totalItemCount\": 1357}" + "string": "{\"trophyTitles\": [{\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15865_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Super Destronaut DX\", \"trophyTitleDetail\": \"Super Destronaut DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15865_00_0053383E1EE00136896DF1095287CD0B0F2596D23E/2897315393E8D4D757870CA2790B8969D2DE2B66.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-29T09:46:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15281_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Tetra's Escape\", \"trophyTitleDetail\": \"Tetra's Escape\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15281_00_00AF5AD0CC3F1BD8E3D39AA8CC0EC94EB4D0E6CB0C/05F02AA9848583504E3710E59084E6E1DB87276E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 9, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-29T04:59:33Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR16078_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jack N' Jill DX\", \"trophyTitleDetail\": \"Jack N' Jill DX\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR16078_00_00A7D00ECD35A5AB51F24B66C2C904129796BBC424/54DCB38B068C510FAE765FCD0821175CF11C674D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-28T13:37:53Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07882_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Game of Thrones\", \"trophyTitleDetail\": \"Game of Thrones\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07882_00_00902BCC5CC70246568073BDB3A48831E120D4D456/11ACFF657C71CA36E16F3A6AEA555BDD47CC0246.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 12, \"gold\": 2, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-09-17T04:15:36Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07240_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Wolf Among Us\", \"trophyTitleDetail\": \"The Wolf Among Us\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07240_00_00EC221A2B777FCF1F4741C64DB773D61703B9C3FE/10EA1AB61FD9D753289CDA233B3306CB86928EC5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 25, \"silver\": 5, \"gold\": 5, \"platinum\": 1}, \"progress\": 10, \"earnedTrophies\": {\"bronze\": 5, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-08-12T01:24:39Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR05335_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Need for Speed\\u2122 Rivals\", \"trophyTitleDetail\": \"Need for Speed\\u2122 Rivals Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR05335_00_00FB540A0E89C57873255969C9151095BC35A939CD/E79D28A0D064F9AB8B3D08F3933690E0C5F4C47D.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-30T11:33:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14250_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"NORTH\", \"trophyTitleDetail\": \"NORTH\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14250_00_00158240DCB7937FCF6BEEF2832200CA66D0BAE61F/B2EB8F3BD352C11894D0F40D37E9674C44AD8BC0.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 1, \"platinum\": 0}, \"progress\": 15, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-09T17:35:56Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR15588_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Hex Tunnel Touch\", \"trophyTitleDetail\": \"Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR15588_00_009CA93EFE83A9450BE987F63D2DD62E48B348CFCD/D7D66773825FC645A728A0051895731E9F6B6418.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 2, \"silver\": 4, \"gold\": 9, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-08T18:42:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14802_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Metropolis: Lux Obscura\", \"trophyTitleDetail\": \"Metropolis: Lux Obscura\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14802_00_0036F6033EC3FE7AE079C3E083CFED678E36BC0142/4E907329EC1432E58D29FED6BC78A059A0B3DC3C.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 10, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-08T18:17:43Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12569_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Planet of the Eyes\", \"trophyTitleDetail\": \"Planet of the Eyes\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12569_00_00C116751FCAF3BACB05C89D20A30616C362413282/5BB4557644282DCC72FE380601DAC13C3F6E418B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-07-06T11:15:59Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR06616_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Order: 1886\", \"trophyTitleDetail\": \"The Order: 1886 Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR06616_00_00EB277B7EC4BA4D93F39512B611F38502780E7821/7188BC1FEF2CBD47B77122FFE78EF742011117FD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-04-22T19:58:31Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13011_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Twin Robots\", \"trophyTitleDetail\": \"Twin Robots\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13011_00_00295A4BF68FE81884EAE37BABE12A04B7624F5E9F/6D363DE46FE618D9EDC300157336516706D1DBE7.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-04-15T11:35:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11243_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Batman\", \"trophyTitleDetail\": \"Batman Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11243_00_00BA59038C4D483C5AA9817CAFD98B3DA960E696D2/7BFFC34724C6B792D74A8FE8A11456B33C54F6D4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-04-07T21:13:15Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14252_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Spiral Splatter\", \"trophyTitleDetail\": \"Spiral Splatter\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14252_00_00D11A3DB0F688CCDC11D239B75D1F11F9D25C6872/82EE50B01BC417904F06CBB794E6BCDE576AEBD3.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-30T08:08:37Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12786_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Jak 3\", \"trophyTitleDetail\": \"Incredible trophies for Jak 3. Collect them all!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12786_00_00419731C4F05F453AD825D6D9677036A553AB4BE4/2338E14F1CDF4E7B895E14BE7F489AA2584DB545.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 34, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 88, \"earnedTrophies\": {\"bronze\": 34, \"silver\": 8, \"gold\": 2, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-25T08:07:50Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12370_00\", \"trophySetVersion\": \"01.28\", \"trophyTitleName\": \"Human Fall Flat\", \"trophyTitleDetail\": \"Human Fall Flat\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12370_00_00CC2A33F0B7088B2E1BAD7AD022D128CFFEED7168/941C13F067055781644015C6111117724222DBBC.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 19, \"definedTrophies\": {\"bronze\": 90, \"silver\": 14, \"gold\": 1, \"platinum\": 1}, \"progress\": 8, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-24T20:01:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12791_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Jak II\", \"trophyTitleDetail\": \"Awesome trophies for Jak II. Collect them all!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12791_00_00F656AC2612B9EF66FEC2BBBBD2D51F5F00E1ECFD/CA72AED2E7AE925E608F9FA8E033C0C562CE6BB8.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 26, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 26, \"silver\": 10, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-24T11:59:52Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13406_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"BRIKS\", \"trophyTitleDetail\": \"Trophy set of BRIKS.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13406_00_00AC33590008AE54C6DDC4A7B0AC6E630EBE65ABBB/B044573BC4593EA49ACEFB8F351F557222A6BEFD.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 9, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 9, \"silver\": 10, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-21T18:08:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11474_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"RiME\", \"trophyTitleDetail\": \"RiME Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11474_00_00527F6C667B1CCF29F046004D690C21E134F3D444/94A73387AE355A3E6CB17A173CEF08B4EEBFB84B.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 14, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"progress\": 7, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 1, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-14T08:27:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14535_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Invasion\", \"trophyTitleDetail\": \"Energy Invasion\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14535_00_000C471504CED8EF2E82FAEE2E0BE545A6FE8F75D0/470799729FD7A96354AC31E9657232A929FC9182.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 7, \"gold\": 8, \"platinum\": 1}, \"progress\": 90, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 7, \"gold\": 7, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-10T17:56:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14714_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleDetail\": \"The trophy set of LITTLE ADVENTURE ON THE PRAIRIE\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14714_00_000780E10EF95AB9D7193947B4E52A024EDEC7C2D5/73C63DAD502C329F94453FD51096E3DEE610DB2E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 6, \"silver\": 8, \"gold\": 7, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-08T01:16:22Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14639_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Midnight Deluxe\", \"trophyTitleDetail\": \"Midnight Deluxe\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14639_00_006CBC7E352BD5F4956F1517BE860B0D6609C8B82F/D9C348113941C34480E57145C36D7559C0BA5852.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 2, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-07T12:26:13Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09391_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Day of the Tentacle Remastered\", \"trophyTitleDetail\": \"Trophies for Day of the Tentacle Remastered.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09391_00_003C2CA9BF7AB9FE5A27EBAB622C334E4B0F1C538C/85C838A213DF9C6317481A84E17C58D4373B2405.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 53, \"silver\": 3, \"gold\": 1, \"platinum\": 1}, \"progress\": 27, \"earnedTrophies\": {\"bronze\": 18, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-03T19:14:42Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11987_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Lara Croft GO\", \"trophyTitleDetail\": \"Lara Croft GO\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11987_00_00BB5A4D22C1B2938A65354EA462361C7691962994/2C5AA5F87CC47A9BEC05D369A674EEFF98759FB7.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 3, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-03-02T13:06:19Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09367_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"NARUTO SHIPPUDEN: Ultimate Ninja STORM 4\", \"trophyTitleDetail\": \"Trophies for NARUTO SHIPPUDEN: Ultimate Ninja STORM 4.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09367_00_003749B4A9292461EBFCDF8776B10A7ABB43963682/28D2D43392E91572BBCCC3D5B57F63BCEF353AA5.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 32, \"silver\": 18, \"gold\": 2, \"platinum\": 1}, \"progress\": 26, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 3, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-18T22:38:02Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07466_00\", \"trophySetVersion\": \"01.85\", \"trophyTitleName\": \"Rocket League\\u00ae\", \"trophyTitleDetail\": \"Rocket League\\u00ae Trophy Set\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07466_00_002B372EA023E6E03E3194E148C0B2BF285AD8CE49/7E97D451B278DACDDD0CA8D59AFF7BF62E1A6560.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 10, \"definedTrophies\": {\"bronze\": 51, \"silver\": 24, \"gold\": 12, \"platinum\": 1}, \"progress\": 46, \"earnedTrophies\": {\"bronze\": 29, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-16T13:22:27Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10801_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"KNACK 2 Trophy Set\", \"trophyTitleDetail\": \"This is the KNACK 2 trophy set.\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10801_00_00C91EE944342F4730FA455266FCCFF954F920F05A/89F8887805D9B1D280DA33FA2F34F8DFE25F8E85.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 27, \"silver\": 12, \"gold\": 3, \"platinum\": 1}, \"progress\": 47, \"earnedTrophies\": {\"bronze\": 19, \"silver\": 7, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-14T11:06:48Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07731_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Tom Clancy's The Division\\u2122\", \"trophyTitleDetail\": \"Tom Clancy's The Division\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07731_00_0005CB40540B74C7C1D25734106ADC4DD7D8EE46A2/E4398EED8ECF86D2C830A6B22B778BD5288BA589.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 4, \"definedTrophies\": {\"bronze\": 48, \"silver\": 14, \"gold\": 3, \"platinum\": 1}, \"progress\": 3, \"earnedTrophies\": {\"bronze\": 3, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-08T19:28:28Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR14816_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"36 Fragments of Midnight\", \"trophyTitleDetail\": \"36 Fragments of Midnight\\n\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR14816_00_007B6AC2FDE65DAD7CA2972EB6186265E8ABACA6A7/A809D374BA7B2B40CD8029704D909A6FD69F817E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 0, \"gold\": 11, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2018-02-07T20:05:58Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13354_00\", \"trophySetVersion\": \"01.03\", \"trophyTitleName\": \"Life is Strange: Before the Storm\", \"trophyTitleDetail\": \"Trophies for Life is Strange: Before the Storm\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13354_00_00A381C4CD43B1C0C316597E9B59F8A4AFF55EF018/20410E91FCB5A22B12C588FCD7F217A36271FD1A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 15, \"silver\": 15, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 15, \"silver\": 15, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-12-21T12:25:06Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09965_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"ARCADE GAME SERIES: Ms. PAC-MAN\", \"trophyTitleDetail\": \"ARCADE GAME SERIES: Ms. PAC-MAN\\u3000Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09965_00_0098564427CF86F90C1DB77E908AB26E32CB5EF4F2/4A5D9AA025741C3F0CD8FABC0D05956969500F93.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 6, \"silver\": 5, \"gold\": 9, \"platinum\": 1}, \"progress\": 1, \"earnedTrophies\": {\"bronze\": 1, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-20T09:24:29Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10765_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Koi\", \"trophyTitleDetail\": \"Koi Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10765_00_001EF42BF865F52B3A8032FD26811B959590FAF06D/36E35EA280887938F4738F82327F000DB4484E99.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 17, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"progress\": 95, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 2, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-20T09:12:38Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13544_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Energy Cycle\", \"trophyTitleDetail\": \"Energy Cycle\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13544_00_00C433FA00F515A6086B9C618F739FBF2D0ACB3572/6F4BEA8E6FE443500D048FFBF0BFAF699518E4FB.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 6, \"gold\": 8, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-19T07:51:17Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07228_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Tales from the Borderlands\", \"trophyTitleDetail\": \"Awards from your trip to Pandora\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07228_00_00912E8D33E128E6DA27E9041254DD5CC878F676D4/5C8E0E69C5A0FD407CBE4F107C5E86D280031759.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 20, \"silver\": 10, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-18T14:12:14Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12765_00\", \"trophySetVersion\": \"01.05\", \"trophyTitleName\": \"Late Shift\", \"trophyTitleDetail\": \"Late Shift\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12765_00_00D7E62B6C42386C003BDC816D485A05CAAD5E2172/903CB0957B8A6114EF1F5CE7A02116B3A6F92EA0.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 6, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 0, \"silver\": 14, \"gold\": 6, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-16T10:18:30Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10328_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Hitman GO: Definitive Edition\", \"trophyTitleDetail\": \"Trophies for Hitman GO: Definitive Edition\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10328_00_0052D50FD46ED07458C0550CAC3B6552B3703E90DE/3C29D90F9202F08D75D0DE6A5A46472E2ED280AA.PNG\", \"trophyTitlePlatform\": \"PSVITA,PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 4, \"silver\": 3, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-15T11:10:21Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11491_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Nubla\", \"trophyTitleDetail\": \"Nubla\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11491_00_00B4D12A461CC79897245CFB164D7DBCF460CE774C/A467226B144B174A8578F555D63ADD040687ABD4.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 9, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 0, \"gold\": 9, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-12T08:22:35Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12624_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"Mr. Massagy\", \"trophyTitleDetail\": \"Trophies for the glorious Mr. Massagy\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12624_00_004F81DB70BFDFC010FBAACB19B756F90B02D0FB3E/860C00E76A8E00F00CB7C0200E6EA4432EAF0AFE.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 16, \"silver\": 12, \"gold\": 5, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-06T08:18:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR07875_00\", \"trophySetVersion\": \"01.02\", \"trophyTitleName\": \"Life Is Strange\\u2122\", \"trophyTitleDetail\": \"The trophy set of Life Is Strange\\u2122\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR07875_00_0026D95B298228B7F693D8DDBFF42C4F4BCC3FF2D2/ACC2A8C6C222E9B89D76B7A10E7209EDF1F56E0C.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 59, \"silver\": 0, \"gold\": 1, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 59, \"silver\": 0, \"gold\": 1, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-05T19:32:54Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10882_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Table Top Racing: World Tour\", \"trophyTitleDetail\": \"Take the TTR Trophy challenge and see if you can win that Platinum!\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10882_00_00F2FCD788E370D2F7214DF22C0E350C437ECBF284/03BE8D5FEE87176823C5BE0BE33C693CCC7B2516.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 18, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 23, \"earnedTrophies\": {\"bronze\": 10, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-11-05T00:07:03Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR09685_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"FIFA 17\", \"trophyTitleDetail\": \"FIFA 17\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR09685_00_007FD31D8986A531650BA5B71EE31565D864CE8A50/D1DC076E090ADB57543472A35E29F5BCB136D1D2.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 32, \"silver\": 9, \"gold\": 3, \"platinum\": 1}, \"progress\": 30, \"earnedTrophies\": {\"bronze\": 13, \"silver\": 4, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-20T19:49:07Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13106_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"PRO EVOLUTION SOCCER 2018\", \"trophyTitleDetail\": \"PRO EVOLUTION SOCCER 2018\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13106_00_00E7AC7BB982580BE66F65608DB4C582CD475ED5F4/595D238DA0B2A0EFA54FD2961798296ABB228622.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 40, \"silver\": 9, \"gold\": 2, \"platinum\": 1}, \"progress\": 11, \"earnedTrophies\": {\"bronze\": 8, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-19T06:28:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR12476_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Crash Bandicoot\", \"trophyTitleDetail\": \"Crash Bandicoot\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR12476_00_00E1AF50FB3CB9DF4438C2BCF096EDB614FA7511DB/F787409C58420CD25FC87DD5EE5B34BFBDA7835A.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 8, \"silver\": 8, \"gold\": 8, \"platinum\": 1}, \"progress\": 18, \"earnedTrophies\": {\"bronze\": 7, \"silver\": 0, \"gold\": 1, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-07T10:19:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR13347_00\", \"trophySetVersion\": \"01.01\", \"trophyTitleName\": \"Crash Bandicoot: Warped\", \"trophyTitleDetail\": \"Crash Bandicoot: Warped\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR13347_00_0036293E6DD67F13C7646A36FFE992312CE5954D69/ED518435C5134121DA5A702898FAD47A38197536.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": true, \"trophyGroupCount\": 2, \"definedTrophies\": {\"bronze\": 8, \"silver\": 12, \"gold\": 6, \"platinum\": 1}, \"progress\": 2, \"earnedTrophies\": {\"bronze\": 2, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-09-06T11:33:51Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR10358_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"The Walking Dead: Michonne\", \"trophyTitleDetail\": \"The Walking Dead: Michonne Trophies\", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR10358_00_00DD909E648BAF60D2BCD7D83381FDA0D3FB3D3DE8/A4A9395D69B3F83F0BDE98F02F0677B0F7DCD83F.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 21, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 21, \"silver\": 0, \"gold\": 0, \"platinum\": 0}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-07-24T10:13:44Z\"}, {\"npServiceName\": \"trophy\", \"npCommunicationId\": \"NPWR11880_00\", \"trophySetVersion\": \"01.00\", \"trophyTitleName\": \"My Name is Mayo\", \"trophyTitleDetail\": \"Glorious trophies for My Name is Mayo! \", \"trophyTitleIconUrl\": \"https://image.api.playstation.com/trophy/np/NPWR11880_00_006F82D27943086EF245545D58A6784A07676E363A/22C215247822FB9D3EB42D4FE668D572B272283E.PNG\", \"trophyTitlePlatform\": \"PS4\", \"hasTrophyGroups\": false, \"trophyGroupCount\": 1, \"definedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"progress\": 100, \"earnedTrophies\": {\"bronze\": 46, \"silver\": 0, \"gold\": 4, \"platinum\": 1}, \"hiddenFlag\": false, \"lastUpdatedDateTime\": \"2017-07-20T12:42:09Z\"}], \"previousOffset\": 1399, \"totalItemCount\": 1446}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user.json index a2f7da7..1a47ba0 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user.json @@ -4,7 +4,7 @@ { "request": { "method": "GET", - "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/isFakeAccount/profile2?fields=accountId%2ConlineId%2CcurrentOnlineId", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/authorize?PlatformPrivacyWs1=minimal&access_type=offline&client_id=09515159-7237-4370-9b40-3806e67c0891&device_base_font_size=10&device_profile=mobile&elements_visibility=no_aclink&enable_scheme_error_code=true&no_captcha=true&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&response_type=code&scope=psn%3Amobile.v2.core+psn%3Aclientapp&service_entity=urn%3Aservice-entity%3Apsn&service_logo=ps&smcid=psapp%3Asignin&support_scheme=sneiprls&turnOnTrustedBrowser=true&ui=pr", "body": null, "headers": { "User-Agent": [ @@ -24,48 +24,228 @@ ], "Country": [ "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Requested-With": [ + "com.scee.psxandroid" + ], + "Sec-Fetch-Dest": [ + "document" + ], + "Sec-Fetch-Mode": [ + "navigate" + ], + "Sec-Fetch-Site": [ + "same-site" + ], + "Sec-Fetch-User": [ + "?1" ] } }, "response": { "status": { - "code": 200, - "message": "OK" + "code": 302, + "message": "Moved Temporarily" }, "headers": { + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Strict-Transport-Security": [ + "max-age=31536000 ; includeSubDomains" + ], + "X-Frame-Options": [ + "DENY" + ], + "Server": [ + "nginx" + ], + "Date": [ + "Sun, 12 Jan 2025 03:18:36 GMT" + ], "Connection": [ "keep-alive" ], - "Server": [ - "Apache" + "X-Psn-Request-Id": [ + "a3ce9d0181d82debcb84ca5044c14b2f" + ], + "Set-Cookie": "REDACTED", + "X-XSS-Protection": [ + "1; mode=block" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "0" + ], + "Location": [ + "com.scee.psxandroid.scecompcall://redirect/?code=v3.PbBDij&cid=00000000-0000-0000-0000-b025aa3b2674" + ], + "X-RequestId": [ + "a3ce9d0181d82debcb84ca5044c14b2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://ca.account.sony.com/api/authz/v3/oauth/token", + "body": "cid=00000000-0000-0000-0000-b025aa3b2674&grant_type=authorization_code&redirect_uri=com.scee.psxandroid.scecompcall%3A%2F%2Fredirect&scope=psn%3Amobile.v2.core+psn%3Aclientapp&token_format=jwt", + "headers": { + "User-Agent": [ + "com.sony.snei.np.android.sso.share.oauth.versa.USER_AGENT" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "207" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Cache-Control": [ "no-store" ], - "content-length": [ - "74" + "Date": [ + "Sun, 12 Jan 2025 03:18:36 GMT" + ], + "Server": [ + "nginx" + ], + "Connection": [ + "keep-alive" + ], + "X-Psn-Request-Id": [ + "8703c7eee3f044864888e92fd267bfcc" + ], + "X-Psn-Correlation-Id": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "X-CorrelationId": [ + "00000000-0000-0000-0000-b025aa3b2674" + ], + "Content-Length": [ + "4010" + ], + "X-RequestId": [ + "8703c7eee3f044864888e92fd267bfcc" ], "X-Content-Type-Options": [ "nosniff" ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" + "Content-Type": [ + "application/json;charset=UTF-8" + ], + "Set-Cookie": "REDACTED" + }, + "body": { + "string": "{\"access_token\": \"REDACTED\", \"token_type\": \"bearer\", \"expires_in\": 3599, \"scope\": \"psn:mobile.v2.core psn:clientapp\", \"id_token\": \"REDACTED\", \"refresh_token\": \"REDACTED\", \"refresh_token_expires_in\": 5183999}" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://us-prof.np.community.playstation.net/userProfile/v1/users/isFakeAccount/profile2?fields=accountId%2ConlineId%2CcurrentOnlineId", + "body": null, + "headers": { + "User-Agent": [ + "Mozilla/5.0 (Linux; Android 11; sdk_gphone_x86 Build/RSR1.201013.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/83.0.4103.106 Mobile Safari/537.36" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "Country": [ + "US" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-store" + ], + "Date": [ + "Sun, 12 Jan 2025 03:18:37 GMT" + ], + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:27 GMT" + "Content-Length": [ + "74" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_account_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_account_id.json index 9a15503..a3d315b 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_account_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_account_id.json @@ -33,26 +33,14 @@ "message": "OK" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "606" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,15 +48,27 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:28 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0394391470569780347" + "Content-Length": [ + "606" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0181378006683625686" ] }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_acct_id_not_found.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_acct_id_not_found.json index 9d9e28a..3c98a13 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_acct_id_not_found.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_acct_id_not_found.json @@ -33,26 +33,14 @@ "message": "Bad Request" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "121" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:39 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,19 +48,31 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:29 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0686497309966047635" + "Content-Length": [ + "121" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0885197413804813776" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"1645a8a8-2c34-11ef-9e0c-0d8090b7927a\", \"code\": 2281473, \"message\": \"Bad Request (path: accountId)\"}}" + "string": "{\"error\": {\"referenceId\": \"eacdcafc-d093-11ef-9598-a530f44ce2ee\", \"code\": 2281473, \"message\": \"Bad Request (path: accountId)\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_not_found.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_not_found.json index 9fdd9f5..4917866 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_not_found.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_not_found.json @@ -33,36 +33,33 @@ "message": "Not Found" }, "headers": { - "Connection": [ - "keep-alive" + "Date": [ + "Sun, 12 Jan 2025 03:18:38 GMT" ], "Server": [ "Apache" ], - "content-length": [ - "78" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" - ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, OPTIONS" ], - "Content-Type": [ - "application/json" + "Connection": [ + "keep-alive" ], - "Vary": [ - "accept-encoding" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, If-None-Match" ], - "Date": [ - "Sun, 16 Jun 2024 22:59:29 GMT" + "Content-Length": [ + "78" ], "Access-Control-Allow-Origin": [ "*" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Type": [ + "application/json" + ], "Set-Cookie": "REDACTED" }, "body": { diff --git a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_wrong_acc_id.json b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_wrong_acc_id.json index 03d26b6..2423de8 100644 --- a/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_wrong_acc_id.json +++ b/tests/integration_tests/integration_test_psnawp_api/cassettes/test_user__user_wrong_acc_id.json @@ -33,26 +33,14 @@ "message": "Bad Request" }, "headers": { - "Connection": [ - "keep-alive" - ], - "Server": [ - "Apache" - ], "Cache-Control": [ "private" ], - "Content-Length": [ - "121" - ], - "Strict-Transport-Security": [ - "max-age=63072000; includeSubDomains" - ], - "Access-Control-Allow-Headers": [ - "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" + "Date": [ + "Sun, 12 Jan 2025 03:18:37 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Server": [ + "Apache" ], "Access-Control-Allow-Methods": [ "GET, PUT, POST, DELETE, PATCH" @@ -60,19 +48,31 @@ "Content-Type": [ "application/json" ], + "Connection": [ + "keep-alive" + ], "Set-Cookie": "REDACTED", - "Date": [ - "Sun, 16 Jun 2024 22:59:28 GMT" + "Access-Control-Allow-Headers": [ + "Authorization, Cache-Control, Content-Type, X-Requested-With, Accept-Language, Date, X-Psn-Np-Title-Id, X-Psn-Platform, X-Psn-Request-Id, X-Psn-Sampled, X-Psn-Span-Id, X-Psn-Trace-Id" ], - "X-Psn-Track-Id": [ - "0014746517760302865" + "Content-Length": [ + "121" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Access-Control-Allow-Origin": [ "*" + ], + "Strict-Transport-Security": [ + "max-age=63072000; includeSubDomains" + ], + "X-Psn-Track-Id": [ + "0450675932240266371" ] }, "body": { - "string": "{\"error\": {\"referenceId\": \"1581951e-2c34-11ef-a014-098cc16a4335\", \"code\": 2281473, \"message\": \"Bad Request (path: accountId)\"}}" + "string": "{\"error\": {\"referenceId\": \"ea1158f9-d093-11ef-bb6f-55f088887891\", \"code\": 2281473, \"message\": \"Bad Request (path: accountId)\"}}" } } } diff --git a/tests/integration_tests/integration_test_psnawp_api/models/test_client.py b/tests/integration_tests/integration_test_psnawp_api/models/test_client.py index b831e63..ab6fcd8 100644 --- a/tests/integration_tests/integration_test_psnawp_api/models/test_client.py +++ b/tests/integration_tests/integration_test_psnawp_api/models/test_client.py @@ -6,6 +6,7 @@ from psnawp_api import PSNAWP from psnawp_api.core import PSNAWPNotFound from psnawp_api.models.trophies import PlatformType +from pycountry.db import Country from tests.integration_tests.integration_test_psnawp_api import my_vcr @@ -142,3 +143,10 @@ def test_client__repr_and_str(psnawp_fixture: PSNAWP) -> None: client = psnawp_fixture.me() repr(client) str(client) + + +@pytest.mark.vcr() +def test_client__get_region(psnawp_fixture: PSNAWP) -> None: + with my_vcr.use_cassette(f"{inspect.currentframe().f_code.co_name}.json"): + client = psnawp_fixture.me() + assert isinstance(client.get_region(), Country) diff --git a/tests/integration_tests/integration_test_psnawp_api/models/test_search.py b/tests/integration_tests/integration_test_psnawp_api/models/test_search.py index 17d6f54..0ab1a76 100644 --- a/tests/integration_tests/integration_test_psnawp_api/models/test_search.py +++ b/tests/integration_tests/integration_test_psnawp_api/models/test_search.py @@ -30,7 +30,7 @@ def test_search__get_game_content_id(psnawp_fixture: PSNAWP) -> None: @pytest.mark.vcr() def test_search__get_game_content_id(psnawp_fixture: PSNAWP) -> None: with my_vcr.use_cassette(f"{inspect.currentframe().f_code.co_name}.json"): - search = psnawp_fixture.search(search_query="GTA", search_domain=SearchDomain.FULL_GAMES, limit=1) + search = psnawp_fixture.search(search_query="GTA 5", search_domain=SearchDomain.FULL_GAMES, limit=1) for result in search: assert result["result"]["invariantName"] == "Grand Theft Auto V (PlayStation®5)" assert result["result"]["defaultProduct"]["id"] == "UP1004-PPSA03420_00-GTAOSTANDALONE01" diff --git a/tests/integration_tests/integration_test_psnawp_api/models/test_user.py b/tests/integration_tests/integration_test_psnawp_api/models/test_user.py index 6e9733c..466c060 100644 --- a/tests/integration_tests/integration_test_psnawp_api/models/test_user.py +++ b/tests/integration_tests/integration_test_psnawp_api/models/test_user.py @@ -11,6 +11,7 @@ ) from psnawp_api.models import User from psnawp_api.models.trophies import PlatformType +from pycountry import countries from tests.integration_tests.integration_test_psnawp_api import my_vcr @@ -326,3 +327,10 @@ def test_user__repr_and_str(friend_user: User) -> None: with my_vcr.use_cassette(f"{inspect.currentframe().f_code.co_name}.json"): repr(friend_user) str(friend_user) + + +@pytest.mark.vcr() +def test_user__get_region(psnawp_fixture: PSNAWP) -> None: + with my_vcr.use_cassette(f"{inspect.currentframe().f_code.co_name}.json"): + user_example = psnawp_fixture.user(online_id="VaultTec_Trading") + assert user_example.get_region() == countries.get(alpha_2="US") diff --git a/tests/integration_tests/integration_test_psnawp_api/utils/test_utils_misc.py b/tests/integration_tests/integration_test_psnawp_api/utils/test_utils_misc.py index d3f19da..827f12d 100644 --- a/tests/integration_tests/integration_test_psnawp_api/utils/test_utils_misc.py +++ b/tests/integration_tests/integration_test_psnawp_api/utils/test_utils_misc.py @@ -1,6 +1,8 @@ from datetime import timedelta from psnawp_api.models.title_stats import play_duration_to_timedelta +from psnawp_api.utils.misc import extract_region_from_npid +from pycountry import countries def test_play_duration_to_timedelta_valid_inputs(): @@ -19,3 +21,12 @@ def test_play_duration_to_timedelta_valid_inputs(): def test_play_duration_to_timedelta_invalid_inputs(): assert play_duration_to_timedelta(None) == timedelta(hours=0, minutes=0, seconds=0) assert play_duration_to_timedelta("PTH23M22S23MS") == timedelta(hours=0, minutes=0, seconds=0) + + +def test_extract_region_from_npid() -> None: + assert extract_region_from_npid("") is None + assert extract_region_from_npid("VaultTec-Co@b7.us") is None + assert extract_region_from_npid("VmF1bHRUZWMtQ29AYjcudXM=") == countries.get(alpha_2="US") + assert extract_region_from_npid("ZGF2MWRfMTIzQGIxLmNh") == countries.get(alpha_2="CA") + assert extract_region_from_npid("Z2lua283NjVAYTUucGw=") == countries.get(alpha_2="PL") + assert extract_region_from_npid("THVjYXNEaWFzQ0BkMi5icg==") == countries.get(alpha_2="BR")